diff --git a/apps/files/src/actions/downloadAction.ts b/apps/files/src/actions/downloadAction.ts index 9a3ae828cb66a..ce9f22450e97f 100644 --- a/apps/files/src/actions/downloadAction.ts +++ b/apps/files/src/actions/downloadAction.ts @@ -55,7 +55,7 @@ export const action = new FileAction({ // some folders, we need to use the /apps/files/ajax/download.php // endpoint, which only supports user root folder. if (nodes.some(node => node.type === FileType.Folder) - && !nodes.every(node => node.root?.startsWith('/files'))) { + && nodes.some(node => !node.root?.startsWith('/files'))) { return false } diff --git a/apps/files/src/views/FilesList.vue b/apps/files/src/views/FilesList.vue index d08f5a11874eb..b7785e623b01d 100644 --- a/apps/files/src/views/FilesList.vue +++ b/apps/files/src/views/FilesList.vue @@ -382,8 +382,7 @@ export default Vue.extend({ this.pathsStore.addPath({ service: currentView.id, fileid: node.fileid, path: join(dir, node.basename) }) }) } catch (error) { - throw error - // logger.error('Error while fetching content', { error }) + logger.error('Error while fetching content', { error }) } finally { this.loading = false } diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index 65e4c302632fa..b9804d7931eea 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -91,6 +91,7 @@ import { emit } from '@nextcloud/event-bus' import { encodePath } from '@nextcloud/paths' import { File, Folder } from '@nextcloud/files' +import { getCapabilities } from '@nextcloud/capabilities' import { getCurrentUser } from '@nextcloud/auth' import { Type as ShareTypes } from '@nextcloud/sharing' import $ from 'jquery' @@ -299,7 +300,7 @@ export default { }, isSystemTagsEnabled() { - return OCA && 'SystemTags' in OCA + return getCapabilities()?.systemtags?.enabled === true }, }, created() { diff --git a/apps/systemtags/composer/composer/autoload_classmap.php b/apps/systemtags/composer/composer/autoload_classmap.php index 604b7df167242..66d788547c6fb 100644 --- a/apps/systemtags/composer/composer/autoload_classmap.php +++ b/apps/systemtags/composer/composer/autoload_classmap.php @@ -11,6 +11,7 @@ 'OCA\\SystemTags\\Activity\\Provider' => $baseDir . '/../lib/Activity/Provider.php', 'OCA\\SystemTags\\Activity\\Setting' => $baseDir . '/../lib/Activity/Setting.php', 'OCA\\SystemTags\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', + 'OCA\\SystemTags\\Capabilities' => $baseDir . '/../lib/Capabilities.php', 'OCA\\SystemTags\\Controller\\LastUsedController' => $baseDir . '/../lib/Controller/LastUsedController.php', 'OCA\\SystemTags\\Search\\TagSearchProvider' => $baseDir . '/../lib/Search/TagSearchProvider.php', 'OCA\\SystemTags\\Settings\\Admin' => $baseDir . '/../lib/Settings/Admin.php', diff --git a/apps/systemtags/composer/composer/autoload_static.php b/apps/systemtags/composer/composer/autoload_static.php index 9c77f6d7a4371..c1ea863518192 100644 --- a/apps/systemtags/composer/composer/autoload_static.php +++ b/apps/systemtags/composer/composer/autoload_static.php @@ -26,6 +26,7 @@ class ComposerStaticInitSystemTags 'OCA\\SystemTags\\Activity\\Provider' => __DIR__ . '/..' . '/../lib/Activity/Provider.php', 'OCA\\SystemTags\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/Activity/Setting.php', 'OCA\\SystemTags\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', + 'OCA\\SystemTags\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', 'OCA\\SystemTags\\Controller\\LastUsedController' => __DIR__ . '/..' . '/../lib/Controller/LastUsedController.php', 'OCA\\SystemTags\\Search\\TagSearchProvider' => __DIR__ . '/..' . '/../lib/Search/TagSearchProvider.php', 'OCA\\SystemTags\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php', diff --git a/apps/systemtags/lib/AppInfo/Application.php b/apps/systemtags/lib/AppInfo/Application.php index c07f32e81c1b9..7484438092c38 100644 --- a/apps/systemtags/lib/AppInfo/Application.php +++ b/apps/systemtags/lib/AppInfo/Application.php @@ -28,6 +28,7 @@ use OCA\Files\Event\LoadAdditionalScriptsEvent; use OCA\SystemTags\Search\TagSearchProvider; use OCA\SystemTags\Activity\Listener; +use OCA\SystemTags\Capabilities; use OCP\AppFramework\App; use OCP\AppFramework\Bootstrap\IBootContext; use OCP\AppFramework\Bootstrap\IBootstrap; @@ -45,6 +46,7 @@ public function __construct() { public function register(IRegistrationContext $context): void { $context->registerSearchProvider(TagSearchProvider::class); + $context->registerCapability(Capabilities::class); } public function boot(IBootContext $context): void { @@ -77,16 +79,5 @@ function () { $dispatcher->addListener(MapperEvent::EVENT_ASSIGN, $mapperListener); $dispatcher->addListener(MapperEvent::EVENT_UNASSIGN, $mapperListener); }); - - \OCA\Files\App::getNavigationManager()->add(function () { - $l = \OC::$server->getL10N(self::APP_ID); - return [ - 'id' => 'systemtagsfilter', - 'appname' => self::APP_ID, - 'script' => 'list.php', - 'order' => 25, - 'name' => $l->t('Tags'), - ]; - }); } } diff --git a/apps/systemtags/lib/Capabilities.php b/apps/systemtags/lib/Capabilities.php new file mode 100644 index 0000000000000..5da70a17758dc --- /dev/null +++ b/apps/systemtags/lib/Capabilities.php @@ -0,0 +1,40 @@ + + * + * @author John Molakvoæ + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * 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, version 3, + * along with this program. If not, see + * + */ +namespace OCA\SystemTags; + +use OCP\Capabilities\ICapability; + +class Capabilities implements ICapability { + /** + * @return array{systemtags: array{enabled: true}} + */ + public function getCapabilities() { + $capabilities = [ + 'systemtags' => [ + 'enabled' => true, + ] + ]; + return $capabilities; + } +} diff --git a/apps/systemtags/src/css/systemtagsfilelist.scss b/apps/systemtags/src/css/systemtagsfilelist.scss deleted file mode 100644 index 4068eb2d8c532..0000000000000 --- a/apps/systemtags/src/css/systemtagsfilelist.scss +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) 2016 - * - * This file is licensed under the Affero General Public License version 3 - * or later. - * - * See the COPYING-README file. - * - */ -#app-content-systemtagsfilter .select2-container { - width: 30%; - margin-left: 10px; -} - -#app-sidebar .app-sidebar-header__action .tag-label { - cursor: pointer; - padding: 13px 0; - display: flex; - color: var(--color-text-light); - position: relative; - margin-top: -20px; -} diff --git a/apps/systemtags/src/services/systemtags.ts b/apps/systemtags/src/services/systemtags.ts index d5ef942b91a6f..4e81ec7dce035 100644 --- a/apps/systemtags/src/services/systemtags.ts +++ b/apps/systemtags/src/services/systemtags.ts @@ -30,8 +30,6 @@ import { fetchTags } from './api' import { getClient } from '../../../files/src/services/WebdavClient' import { resultToNode } from '../../../files/src/services/Files' -let tagsCache = [] as TagWithId[] - const formatReportPayload = (tagId: number) => ` @@ -58,7 +56,7 @@ const tagToNode = function(tag: TagWithId): Folder { export const getContents = async (path = '/'): Promise => { // List tags in the root - tagsCache = await fetchTags() + const tagsCache = (await fetchTags()).filter(tag => tag.userVisible) as TagWithId[] if (path === '/') { return { @@ -67,6 +65,7 @@ export const getContents = async (path = '/'): Promise => { source: generateRemoteUrl('dav/systemtags'), owner: getCurrentUser()?.uid as string, root: '/systemtags', + permissions: Permission.NONE, }), contents: tagsCache.map(tagToNode), } diff --git a/apps/systemtags/tests/js/systemtagsfilelistSpec.js b/apps/systemtags/tests/js/systemtagsfilelistSpec.js deleted file mode 100644 index facdf8dc42c27..0000000000000 --- a/apps/systemtags/tests/js/systemtagsfilelistSpec.js +++ /dev/null @@ -1,240 +0,0 @@ -/** - * Copyright (c) 2016 Vincent Petry - * - * @author Christoph Wurst - * @author Vincent Petry - * - * @license AGPL-3.0-or-later - * - * 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 . - * - */ - -describe('OCA.SystemTags.FileList tests', function() { - var FileInfo = OC.Files.FileInfo; - var fileList; - - beforeEach(function() { - // init parameters and test table elements - $('#testArea').append( - '
' + - // init horrible parameters - '' + - '
' + - // dummy table - // TODO: at some point this will be rendered by the fileList class itself! - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '
' + - '
Empty content message
' + - '
' - ); - }); - afterEach(function() { - fileList.destroy(); - fileList = undefined; - }); - - describe('filter field', function() { - var select2Stub, oldCollection, fetchTagsStub; - var $tagsField; - - beforeEach(function() { - fetchTagsStub = sinon.stub(OC.SystemTags.SystemTagsCollection.prototype, 'fetch'); - select2Stub = sinon.stub($.fn, 'select2'); - oldCollection = OC.SystemTags.collection; - OC.SystemTags.collection = new OC.SystemTags.SystemTagsCollection([ - { - id: '123', - name: 'abc' - }, - { - id: '456', - name: 'def' - } - ]); - - fileList = new OCA.SystemTags.FileList( - $('#app-content'), { - systemTagIds: [] - } - ); - $tagsField = fileList.$el.find('[name=tags]'); - }); - afterEach(function() { - select2Stub.restore(); - fetchTagsStub.restore(); - OC.SystemTags.collection = oldCollection; - }); - it('inits select2 on filter field', function() { - expect(select2Stub.calledOnce).toEqual(true); - }); - it('uses global system tags collection', function() { - var callback = sinon.stub(); - var opts = select2Stub.firstCall.args[0]; - - $tagsField.val('123'); - - opts.initSelection($tagsField, callback); - - expect(callback.notCalled).toEqual(true); - expect(fetchTagsStub.calledOnce).toEqual(true); - - fetchTagsStub.yieldTo('success', fetchTagsStub.thisValues[0]); - - expect(callback.calledOnce).toEqual(true); - expect(callback.lastCall.args[0]).toEqual([ - OC.SystemTags.collection.get('123').toJSON() - ]); - }); - it('fetches tag list from the global collection', function() { - var callback = sinon.stub(); - var opts = select2Stub.firstCall.args[0]; - - $tagsField.val('123'); - - opts.query({ - term: 'de', - callback: callback - }); - - expect(fetchTagsStub.calledOnce).toEqual(true); - expect(callback.notCalled).toEqual(true); - fetchTagsStub.yieldTo('success', fetchTagsStub.thisValues[0]); - - expect(callback.calledOnce).toEqual(true); - expect(callback.lastCall.args[0]).toEqual({ - results: [ - OC.SystemTags.collection.get('456').toJSON() - ] - }); - }); - it('reloads file list after selection', function() { - var reloadStub = sinon.stub(fileList, 'reload'); - $tagsField.val('456,123').change(); - expect(reloadStub.calledOnce).toEqual(true); - reloadStub.restore(); - }); - it('updates URL after selection', function() { - var handler = sinon.stub(); - fileList.$el.on('changeDirectory', handler); - $tagsField.val('456,123').change(); - - expect(handler.calledOnce).toEqual(true); - expect(handler.lastCall.args[0].dir).toEqual('456/123'); - }); - it('updates tag selection when url changed', function() { - fileList.$el.trigger(new $.Event('urlChanged', {dir: '456/123'})); - - expect(select2Stub.lastCall.args[0]).toEqual('val'); - expect(select2Stub.lastCall.args[1]).toEqual(['456', '123']); - }); - }); - - describe('loading results', function() { - var getFilteredFilesSpec, requestDeferred; - - beforeEach(function() { - requestDeferred = new $.Deferred(); - getFilteredFilesSpec = sinon.stub(OC.Files.Client.prototype, 'getFilteredFiles') - .returns(requestDeferred.promise()); - }); - afterEach(function() { - getFilteredFilesSpec.restore(); - }); - - it('renders empty message when no tags were set', function() { - fileList = new OCA.SystemTags.FileList( - $('#app-content'), { - systemTagIds: [] - } - ); - - fileList.reload(); - - expect(fileList.$el.find('.emptyfilelist.emptycontent').hasClass('hidden')).toEqual(false); - - expect(getFilteredFilesSpec.notCalled).toEqual(true); - }); - - it('render files', function(done) { - fileList = new OCA.SystemTags.FileList( - $('#app-content'), { - systemTagIds: ['123', '456'] - } - ); - - var reloading = fileList.reload(); - - expect(getFilteredFilesSpec.calledOnce).toEqual(true); - expect(getFilteredFilesSpec.lastCall.args[0].systemTagIds).toEqual(['123', '456']); - - var testFiles = [new FileInfo({ - id: 1, - type: 'file', - name: 'One.txt', - mimetype: 'text/plain', - mtime: 123456789, - size: 12, - etag: 'abc', - permissions: OC.PERMISSION_ALL - }), new FileInfo({ - id: 2, - type: 'file', - name: 'Two.jpg', - mimetype: 'image/jpeg', - mtime: 234567890, - size: 12049, - etag: 'def', - permissions: OC.PERMISSION_ALL - }), new FileInfo({ - id: 3, - type: 'file', - name: 'Three.pdf', - mimetype: 'application/pdf', - mtime: 234560000, - size: 58009, - etag: '123', - permissions: OC.PERMISSION_ALL - }), new FileInfo({ - id: 4, - type: 'dir', - name: 'somedir', - mimetype: 'httpd/unix-directory', - mtime: 134560000, - size: 250, - etag: '456', - permissions: OC.PERMISSION_ALL - })]; - - requestDeferred.resolve(207, testFiles); - - return reloading.then(function() { - expect(fileList.$el.find('.emptyfilelist.emptycontent').hasClass('hidden')).toEqual(true); - expect(fileList.$el.find('tbody>tr').length).toEqual(4); - }).then(done, done); - }); - }); -}); diff --git a/dist/files-main.js b/dist/files-main.js index 9a1867d04450b..b5e94e056b4cc 100644 --- a/dist/files-main.js +++ b/dist/files-main.js @@ -1,3 +1,3 @@ /*! For license information please see files-main.js.LICENSE.txt */ -!function(){var e,n,a,o={65358:function(e,t,n){"use strict";t.Ec=function(e){return e?e.split("/").map(encodeURIComponent).join("/"):e},n(21249),n(74916),n(23123),n(15306),n(4480),n(85827),n(92222)},35018:function(e,t,n){"use strict";var a=n(25108);const o=n(79742),r=n(80645),i="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=c,t.SlowBuffer=function(e){return+e!=e&&(e=0),c.alloc(+e)},t.INSPECT_MAX_BYTES=50;const s=2147483647;function l(e){if(e>s)throw new RangeError('The value "'+e+'" is invalid for option "size"');const t=new Uint8Array(e);return Object.setPrototypeOf(t,c.prototype),t}function c(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return m(e)}return u(e,t,n)}function u(e,t,n){if("string"==typeof e)return function(e,t){if("string"==typeof t&&""!==t||(t="utf8"),!c.isEncoding(t))throw new TypeError("Unknown encoding: "+t);const n=0|f(e,t);let a=l(n);const o=a.write(e,t);return o!==n&&(a=a.slice(0,o)),a}(e,t);if(ArrayBuffer.isView(e))return function(e){if(Y(e,Uint8Array)){const t=new Uint8Array(e);return h(t.buffer,t.byteOffset,t.byteLength)}return p(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(Y(e,ArrayBuffer)||e&&Y(e.buffer,ArrayBuffer))return h(e,t,n);if("undefined"!=typeof SharedArrayBuffer&&(Y(e,SharedArrayBuffer)||e&&Y(e.buffer,SharedArrayBuffer)))return h(e,t,n);if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');const a=e.valueOf&&e.valueOf();if(null!=a&&a!==e)return c.from(a,t,n);const o=function(e){if(c.isBuffer(e)){const t=0|g(e.length),n=l(t);return 0===n.length||e.copy(n,0,0,t),n}return void 0!==e.length?"number"!=typeof e.length||J(e.length)?l(0):p(e):"Buffer"===e.type&&Array.isArray(e.data)?p(e.data):void 0}(e);if(o)return o;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return c.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function d(e){if("number"!=typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function m(e){return d(e),l(e<0?0:0|g(e))}function p(e){const t=e.length<0?0:0|g(e.length),n=l(t);for(let a=0;a=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|e}function f(e,t){if(c.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||Y(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);const n=e.length,a=arguments.length>2&&!0===arguments[2];if(!a&&0===n)return 0;let o=!1;for(;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return W(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return Z(e).length;default:if(o)return a?-1:W(e).length;t=(""+t).toLowerCase(),o=!0}}function v(e,t,n){let a=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return _(this,t,n);case"utf8":case"utf-8":return N(this,t,n);case"ascii":return E(this,t,n);case"latin1":case"binary":return j(this,t,n);case"base64":return x(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,n);default:if(a)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),a=!0}}function y(e,t,n){const a=e[t];e[t]=e[n],e[n]=a}function A(e,t,n,a,o){if(0===e.length)return-1;if("string"==typeof n?(a=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),J(n=+n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=c.from(t,a)),c.isBuffer(t))return 0===t.length?-1:b(e,t,n,a,o);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):b(e,[t],n,a,o);throw new TypeError("val must be string, number or Buffer")}function b(e,t,n,a,o){let r,i=1,s=e.length,l=t.length;if(void 0!==a&&("ucs2"===(a=String(a).toLowerCase())||"ucs-2"===a||"utf16le"===a||"utf-16le"===a)){if(e.length<2||t.length<2)return-1;i=2,s/=2,l/=2,n/=2}function c(e,t){return 1===i?e[t]:e.readUInt16BE(t*i)}if(o){let a=-1;for(r=n;rs&&(n=s-l),r=n;r>=0;r--){let n=!0;for(let a=0;ao&&(a=o):a=o;const r=t.length;let i;for(a>r/2&&(a=r/2),i=0;i>8,o=n%256,r.push(o),r.push(a);return r}(t,e.length-n),e,n,a)}function x(e,t,n){return 0===t&&n===e.length?o.fromByteArray(e):o.fromByteArray(e.slice(t,n))}function N(e,t,n){n=Math.min(e.length,n);const a=[];let o=t;for(;o239?4:t>223?3:t>191?2:1;if(o+i<=n){let n,a,s,l;switch(i){case 1:t<128&&(r=t);break;case 2:n=e[o+1],128==(192&n)&&(l=(31&t)<<6|63&n,l>127&&(r=l));break;case 3:n=e[o+1],a=e[o+2],128==(192&n)&&128==(192&a)&&(l=(15&t)<<12|(63&n)<<6|63&a,l>2047&&(l<55296||l>57343)&&(r=l));break;case 4:n=e[o+1],a=e[o+2],s=e[o+3],128==(192&n)&&128==(192&a)&&128==(192&s)&&(l=(15&t)<<18|(63&n)<<12|(63&a)<<6|63&s,l>65535&&l<1114112&&(r=l))}}null===r?(r=65533,i=1):r>65535&&(r-=65536,a.push(r>>>10&1023|55296),r=56320|1023&r),a.push(r),o+=i}return function(e){const t=e.length;if(t<=T)return String.fromCharCode.apply(String,e);let n="",a=0;for(;aa.length?(c.isBuffer(t)||(t=c.from(t)),t.copy(a,o)):Uint8Array.prototype.set.call(a,t,o);else{if(!c.isBuffer(t))throw new TypeError('"list" argument must be an Array of Buffers');t.copy(a,o)}o+=t.length}return a},c.byteLength=f,c.prototype._isBuffer=!0,c.prototype.swap16=function(){const e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;tn&&(e+=" ... "),""},i&&(c.prototype[i]=c.prototype.inspect),c.prototype.compare=function(e,t,n,a,o){if(Y(e,Uint8Array)&&(e=c.from(e,e.offset,e.byteLength)),!c.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===a&&(a=0),void 0===o&&(o=this.length),t<0||n>e.length||a<0||o>this.length)throw new RangeError("out of range index");if(a>=o&&t>=n)return 0;if(a>=o)return-1;if(t>=n)return 1;if(this===e)return 0;let r=(o>>>=0)-(a>>>=0),i=(n>>>=0)-(t>>>=0);const s=Math.min(r,i),l=this.slice(a,o),u=e.slice(t,n);for(let e=0;e>>=0,isFinite(n)?(n>>>=0,void 0===a&&(a="utf8")):(a=n,n=void 0)}const o=this.length-t;if((void 0===n||n>o)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");a||(a="utf8");let r=!1;for(;;)switch(a){case"hex":return w(this,e,t,n);case"utf8":case"utf-8":return k(this,e,t,n);case"ascii":case"latin1":case"binary":return C(this,e,t,n);case"base64":return S(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,e,t,n);default:if(r)throw new TypeError("Unknown encoding: "+a);a=(""+a).toLowerCase(),r=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const T=4096;function E(e,t,n){let a="";n=Math.min(e.length,n);for(let o=t;oa)&&(n=a);let o="";for(let a=t;an)throw new RangeError("Trying to access beyond buffer length")}function F(e,t,n,a,o,r){if(!c.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function B(e,t,n,a,o){$(t,a,o,e,n,7);let r=Number(t&BigInt(4294967295));e[n++]=r,r>>=8,e[n++]=r,r>>=8,e[n++]=r,r>>=8,e[n++]=r;let i=Number(t>>BigInt(32)&BigInt(4294967295));return e[n++]=i,i>>=8,e[n++]=i,i>>=8,e[n++]=i,i>>=8,e[n++]=i,n}function z(e,t,n,a,o){$(t,a,o,e,n,7);let r=Number(t&BigInt(4294967295));e[n+7]=r,r>>=8,e[n+6]=r,r>>=8,e[n+5]=r,r>>=8,e[n+4]=r;let i=Number(t>>BigInt(32)&BigInt(4294967295));return e[n+3]=i,i>>=8,e[n+2]=i,i>>=8,e[n+1]=i,i>>=8,e[n]=i,n+8}function U(e,t,n,a,o,r){if(n+a>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function M(e,t,n,a,o){return t=+t,n>>>=0,o||U(e,0,n,4),r.write(e,t,n,a,23,4),n+4}function D(e,t,n,a,o){return t=+t,n>>>=0,o||U(e,0,n,8),r.write(e,t,n,a,52,8),n+8}c.prototype.slice=function(e,t){const n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||L(e,t,this.length);let a=this[e],o=1,r=0;for(;++r>>=0,t>>>=0,n||L(e,t,this.length);let a=this[e+--t],o=1;for(;t>0&&(o*=256);)a+=this[e+--t]*o;return a},c.prototype.readUint8=c.prototype.readUInt8=function(e,t){return e>>>=0,t||L(e,1,this.length),this[e]},c.prototype.readUint16LE=c.prototype.readUInt16LE=function(e,t){return e>>>=0,t||L(e,2,this.length),this[e]|this[e+1]<<8},c.prototype.readUint16BE=c.prototype.readUInt16BE=function(e,t){return e>>>=0,t||L(e,2,this.length),this[e]<<8|this[e+1]},c.prototype.readUint32LE=c.prototype.readUInt32LE=function(e,t){return e>>>=0,t||L(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},c.prototype.readUint32BE=c.prototype.readUInt32BE=function(e,t){return e>>>=0,t||L(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},c.prototype.readBigUInt64LE=X((function(e){q(e>>>=0,"offset");const t=this[e],n=this[e+7];void 0!==t&&void 0!==n||H(e,this.length-8);const a=t+256*this[++e]+65536*this[++e]+this[++e]*2**24,o=this[++e]+256*this[++e]+65536*this[++e]+n*2**24;return BigInt(a)+(BigInt(o)<>>=0,"offset");const t=this[e],n=this[e+7];void 0!==t&&void 0!==n||H(e,this.length-8);const a=t*2**24+65536*this[++e]+256*this[++e]+this[++e],o=this[++e]*2**24+65536*this[++e]+256*this[++e]+n;return(BigInt(a)<>>=0,t>>>=0,n||L(e,t,this.length);let a=this[e],o=1,r=0;for(;++r=o&&(a-=Math.pow(2,8*t)),a},c.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||L(e,t,this.length);let a=t,o=1,r=this[e+--a];for(;a>0&&(o*=256);)r+=this[e+--a]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*t)),r},c.prototype.readInt8=function(e,t){return e>>>=0,t||L(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},c.prototype.readInt16LE=function(e,t){e>>>=0,t||L(e,2,this.length);const n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt16BE=function(e,t){e>>>=0,t||L(e,2,this.length);const n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt32LE=function(e,t){return e>>>=0,t||L(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},c.prototype.readInt32BE=function(e,t){return e>>>=0,t||L(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},c.prototype.readBigInt64LE=X((function(e){q(e>>>=0,"offset");const t=this[e],n=this[e+7];void 0!==t&&void 0!==n||H(e,this.length-8);const a=this[e+4]+256*this[e+5]+65536*this[e+6]+(n<<24);return(BigInt(a)<>>=0,"offset");const t=this[e],n=this[e+7];void 0!==t&&void 0!==n||H(e,this.length-8);const a=(t<<24)+65536*this[++e]+256*this[++e]+this[++e];return(BigInt(a)<>>=0,t||L(e,4,this.length),r.read(this,e,!0,23,4)},c.prototype.readFloatBE=function(e,t){return e>>>=0,t||L(e,4,this.length),r.read(this,e,!1,23,4)},c.prototype.readDoubleLE=function(e,t){return e>>>=0,t||L(e,8,this.length),r.read(this,e,!0,52,8)},c.prototype.readDoubleBE=function(e,t){return e>>>=0,t||L(e,8,this.length),r.read(this,e,!1,52,8)},c.prototype.writeUintLE=c.prototype.writeUIntLE=function(e,t,n,a){e=+e,t>>>=0,n>>>=0,a||F(this,e,t,n,Math.pow(2,8*n)-1,0);let o=1,r=0;for(this[t]=255&e;++r>>=0,n>>>=0,a||F(this,e,t,n,Math.pow(2,8*n)-1,0);let o=n-1,r=1;for(this[t+o]=255&e;--o>=0&&(r*=256);)this[t+o]=e/r&255;return t+n},c.prototype.writeUint8=c.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,255,0),this[t]=255&e,t+1},c.prototype.writeUint16LE=c.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},c.prototype.writeUint16BE=c.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},c.prototype.writeUint32LE=c.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},c.prototype.writeUint32BE=c.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},c.prototype.writeBigUInt64LE=X((function(e,t=0){return B(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))})),c.prototype.writeBigUInt64BE=X((function(e,t=0){return z(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))})),c.prototype.writeIntLE=function(e,t,n,a){if(e=+e,t>>>=0,!a){const a=Math.pow(2,8*n-1);F(this,e,t,n,a-1,-a)}let o=0,r=1,i=0;for(this[t]=255&e;++o>0)-i&255;return t+n},c.prototype.writeIntBE=function(e,t,n,a){if(e=+e,t>>>=0,!a){const a=Math.pow(2,8*n-1);F(this,e,t,n,a-1,-a)}let o=n-1,r=1,i=0;for(this[t+o]=255&e;--o>=0&&(r*=256);)e<0&&0===i&&0!==this[t+o+1]&&(i=1),this[t+o]=(e/r>>0)-i&255;return t+n},c.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},c.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},c.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},c.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},c.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},c.prototype.writeBigInt64LE=X((function(e,t=0){return B(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),c.prototype.writeBigInt64BE=X((function(e,t=0){return z(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),c.prototype.writeFloatLE=function(e,t,n){return M(this,e,t,!0,n)},c.prototype.writeFloatBE=function(e,t,n){return M(this,e,t,!1,n)},c.prototype.writeDoubleLE=function(e,t,n){return D(this,e,t,!0,n)},c.prototype.writeDoubleBE=function(e,t,n){return D(this,e,t,!1,n)},c.prototype.copy=function(e,t,n,a){if(!c.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),a||0===a||(a=this.length),t>=e.length&&(t=e.length),t||(t=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o=a+4;n-=3)t=`_${e.slice(n-3,n)}${t}`;return`${e.slice(0,n)}${t}`}function $(e,t,n,a,o,r){if(e>n||e3?0===t||t===BigInt(0)?`>= 0${a} and < 2${a} ** ${8*(r+1)}${a}`:`>= -(2${a} ** ${8*(r+1)-1}${a}) and < 2 ** ${8*(r+1)-1}${a}`:`>= ${t}${a} and <= ${n}${a}`,new R.ERR_OUT_OF_RANGE("value",o,e)}!function(e,t,n){q(t,"offset"),void 0!==e[t]&&void 0!==e[t+n]||H(t,e.length-(n+1))}(a,o,r)}function q(e,t){if("number"!=typeof e)throw new R.ERR_INVALID_ARG_TYPE(t,"number",e)}function H(e,t,n){if(Math.floor(e)!==e)throw q(e,n),new R.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new R.ERR_BUFFER_OUT_OF_BOUNDS;throw new R.ERR_OUT_OF_RANGE(n||"offset",`>= ${n?1:0} and <= ${t}`,e)}G("ERR_BUFFER_OUT_OF_BOUNDS",(function(e){return e?`${e} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"}),RangeError),G("ERR_INVALID_ARG_TYPE",(function(e,t){return`The "${e}" argument must be of type number. Received type ${typeof t}`}),TypeError),G("ERR_OUT_OF_RANGE",(function(e,t,n){let a=`The value of "${e}" is out of range.`,o=n;return Number.isInteger(n)&&Math.abs(n)>2**32?o=I(String(n)):"bigint"==typeof n&&(o=String(n),(n>BigInt(2)**BigInt(32)||n<-(BigInt(2)**BigInt(32)))&&(o=I(o)),o+="n"),a+=` It must be ${t}. Received ${o}`,a}),RangeError);const V=/[^+/0-9A-Za-z-_]/g;function W(e,t){let n;t=t||1/0;const a=e.length;let o=null;const r=[];for(let i=0;i55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&r.push(239,191,189);continue}if(i+1===a){(t-=3)>-1&&r.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&r.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&r.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;r.push(n)}else if(n<2048){if((t-=2)<0)break;r.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;r.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;r.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return r}function Z(e){return o.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(V,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function K(e,t,n,a){let o;for(o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}function Y(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function J(e){return e!=e}const Q=function(){const e="0123456789abcdef",t=new Array(256);for(let n=0;n<16;++n){const a=16*n;for(let o=0;o<16;++o)t[a+o]=e[n]+e[o]}return t}();function X(e){return"undefined"==typeof BigInt?ee:e}function ee(){throw new Error("BigInt not supported")}},68988:function(e,t,n){var a=n(25108);!function(t,n){e.exports=n()}(self,(()=>(()=>{var e={7664:(e,t,n)=>{"use strict";n.d(t,{default:()=>D});var a=n(3089),o=n(2297),r=n(1205),i=n(932),s=n(2734),l=n.n(s),c=n(1441),u=n.n(c);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function p(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);n0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var n=t.querySelector(v);if(n){var a=g(this.$refs.menu.querySelectorAll(v)).indexOf(n);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(v)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(v).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(v).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,n=(this.$slots.default||[]).filter((function(e){var t,n;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)})),a=n.every((function(e){var t,n,a,o;return"NcActionLink"===(null!==(t=null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o||null===(o=o.href)||void 0===o?void 0:o.startsWith(window.location.origin))})),o=n.filter(this.isValidSingleAction);if(this.forceMenu&&o.length>0&&this.inline>0&&(l().util.warn("Specifying forceMenu will ignore any inline actions rendering."),o=[]),0!==n.length){var r=function(n){var a,o,r,i,s,l,c,u,d,m,h,g,f=(null==n||null===(a=n.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==n||null===(o=n.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o?void 0:o.icon]}),v=null==n||null===(r=n.componentOptions)||void 0===r||null===(r=r.listeners)||void 0===r?void 0:r.click,y=null==n||null===(i=n.componentOptions)||void 0===i||null===(i=i.children)||void 0===i||null===(i=i[0])||void 0===i||null===(i=i.text)||void 0===i||null===(s=i.trim)||void 0===s?void 0:s.call(i),A=(null==n||null===(l=n.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||y,b=t.forceName?y:"",w=null==n||null===(c=n.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||w||(w=y),e("NcButton",{class:["action-item action-item--single",null==n||null===(u=n.data)||void 0===u?void 0:u.staticClass,null==n||null===(d=n.data)||void 0===d?void 0:d.class],attrs:{"aria-label":A,title:w},ref:null==n||null===(m=n.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(b?"secondary":"tertiary"),disabled:t.disabled||(null==n||null===(h=n.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==n||null===(g=n.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!v&&{click:function(e){v&&v(e)}})},[e("template",{slot:"icon"},[f]),b])},i=function(n){var o,r,i=(null===(o=t.$slots.icon)||void 0===o?void 0:o[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(r=t.$refs.menuButton)||void 0===r?void 0:r.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[i]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[n])])])};if(1===n.length&&1===o.length&&!this.forceMenu)return r(o[0]);if(o.length>0&&this.inline>0){var s=o.slice(0,this.inline),c=n.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(r)),[c.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[i(c)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[i(n)])}}};var A=n(3379),b=n.n(A),w=n(7795),k=n.n(w),C=n(569),S=n.n(C),P=n(3565),x=n.n(P),N=n(9216),T=n.n(N),E=n(4589),j=n.n(E),_=n(9546),O={};O.styleTagTransform=j(),O.setAttributes=x(),O.insert=S().bind(null,"head"),O.domAPI=k(),O.insertStyleElement=T(),b()(_.Z,O),_.Z&&_.Z.locals&&_.Z.locals;var L=n(5155),F={};F.styleTagTransform=j(),F.setAttributes=x(),F.insert=S().bind(null,"head"),F.domAPI=k(),F.insertStyleElement=T(),b()(L.Z,F),L.Z&&L.Z.locals&&L.Z.locals;var B=n(1900),z=n(5727),U=n.n(z),M=(0,B.Z)(y,void 0,void 0,!1,null,"55038265",null);"function"==typeof U()&&U()(M);const D=M.exports},3089:(e,t,n)=>{"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function i(e){for(var t=1;tN});const l={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,n,o,r=this,l=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(n=t.trim)||void 0===n?void 0:n.call(t),c=!!l,u=null===(o=this.$slots)||void 0===o?void 0:o.icon;l||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:l,ariaLabel:this.ariaLabel},this);var d=function(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=n.navigate,o=n.isActive,d=n.isExactActive;return e(r.to||!r.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!c,"button-vue--text-only":c&&!u,"button-vue--icon-and-text":u&&c},s(t,"button-vue--vue-".concat(r.realType),r.realType),s(t,"button-vue--wide",r.wide),s(t,"button-vue--".concat(r.flexAlignment),"center"!==r.flexAlignment),s(t,"button-vue--reverse",r.isReverseAligned),s(t,"active",o),s(t,"router-link-exact-active",d),t)],attrs:i({"aria-label":r.ariaLabel,"aria-pressed":r.pressed,disabled:r.disabled,type:r.href?null:r.nativeType,role:r.href?"button":null,href:!r.to&&r.href?r.href:null,target:!r.to&&r.href?"_self":null,rel:!r.to&&r.href?"nofollow noreferrer noopener":null,download:!r.to&&r.href&&r.download?r.download:null},r.$attrs),on:i(i({},r.$listeners),{},{click:function(e){"boolean"==typeof r.pressed&&r.$emit("update:pressed",!r.pressed),r.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":r.ariaHidden}},[r.$slots.icon]):null,c?e("span",{class:"button-vue__text"},[l]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=n(3379),u=n.n(c),d=n(7795),m=n.n(d),p=n(569),h=n.n(p),g=n(3565),f=n.n(g),v=n(9216),y=n.n(v),A=n(4589),b=n.n(A),w=n(7294),k={};k.styleTagTransform=b(),k.setAttributes=f(),k.insert=h().bind(null,"head"),k.domAPI=m(),k.insertStyleElement=y(),u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var C=n(1900),S=n(2102),P=n.n(S),x=(0,C.Z)(l,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(x);const N=x.exports},4390:(e,t,a)=>{"use strict";a.d(t,{default:()=>Y});var o=a(1206),r=a(932),i=a(1205),s=a(3648),l=a(7664),c=a(3089);function u(e,t){var n,a,o,r=t;this.start=function(){o=!0,a=new Date,n=setTimeout(e,r)},this.pause=function(){o=!1,clearTimeout(n),r-=new Date-a},this.clear=function(){o=!1,clearTimeout(n),r=0},this.getTimeLeft=function(){return o&&(this.pause(),this.start()),r},this.getStateRunning=function(){return o},this.start()}var d=a(336);const m=n(32964);var p=a.n(m);const h=n(11585);var g=a.n(h),f=a(8618),v=a.n(f);const y=n(81857);var A=a.n(y);const b=n(53071);var w=a.n(b),k=a(4505);const C=n(59797);function S(e){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},S(e)}function P(){P=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new N(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(T([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==S(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function T(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function x(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function N(e){return function(e){if(Array.isArray(e))return T(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return T(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?T(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n{"use strict";n.d(t,{default:()=>j});var o=n(9454),r=n(4505),i=n(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,n){return e[t]=n}}function d(e,t,n,o){var r=t&&t.prototype instanceof h?t:h,i=Object.create(r.prototype),s=new N(o||[]);return a(i,"_invoke",{value:C(e,n,s)}),i}function m(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function f(){}var v={};u(v,r,(function(){return this}));var y=Object.getPrototypeOf,A=y&&y(y(T([])));A&&A!==t&&n.call(A,r)&&(v=A);var b=f.prototype=h.prototype=Object.create(v);function w(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function o(a,r,i,l){var c=m(e[a],e,r);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,l)}),(function(e){o("throw",e,i,l)})):t.resolve(d).then((function(e){u.value=e,i(u)}),(function(e){return o("throw",e,i,l)}))}l(c.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function C(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=S(i,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=m(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function S(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),p;var o=m(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,p;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function T(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),p}},e}function c(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}const u={name:"NcPopover",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=l().mark((function e(){var n,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(n=t.$refs.popover)||void 0===n||null===(n=n.$refs.popperContent)||void 0===n?void 0:n.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,r.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){c(r,a,o,i,s,"next",e)}function s(e){c(r,a,o,i,s,"throw",e)}i(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=n(3379),p=n.n(m),h=n(7795),g=n.n(h),f=n(569),v=n.n(f),y=n(3565),A=n.n(y),b=n(9216),w=n.n(b),k=n(4589),C=n.n(k),S=n(1625),P={};P.styleTagTransform=C(),P.setAttributes=A(),P.insert=v().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=w(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var x=n(1900),N=n(2405),T=n.n(N),E=(0,x.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof T()&&T()(E);const j=E.exports},336:(e,t,n)=>{"use strict";n.d(t,{default:()=>y});var a=n(9454),o=n(3379),r=n.n(o),i=n(7795),s=n.n(i),l=n(569),c=n.n(l),u=n(3565),d=n.n(u),m=n(9216),p=n.n(m),h=n(4589),g=n.n(h),f=n(8384),v={};v.styleTagTransform=g(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=s(),v.insertStyleElement=p(),r()(f.Z,v),f.Z&&f.Z.locals&&f.Z.locals,a.options.themes.tooltip.html=!1,a.options.themes.tooltip.delay={show:500,hide:200},a.options.themes.tooltip.distance=10,a.options.themes.tooltip["arrow-padding"]=3;const y=a.VTooltip},932:(e,t,n)=>{"use strict";n.d(t,{n:()=>r,t:()=>i});var a=(0,n(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var n in e.translations)e.translations[n].pluralId?t[n]={msgid:n,msgid_plural:e.translations[n].pluralId,msgstr:e.translations[n].msgstr}:t[n]={msgid:n,msgstr:[e.translations[n]]};a.addTranslation(e.locale,{translations:{"":t}})}));var o=a.build(),r=o.ngettext.bind(o),i=o.gettext.bind(o)},334:(e,t,n)=>{"use strict";n.d(t,{default:()=>r});var a=n(2734),o=new(n.n(a)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit("changed",e)}},created:function(){window.addEventListener("resize",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}});const r={data:function(){return{isMobile:!1}},mounted:function(){o.$on("changed",this.onIsMobileChanged),this.isMobile=o.isMobile},beforeDestroy:function(){o.$off("changed",this.onIsMobileChanged)},methods:{onIsMobileChanged:function(e){this.isMobile=e}}}},3648:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(932);const o={methods:{n:a.n,t:a.t}}},1205:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},1206:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/directives/Tooltip/index.scss"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n/**\n* @copyright Copyright (c) 2016, John Molakvoæ \n* @copyright Copyright (c) 2016, Robin Appelman \n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \n* @copyright Copyright (c) 2016, Erik Pellikka \n* @copyright Copyright (c) 2015, Vincent Petry \n*\n* Bootstrap (http://getbootstrap.com)\n* SCSS copied from version 3.3.5\n* Copyright 2011-2015 Twitter, Inc.\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n*/\n\n$arrow-width: 10px;\n\n.v-popper--theme-tooltip {\n\t&.v-popper__popper {\n\t\tposition: absolute;\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tright: auto;\n\t\tleft: auto;\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\ttext-align: left;\n\t\ttext-align: start;\n\t\topacity: 0;\n\t\tline-height: 1.6;\n\n\t\tline-break: auto;\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t// TOP\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t// BOTTOM\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t// RIGHT\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tright: 100%;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t// LEFT\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tleft: 100%;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t// HIDDEN / SHOWN\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity .15s, visibility .15s;\n\t\t\topacity: 0;\n\t\t}\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity .15s;\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t// CONTENT\n\t.v-popper__inner {\n\t\tmax-width: 350px;\n\t\tpadding: 5px 8px;\n\t\ttext-align: center;\n\t\tcolor: var(--color-main-text);\n\t\tborder-radius: var(--border-radius);\n\t\tbackground-color: var(--color-main-background);\n\t}\n\n\t// ARROW\n\t.v-popper__arrow-container {\n\t\tposition: absolute;\n\t\tz-index: 1;\n\t\twidth: 0;\n\t\theight: 0;\n\t\tmargin: 0;\n\t\tborder-style: solid;\n\t\tborder-color: transparent;\n\t\tborder-width: $arrow-width;\n\t}\n}\n"],sourceRoot:""}]);const s=i},9546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=i},5155:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=i},5218:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-c3f93c9a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-settings-modal[data-v-c3f93c9a] .modal-wrapper .modal-container{display:flex;overflow:hidden}.app-settings[data-v-c3f93c9a]{width:100%;display:flex;flex-direction:column;min-width:0}.app-settings__name[data-v-c3f93c9a]{min-height:44px;height:44px;line-height:44px;padding-top:4px;text-align:center}.app-settings__wrapper[data-v-c3f93c9a]{display:flex;width:100%;overflow:hidden;height:100%;position:relative}.app-settings__navigation[data-v-c3f93c9a]{min-width:200px;margin-right:20px;overflow-x:hidden;overflow-y:auto;position:relative;height:100%}.app-settings__content[data-v-c3f93c9a]{max-width:100vw;overflow-y:auto;overflow-x:hidden;padding:24px;width:100%}.navigation-list[data-v-c3f93c9a]{height:100%;box-sizing:border-box;overflow-y:auto;padding:12px}.navigation-list__link[data-v-c3f93c9a]{display:block;font-size:16px;height:44px;margin:4px 0;line-height:44px;border-radius:var(--border-radius-pill);font-weight:bold;padding:0 20px;cursor:pointer;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;background-color:rgba(0,0,0,0);border:none}.navigation-list__link[data-v-c3f93c9a]:hover,.navigation-list__link[data-v-c3f93c9a]:focus{background-color:var(--color-background-hover)}.navigation-list__link--active[data-v-c3f93c9a]{background-color:var(--color-primary-element-light) !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,qEACC,YAAA,CACA,eAAA,CAGD,+BACC,UAAA,CACA,YAAA,CACA,qBAAA,CACA,WAAA,CACA,qCACC,eCWe,CDVf,WCUe,CDTf,gBCSe,CDRf,eAAA,CACA,iBAAA,CAED,wCACC,YAAA,CACA,UAAA,CACA,eAAA,CACA,WAAA,CACA,iBAAA,CAED,2CACC,eAAA,CACA,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,iBAAA,CACA,WAAA,CAED,wCACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,YAAA,CACA,UAAA,CAIF,kCACC,WAAA,CACA,qBAAA,CACA,eAAA,CACA,YAAA,CACA,wCACC,aAAA,CACA,cAAA,CACA,WC3Be,CD4Bf,YAAA,CACA,gBC7Be,CD8Bf,uCAAA,CACA,gBAAA,CACA,cAAA,CACA,cAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CACA,8BAAA,CACA,WAAA,CACA,4FAEC,8CAAA,CAED,gDACC,8DAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.app-settings-modal :deep(.modal-wrapper .modal-container) {\n\tdisplay: flex;\n\toverflow: hidden;\n}\n\n.app-settings {\n\twidth: 100%;\n\tdisplay: flex;\n\tflex-direction: column;\n\tmin-width: 0;\n\t&__name {\n\t\tmin-height: $clickable-area;\n\t\theight: $clickable-area;\n\t\tline-height: $clickable-area;\n\t\tpadding-top: 4px; // Same as the close button top spacing\n\t\ttext-align: center;\n\t}\n\t&__wrapper {\n\t\tdisplay: flex;\n\t\twidth: 100%;\n\t\toverflow: hidden;\n\t\theight: 100%;\n\t\tposition: relative;\n\t}\n\t&__navigation {\n\t\tmin-width: 200px;\n\t\tmargin-right: 20px;\n\t\toverflow-x: hidden;\n\t\toverflow-y: auto;\n\t\tposition: relative;\n\t\theight: 100%;\n\t}\n\t&__content {\n\t\tmax-width: 100vw;\n\t\toverflow-y: auto;\n\t\toverflow-x: hidden;\n\t\tpadding: 24px;\n\t\twidth: 100%;\n\t}\n}\n\n.navigation-list {\n\theight: 100%;\n\tbox-sizing: border-box;\n\toverflow-y: auto;\n\tpadding: 12px;\n\t&__link {\n\t\tdisplay: block;\n\t\tfont-size: 16px;\n\t\theight: $clickable-area;\n\t\tmargin: 4px 0;\n\t\tline-height: $clickable-area;\n\t\tborder-radius: var(--border-radius-pill);\n\t\tfont-weight: bold;\n\t\tpadding: 0 20px;\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t\t&--active {\n\t\t\tbackground-color: var(--color-primary-element-light) !important;\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},7294:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},4959:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,'.material-design-icon[data-v-697d9f14]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.modal-mask[data-v-697d9f14]{position:fixed;z-index:9998;top:0;left:0;display:block;width:100%;height:100%;background-color:rgba(0,0,0,.5)}.modal-mask--dark[data-v-697d9f14]{background-color:rgba(0,0,0,.92)}.modal-header[data-v-697d9f14]{position:absolute;z-index:10001;top:0;right:0;left:0;display:flex !important;align-items:center;justify-content:center;width:100%;height:50px;overflow:hidden;transition:opacity 250ms,visibility 250ms}.modal-header.invisible[style*="display:none"][data-v-697d9f14],.modal-header.invisible[style*="display: none"][data-v-697d9f14]{visibility:hidden}.modal-header .modal-name[data-v-697d9f14]{overflow-x:hidden;box-sizing:border-box;width:100%;padding:0 132px 0 12px;transition:padding ease 100ms;white-space:nowrap;text-overflow:ellipsis;color:#fff;font-size:14px;margin-bottom:0}@media only screen and (min-width: 1024px){.modal-header .modal-name[data-v-697d9f14]{padding-left:132px;text-align:center}}.modal-header .icons-menu[data-v-697d9f14]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end}.modal-header .icons-menu .header-close[data-v-697d9f14]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:3px;padding:0}.modal-header .icons-menu .play-pause-icons[data-v-697d9f14]{position:relative;width:50px;height:50px;margin:0;padding:0;cursor:pointer;border:none;background-color:rgba(0,0,0,0)}.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__pause[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__pause[data-v-697d9f14]{opacity:1;border-radius:22px;background-color:rgba(127,127,127,.25)}.modal-header .icons-menu .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons__pause[data-v-697d9f14]{box-sizing:border-box;width:44px;height:44px;margin:3px;cursor:pointer;opacity:.7}.modal-header .icons-menu .header-actions[data-v-697d9f14]{color:#fff}.modal-header .icons-menu[data-v-697d9f14] .action-item{margin:3px}.modal-header .icons-menu[data-v-697d9f14] .action-item--single{box-sizing:border-box;width:44px;height:44px;cursor:pointer;background-position:center;background-size:22px}.modal-header .icons-menu[data-v-697d9f14] button{color:#fff}.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle{padding:0}.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle span,.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle svg{width:var(--icon-size);height:var(--icon-size)}.modal-wrapper[data-v-697d9f14]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.modal-wrapper .prev[data-v-697d9f14],.modal-wrapper .next[data-v-697d9f14]{z-index:10000;display:flex !important;height:35vh;min-height:300px;position:absolute;transition:opacity 250ms,visibility 250ms;color:#fff}.modal-wrapper .prev[data-v-697d9f14]:focus-visible,.modal-wrapper .next[data-v-697d9f14]:focus-visible{box-shadow:0 0 0 2px var(--color-primary-element-text);background-color:var(--color-box-shadow)}.modal-wrapper .prev.invisible[style*="display:none"][data-v-697d9f14],.modal-wrapper .prev.invisible[style*="display: none"][data-v-697d9f14],.modal-wrapper .next.invisible[style*="display:none"][data-v-697d9f14],.modal-wrapper .next.invisible[style*="display: none"][data-v-697d9f14]{visibility:hidden}.modal-wrapper .prev[data-v-697d9f14]{left:2px}.modal-wrapper .next[data-v-697d9f14]{right:2px}.modal-wrapper .modal-container[data-v-697d9f14]{position:relative;display:flex;padding:0;transition:transform 300ms ease;border-radius:var(--border-radius-large);background-color:var(--color-main-background);color:var(--color-main-text);box-shadow:0 0 40px rgba(0,0,0,.2)}.modal-wrapper .modal-container__close[data-v-697d9f14]{position:absolute;top:4px;right:4px}.modal-wrapper .modal-container__content[data-v-697d9f14]{width:100%;overflow:auto}.modal-wrapper--small .modal-container[data-v-697d9f14]{width:400px;max-width:90%;max-height:90%}.modal-wrapper--normal .modal-container[data-v-697d9f14]{max-width:90%;width:600px;max-height:90%}.modal-wrapper--large .modal-container[data-v-697d9f14]{max-width:90%;width:900px;max-height:90%}.modal-wrapper--full .modal-container[data-v-697d9f14]{width:100%;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}@media only screen and (max-width: 512px){.modal-wrapper .modal-container[data-v-697d9f14]{max-width:initial;width:100%;max-height:initial;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}}.fade-enter-active[data-v-697d9f14],.fade-leave-active[data-v-697d9f14]{transition:opacity 250ms}.fade-enter[data-v-697d9f14],.fade-leave-to[data-v-697d9f14]{opacity:0}.fade-visibility-enter[data-v-697d9f14],.fade-visibility-leave-to[data-v-697d9f14]{visibility:hidden;opacity:0}.modal-in-enter-active[data-v-697d9f14],.modal-in-leave-active[data-v-697d9f14],.modal-out-enter-active[data-v-697d9f14],.modal-out-leave-active[data-v-697d9f14]{transition:opacity 250ms}.modal-in-enter[data-v-697d9f14],.modal-in-leave-to[data-v-697d9f14],.modal-out-enter[data-v-697d9f14],.modal-out-leave-to[data-v-697d9f14]{opacity:0}.modal-in-enter .modal-container[data-v-697d9f14],.modal-in-leave-to .modal-container[data-v-697d9f14]{transform:scale(0.9)}.modal-out-enter .modal-container[data-v-697d9f14],.modal-out-leave-to .modal-container[data-v-697d9f14]{transform:scale(1.1)}.modal-mask .play-pause-icons .progress-ring[data-v-697d9f14]{position:absolute;top:0;left:0;transform:rotate(-90deg)}.modal-mask .play-pause-icons .progress-ring .progress-ring__circle[data-v-697d9f14]{transition:100ms stroke-dashoffset;transform-origin:50% 50%;animation:progressring-697d9f14 linear var(--slideshow-duration) infinite;stroke-linecap:round;stroke-dashoffset:94.2477796077;stroke-dasharray:94.2477796077}.modal-mask .play-pause-icons--paused .icon-pause[data-v-697d9f14]{animation:breath-697d9f14 2s cubic-bezier(0.4, 0, 0.2, 1) infinite}.modal-mask .play-pause-icons--paused .progress-ring__circle[data-v-697d9f14]{animation-play-state:paused !important}@keyframes progressring-697d9f14{from{stroke-dashoffset:94.2477796077}to{stroke-dashoffset:0}}@keyframes breath-697d9f14{0%{opacity:1}50%{opacity:0}100%{opacity:1}}',"",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcModal/NcModal.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,cAAA,CACA,YAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,WAAA,CACA,+BAAA,CACA,mCACC,gCAAA,CAIF,+BACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,OAAA,CACA,MAAA,CAGA,uBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WCuBe,CDtBf,eAAA,CACA,yCAAA,CAIA,iIAEC,iBAAA,CAGD,2CACC,iBAAA,CACA,qBAAA,CACA,UAAA,CACA,sBAAA,CACA,6BAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,cChBY,CDiBZ,eAAA,CAID,2CACC,2CACC,kBAAA,CACA,iBAAA,CAAA,CAIF,2CACC,iBAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,wBAAA,CAEA,yDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA,CAGD,6DACC,iBAAA,CACA,UC3Ba,CD4Bb,WC5Ba,CD6Bb,QAAA,CACA,SAAA,CACA,cAAA,CACA,WAAA,CACA,8BAAA,CAGC,8WAEC,SC9CU,CD+CV,kBAAA,CACA,sCCxDW,CD2Db,uIAEC,qBAAA,CACA,UCzEa,CD0Eb,WC1Ea,CD2Eb,UAAA,CACA,cAAA,CACA,UC3Da,CD+Df,2DACC,UAAA,CAGD,yDACC,UAAA,CAEA,iEACC,qBAAA,CACA,UC1Fa,CD2Fb,WC3Fa,CD4Fb,cAAA,CACA,0BAAA,CACA,oBAAA,CAIF,kDAEC,UAAA,CAID,oEACC,SAAA,CACA,iJACC,sBAAA,CACA,uBAAA,CAMJ,gCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,qBAAA,CACA,UAAA,CACA,WAAA,CAGA,4EAEC,aAAA,CAEA,uBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,yCAAA,CAGA,UAAA,CAEA,wGAEC,sDAAA,CACA,wCAAA,CAOD,8RAEC,iBAAA,CAGF,sCACC,QAAA,CAED,sCACC,SAAA,CAID,iDACC,iBAAA,CACA,YAAA,CACA,SAAA,CACA,+BAAA,CACA,wCAAA,CACA,6CAAA,CACA,4BAAA,CACA,kCAAA,CAEA,wDACC,iBAAA,CACA,OAAA,CACA,SAAA,CAGD,0DACC,UAAA,CACA,aAAA,CAMD,wDACC,WAAA,CACA,aAAA,CACA,cAAA,CAID,yDACC,aAAA,CACA,WAAA,CACA,cAAA,CAID,wDACC,aAAA,CACA,WAAA,CACA,cAAA,CAID,uDACC,UAAA,CACA,wCAAA,CACA,iBAAA,CACA,QCrLa,CDsLb,eAAA,CAKF,0CACC,iDACC,iBAAA,CACA,UAAA,CACA,kBAAA,CACA,wCAAA,CACA,iBAAA,CACA,QClMa,CDmMb,eAAA,CAAA,CAMH,wEAEC,wBAAA,CAGD,6DAEC,SAAA,CAGD,mFAEC,iBAAA,CACA,SAAA,CAGD,kKAIC,wBAAA,CAGD,4IAIC,SAAA,CAGD,uGAEC,oBAAA,CAGD,yGAEC,oBAAA,CAQA,8DACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CACA,qFACC,kCAAA,CACA,wBAAA,CACA,yEAAA,CAEA,oBAAA,CACA,+BAAA,CACA,8BAAA,CAID,mEACC,kEAAA,CAED,8EACC,sCAAA,CAMH,iCACC,KACC,+BAAA,CAED,GACC,mBAAA,CAAA,CAIF,2BACC,GACC,SAAA,CAED,IACC,SAAA,CAED,KACC,SAAA,CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.modal-mask {\n\tposition: fixed;\n\tz-index: 9998;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: block;\n\twidth: 100%;\n\theight: 100%;\n\tbackground-color: rgba(0, 0, 0, .5);\n\t&--dark {\n\t\tbackground-color: rgba(0, 0, 0, .92);\n\t}\n}\n\n.modal-header {\n\tposition: absolute;\n\tz-index: 10001;\n\ttop: 0;\n\tright: 0;\n\tleft: 0;\n\t// prevent vue show to use display:none and reseting\n\t// the circle animation loop\n\tdisplay: flex !important;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 100%;\n\theight: $header-height;\n\toverflow: hidden;\n\ttransition: opacity 250ms,\n\t\tvisibility 250ms;\n\n\t// replace display by visibility\n\t&.invisible[style*='display:none'],\n\t&.invisible[style*='display: none'] {\n\t\tvisibility: hidden;\n\t}\n\n\t.modal-name {\n\t\toverflow-x: hidden;\n\t\tbox-sizing: border-box;\n\t\twidth: 100%;\n\t\tpadding: 0 #{$clickable-area * 3} 0 12px; // maximum actions is 3\n\t\ttransition: padding ease 100ms;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\tcolor: #fff;\n\t\tfont-size: $icon-margin;\n\t\tmargin-bottom: 0;\n\t}\n\n\t// On wider screens the name can be centered\n\t@media only screen and (min-width: $breakpoint-mobile) {\n\t\t.modal-name {\n\t\t\tpadding-left: #{$clickable-area * 3}; // maximum actions is 3\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.icons-menu {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: flex-end;\n\n\t\t.header-close {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: center;\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: math.div($header-height - $clickable-area, 2);\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.play-pause-icons {\n\t\t\tposition: relative;\n\t\t\twidth: $header-height;\n\t\t\theight: $header-height;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcursor: pointer;\n\t\t\tborder: none;\n\t\t\tbackground-color: transparent;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\t.play-pause-icons__play,\n\t\t\t\t.play-pause-icons__pause {\n\t\t\t\t\topacity: $opacity_full;\n\t\t\t\t\tborder-radius: math.div($clickable-area, 2);\n\t\t\t\t\tbackground-color: $icon-focus-bg;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&__play,\n\t\t\t&__pause {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: $clickable-area;\n\t\t\t\theight: $clickable-area;\n\t\t\t\tmargin: math.div($header-height - $clickable-area, 2);\n\t\t\t\tcursor: pointer;\n\t\t\t\topacity: $opacity_normal;\n\t\t\t}\n\t\t}\n\n\t\t.header-actions {\n\t\t\tcolor: white;\n\t\t}\n\n\t\t&:deep() .action-item {\n\t\t\tmargin: math.div($header-height - $clickable-area, 2);\n\n\t\t\t&--single {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: $clickable-area;\n\t\t\t\theight: $clickable-area;\n\t\t\t\tcursor: pointer;\n\t\t\t\tbackground-position: center;\n\t\t\t\tbackground-size: 22px;\n\t\t\t}\n\t\t}\n\n\t\t:deep(button) {\n\t\t\t// force white instead of default main text\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\t// Force the Actions menu icon to be the same size as other icons\n\t\t&:deep(.action-item__menutoggle) {\n\t\t\tpadding: 0;\n\t\t\tspan, svg {\n\t\t\t\twidth: var(--icon-size);\n\t\t\t\theight: var(--icon-size);\n\t\t\t}\n\t\t}\n\t}\n}\n\n.modal-wrapper {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tbox-sizing: border-box;\n\twidth: 100%;\n\theight: 100%;\n\n\t/* Navigation buttons */\n\t.prev,\n\t.next {\n\t\tz-index: 10000;\n\t\t// ignore display: none\n\t\tdisplay: flex !important;\n\t\theight: 35vh;\n\t\tmin-height: 300px;\n\t\tposition: absolute;\n\t\ttransition: opacity 250ms,\n\t\t\tvisibility 250ms;\n\t\t// hover the mask\n\t\tcolor: white;\n\n\t\t&:focus-visible {\n\t\t\t// Override NcButton focus styles\n\t\t\tbox-shadow: 0 0 0 2px var(--color-primary-element-text);\n\t\t\tbackground-color: var(--color-box-shadow);\n\t\t}\n\n\t\t// we want to keep the elements on page\n\t\t// even if hidden to avoid having a unbalanced\n\t\t// centered content\n\t\t// replace display by visibility\n\t\t&.invisible[style*='display:none'],\n\t\t&.invisible[style*='display: none'] {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\t.prev {\n\t\tleft: 2px;\n\t}\n\t.next {\n\t\tright: 2px;\n\t}\n\n\t/* Content */\n\t.modal-container {\n\t\tposition: relative;\n\t\tdisplay: flex;\n\t\tpadding: 0;\n\t\ttransition: transform 300ms ease;\n\t\tborder-radius: var(--border-radius-large);\n\t\tbackground-color: var(--color-main-background);\n\t\tcolor: var(--color-main-text);\n\t\tbox-shadow: 0 0 40px rgba(0, 0, 0, .2);\n\n\t\t&__close {\n\t\t\tposition: absolute;\n\t\t\ttop: 4px;\n\t\t\tright: 4px;\n\t\t}\n\n\t\t&__content {\n\t\t\twidth: 100%;\n\t\t\toverflow: auto; // avoids unecessary hacks if the content should be bigger than the modal\n\t\t}\n\t}\n\n\t// Sizing\n\t&--small {\n\t\t.modal-container {\n\t\t\twidth: 400px;\n\t\t\tmax-width: 90%;\n\t\t\tmax-height: 90%;\n\t\t}\n\t}\n\t&--normal {\n\t\t.modal-container {\n\t\t\tmax-width: 90%;\n\t\t\twidth: 600px;\n\t\t\tmax-height: 90%;\n\t\t}\n\t}\n\t&--large {\n\t\t.modal-container {\n\t\t\tmax-width: 90%;\n\t\t\twidth: 900px;\n\t\t\tmax-height: 90%;\n\t\t}\n\t}\n\t&--full {\n\t\t.modal-container {\n\t\t\twidth: 100%;\n\t\t\theight: calc(100% - var(--header-height));\n\t\t\tposition: absolute;\n\t\t\ttop: $header-height;\n\t\t\tborder-radius: 0;\n\t\t}\n\t}\n\n\t// Make modal full screen on mobile\n\t@media only screen and (max-width: math.div($breakpoint-mobile, 2)) {\n\t\t.modal-container {\n\t\t\tmax-width: initial;\n\t\t\twidth: 100%;\n\t\t\tmax-height: initial;\n\t\t\theight: calc(100% - var(--header-height));\n\t\t\tposition: absolute;\n\t\t\ttop: $header-height;\n\t\t\tborder-radius: 0;\n\t\t}\n\t}\n}\n\n/* TRANSITIONS */\n.fade-enter-active,\n.fade-leave-active {\n\ttransition: opacity 250ms;\n}\n\n.fade-enter,\n.fade-leave-to {\n\topacity: 0;\n}\n\n.fade-visibility-enter,\n.fade-visibility-leave-to {\n\tvisibility: hidden;\n\topacity: 0;\n}\n\n.modal-in-enter-active,\n.modal-in-leave-active,\n.modal-out-enter-active,\n.modal-out-leave-active {\n\ttransition: opacity 250ms;\n}\n\n.modal-in-enter,\n.modal-in-leave-to,\n.modal-out-enter,\n.modal-out-leave-to {\n\topacity: 0;\n}\n\n.modal-in-enter .modal-container,\n.modal-in-leave-to .modal-container {\n\ttransform: scale(.9);\n}\n\n.modal-out-enter .modal-container,\n.modal-out-leave-to .modal-container {\n\ttransform: scale(1.1);\n}\n\n// animated circle\n$radius: 15;\n$pi: 3.14159265358979;\n\n.modal-mask .play-pause-icons {\n\t.progress-ring {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\ttransform: rotate(-90deg);\n\t\t.progress-ring__circle {\n\t\t\ttransition: 100ms stroke-dashoffset;\n\t\t\ttransform-origin: 50% 50%; // axis compensation\n\t\t\tanimation: progressring linear var(--slideshow-duration) infinite;\n\n\t\t\tstroke-linecap: round;\n\t\t\tstroke-dashoffset: $radius * 2 * $pi; // radius * 2 * PI\n\t\t\tstroke-dasharray: $radius * 2 * $pi; // radius * 2 * PI\n\t\t}\n\t}\n\t&--paused {\n\t\t.icon-pause {\n\t\t\tanimation: breath 2s cubic-bezier(.4, 0, .2, 1) infinite;\n\t\t}\n\t\t.progress-ring__circle {\n\t\t\tanimation-play-state: paused !important;\n\t\t}\n\t}\n}\n\n// keyframes get scoped too and break the animation name, we need them unscoped\n@keyframes progressring {\n\tfrom {\n\t\tstroke-dashoffset: $radius * 2 * $pi; // radius * 2 * PI\n\t}\n\tto {\n\t\tstroke-dashoffset: 0;\n\t}\n}\n\n@keyframes breath {\n\t0% {\n\t\topacity: 1;\n\t}\n\t50% {\n\t\topacity: 0;\n\t}\n\t100% {\n\t\topacity: 1;\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},1625:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},7984:()=>{},2102:()=>{},9989:()=>{},2405:()=>{},1900:(e,t,n)=>{"use strict";function a(e,t,n,a,o,r,i,s){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),a&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),i?(l=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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=l):o&&(l=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,{Z:()=>a})},7931:e=>{"use strict";e.exports=n(23955)},9454:e=>{"use strict";e.exports=n(73045)},4505:e=>{"use strict";e.exports=n(15303)},2734:e=>{"use strict";e.exports=n(20144)},8618:e=>{"use strict";e.exports=n(82675)},1441:e=>{"use strict";e.exports=n(89115)}},t={};function o(n){var a=t[n];if(void 0!==a)return a.exports;var r=t[n]={id:n,exports:{}};return e[n](r,r.exports,o),r.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var r={};return(()=>{"use strict";o.r(r),o.d(r,{default:()=>E});var e=o(4390),t=o(334),a=o(932);const i=n(20296);var s=o.n(i);function l(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n(()=>{"use strict";var e={2482:(e,t,n)=>{n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-006b9071]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-settings-section[data-v-006b9071]{margin-bottom:80px}.app-settings-section__name[data-v-006b9071]{font-size:20px;margin:0;padding:20px 0;font-weight:bold;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSettingsSection/NcAppSettingsSection.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,uCACC,kBAAA,CACA,6CACC,cAAA,CACA,QAAA,CACA,cAAA,CACA,gBAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.app-settings-section {\n\tmargin-bottom: 80px;\n\t&__name {\n\t\tfont-size: 20px;\n\t\tmargin: 0;\n\t\tpadding: 20px 0;\n\t\tfont-weight: bold;\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n"],sourceRoot:""}]);const s=i},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{var t=[];function n(e){for(var n=-1,a=0;a{var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(a){var o=t[a];if(void 0!==o)return o.exports;var r=t[a]={id:a,exports:{}};return e[a](r,r.exports,n),r.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;var a={};return(()=>{n.r(a),n.d(a,{default:()=>y});const e={name:"NcAppSettingsSection",props:{name:{type:String,required:!0},id:{type:String,required:!0,validator:function(e){return/^[a-z0-9\-_]+$/.test(e)}}},computed:{htmlId:function(){return"settings-section_"+this.id}}};var t=n(3379),o=n.n(t),r=n(7795),i=n.n(r),s=n(569),l=n.n(s),c=n(3565),u=n.n(c),d=n(9216),m=n.n(d),p=n(4589),h=n.n(p),g=n(2482),f={};f.styleTagTransform=h(),f.setAttributes=u(),f.insert=l().bind(null,"head"),f.domAPI=i(),f.insertStyleElement=m(),o()(g.Z,f),g.Z&&g.Z.locals&&g.Z.locals;var v=function(e,t,n,a,o,r,i,s){var l="function"==typeof e?e.options:e;return t&&(l.render=t,l.staticRenderFns=[],l._compiled=!0),r&&(l._scopeId="data-v-"+r),{exports:e,options:l}}(e,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"app-settings-section",attrs:{id:e.htmlId}},[t("h3",{staticClass:"app-settings-section__name"},[e._v("\n\t\t"+e._s(e.name)+"\n\t")]),e._v(" "),e._t("default")],2)}),0,0,0,"006b9071");const y=v.exports})(),a})()))},64412:function(e,t,n){var a=n(25108);!function(t,n){e.exports=n()}(self,(()=>(()=>{var e={7664:(e,t,n)=>{"use strict";n.d(t,{default:()=>D});var a=n(3089),o=n(2297),r=n(1205),i=n(932),s=n(2734),l=n.n(s),c=n(1441),u=n.n(c);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function p(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);n0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var n=t.querySelector(v);if(n){var a=g(this.$refs.menu.querySelectorAll(v)).indexOf(n);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(v)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(v).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(v).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,n=(this.$slots.default||[]).filter((function(e){var t,n;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)})),a=n.every((function(e){var t,n,a,o;return"NcActionLink"===(null!==(t=null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o||null===(o=o.href)||void 0===o?void 0:o.startsWith(window.location.origin))})),o=n.filter(this.isValidSingleAction);if(this.forceMenu&&o.length>0&&this.inline>0&&(l().util.warn("Specifying forceMenu will ignore any inline actions rendering."),o=[]),0!==n.length){var r=function(n){var a,o,r,i,s,l,c,u,d,m,h,g,f=(null==n||null===(a=n.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==n||null===(o=n.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o?void 0:o.icon]}),v=null==n||null===(r=n.componentOptions)||void 0===r||null===(r=r.listeners)||void 0===r?void 0:r.click,y=null==n||null===(i=n.componentOptions)||void 0===i||null===(i=i.children)||void 0===i||null===(i=i[0])||void 0===i||null===(i=i.text)||void 0===i||null===(s=i.trim)||void 0===s?void 0:s.call(i),A=(null==n||null===(l=n.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||y,b=t.forceName?y:"",w=null==n||null===(c=n.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||w||(w=y),e("NcButton",{class:["action-item action-item--single",null==n||null===(u=n.data)||void 0===u?void 0:u.staticClass,null==n||null===(d=n.data)||void 0===d?void 0:d.class],attrs:{"aria-label":A,title:w},ref:null==n||null===(m=n.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(b?"secondary":"tertiary"),disabled:t.disabled||(null==n||null===(h=n.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==n||null===(g=n.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!v&&{click:function(e){v&&v(e)}})},[e("template",{slot:"icon"},[f]),b])},i=function(n){var o,r,i=(null===(o=t.$slots.icon)||void 0===o?void 0:o[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(r=t.$refs.menuButton)||void 0===r?void 0:r.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[i]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[n])])])};if(1===n.length&&1===o.length&&!this.forceMenu)return r(o[0]);if(o.length>0&&this.inline>0){var s=o.slice(0,this.inline),c=n.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(r)),[c.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[i(c)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[i(n)])}}};var A=n(3379),b=n.n(A),w=n(7795),k=n.n(w),C=n(569),S=n.n(C),P=n(3565),x=n.n(P),N=n(9216),T=n.n(N),E=n(4589),j=n.n(E),_=n(9546),O={};O.styleTagTransform=j(),O.setAttributes=x(),O.insert=S().bind(null,"head"),O.domAPI=k(),O.insertStyleElement=T(),b()(_.Z,O),_.Z&&_.Z.locals&&_.Z.locals;var L=n(5155),F={};F.styleTagTransform=j(),F.setAttributes=x(),F.insert=S().bind(null,"head"),F.domAPI=k(),F.insertStyleElement=T(),b()(L.Z,F),L.Z&&L.Z.locals&&L.Z.locals;var B=n(1900),z=n(5727),U=n.n(z),M=(0,B.Z)(y,void 0,void 0,!1,null,"55038265",null);"function"==typeof U()&&U()(M);const D=M.exports},3089:(e,t,n)=>{"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function i(e){for(var t=1;tN});const l={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,n,o,r=this,l=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(n=t.trim)||void 0===n?void 0:n.call(t),c=!!l,u=null===(o=this.$slots)||void 0===o?void 0:o.icon;l||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:l,ariaLabel:this.ariaLabel},this);var d=function(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=n.navigate,o=n.isActive,d=n.isExactActive;return e(r.to||!r.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!c,"button-vue--text-only":c&&!u,"button-vue--icon-and-text":u&&c},s(t,"button-vue--vue-".concat(r.realType),r.realType),s(t,"button-vue--wide",r.wide),s(t,"button-vue--".concat(r.flexAlignment),"center"!==r.flexAlignment),s(t,"button-vue--reverse",r.isReverseAligned),s(t,"active",o),s(t,"router-link-exact-active",d),t)],attrs:i({"aria-label":r.ariaLabel,"aria-pressed":r.pressed,disabled:r.disabled,type:r.href?null:r.nativeType,role:r.href?"button":null,href:!r.to&&r.href?r.href:null,target:!r.to&&r.href?"_self":null,rel:!r.to&&r.href?"nofollow noreferrer noopener":null,download:!r.to&&r.href&&r.download?r.download:null},r.$attrs),on:i(i({},r.$listeners),{},{click:function(e){"boolean"==typeof r.pressed&&r.$emit("update:pressed",!r.pressed),r.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":r.ariaHidden}},[r.$slots.icon]):null,c?e("span",{class:"button-vue__text"},[l]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=n(3379),u=n.n(c),d=n(7795),m=n.n(d),p=n(569),h=n.n(p),g=n(3565),f=n.n(g),v=n(9216),y=n.n(v),A=n(4589),b=n.n(A),w=n(7294),k={};k.styleTagTransform=b(),k.setAttributes=f(),k.insert=h().bind(null,"head"),k.domAPI=m(),k.insertStyleElement=y(),u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var C=n(1900),S=n(2102),P=n.n(S),x=(0,C.Z)(l,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(x);const N=x.exports},2297:(e,t,n)=>{"use strict";n.d(t,{default:()=>j});var o=n(9454),r=n(4505),i=n(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,n){return e[t]=n}}function d(e,t,n,o){var r=t&&t.prototype instanceof h?t:h,i=Object.create(r.prototype),s=new N(o||[]);return a(i,"_invoke",{value:C(e,n,s)}),i}function m(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function f(){}var v={};u(v,r,(function(){return this}));var y=Object.getPrototypeOf,A=y&&y(y(T([])));A&&A!==t&&n.call(A,r)&&(v=A);var b=f.prototype=h.prototype=Object.create(v);function w(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function o(a,r,i,l){var c=m(e[a],e,r);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,l)}),(function(e){o("throw",e,i,l)})):t.resolve(d).then((function(e){u.value=e,i(u)}),(function(e){return o("throw",e,i,l)}))}l(c.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function C(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=S(i,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=m(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function S(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),p;var o=m(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,p;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function T(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),p}},e}function c(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}const u={name:"NcPopover",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=l().mark((function e(){var n,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(n=t.$refs.popover)||void 0===n||null===(n=n.$refs.popperContent)||void 0===n?void 0:n.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,r.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){c(r,a,o,i,s,"next",e)}function s(e){c(r,a,o,i,s,"throw",e)}i(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=n(3379),p=n.n(m),h=n(7795),g=n.n(h),f=n(569),v=n.n(f),y=n(3565),A=n.n(y),b=n(9216),w=n.n(b),k=n(4589),C=n.n(k),S=n(1625),P={};P.styleTagTransform=C(),P.setAttributes=A(),P.insert=v().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=w(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var x=n(1900),N=n(2405),T=n.n(N),E=(0,x.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof T()&&T()(E);const j=E.exports},932:(e,t,n)=>{"use strict";n.d(t,{t:()=>r});var a=(0,n(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var n in e.translations)e.translations[n].pluralId?t[n]={msgid:n,msgid_plural:e.translations[n].pluralId,msgstr:e.translations[n].msgstr}:t[n]={msgid:n,msgstr:[e.translations[n]]};a.addTranslation(e.locale,{translations:{"":t}})}));var o=a.build(),r=(o.ngettext.bind(o),o.gettext.bind(o))},1205:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},1206:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},9546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=i},5155:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=i},8066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-4daa022a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.vue-crumb[data-v-4daa022a]{background-image:none;display:inline-flex;height:44px;padding:0}.vue-crumb[data-v-4daa022a]:last-child{max-width:210px;font-weight:bold}.vue-crumb:last-child .vue-crumb__separator[data-v-4daa022a]{display:none}.vue-crumb>a[data-v-4daa022a]:hover,.vue-crumb>a[data-v-4daa022a]:focus{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb--hidden[data-v-4daa022a]{display:none}.vue-crumb.vue-crumb--hovered>a[data-v-4daa022a]{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb__separator[data-v-4daa022a]{padding:0;color:var(--color-text-maxcontrast)}.vue-crumb>a[data-v-4daa022a]{overflow:hidden;color:var(--color-text-maxcontrast);padding:12px;min-width:44px;max-width:100%;border-radius:var(--border-radius-pill);align-items:center;display:inline-flex;justify-content:center}.vue-crumb>a>span[data-v-4daa022a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item{max-width:100%}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue{padding:0 4px 0 16px}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue__wrapper{flex-direction:row-reverse}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item.action-item--open .action-item__menutoggle{background-color:var(--color-background-dark);color:var(--color-main-text)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcBreadcrumb/NcBreadcrumb.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,4BACC,qBAAA,CACA,mBAAA,CACA,WCmBgB,CDlBhB,SAAA,CAEA,uCACC,eAAA,CACA,gBAAA,CAGA,6DACC,YAAA,CAKF,wEAEC,6CAAA,CACA,4BAAA,CAGD,oCACC,YAAA,CAGD,iDACC,6CAAA,CACA,4BAAA,CAGD,uCACC,SAAA,CACA,mCAAA,CAGD,8BACC,eAAA,CACA,mCAAA,CACA,YAAA,CACA,cCnBe,CDoBf,cAAA,CACA,uCAAA,CACA,kBAAA,CACA,mBAAA,CACA,sBAAA,CAEA,mCACC,eAAA,CACA,sBAAA,CACA,kBAAA,CAMF,wDAEC,cAAA,CAEA,oEACC,oBAAA,CAEA,6EACC,0BAAA,CAKF,mGACC,6CAAA,CACA,4BAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.vue-crumb {\n\tbackground-image: none;\n\tdisplay: inline-flex;\n\theight: $clickable-area;\n\tpadding: 0;\n\n\t&:last-child {\n\t\tmax-width: 210px;\n\t\tfont-weight: bold;\n\n\t\t// Don't show breadcrumb separator for last crumb\n\t\t.vue-crumb__separator {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t// Hover and focus effect for crumbs\n\t& > a:hover,\n\t& > a:focus {\n\t\tbackground-color: var(--color-background-dark);\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&--hidden {\n\t\tdisplay: none;\n\t}\n\n\t&#{&}--hovered > a {\n\t\tbackground-color: var(--color-background-dark);\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&__separator {\n\t\tpadding: 0;\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t> a {\n\t\toverflow: hidden;\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tpadding: 12px;\n\t\tmin-width: $clickable-area;\n\t\tmax-width: 100%;\n\t\tborder-radius: var(--border-radius-pill);\n\t\talign-items: center;\n\t\tdisplay: inline-flex;\n\t\tjustify-content: center;\n\n\t\t> span {\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t\twhite-space: nowrap;\n\t\t}\n\t}\n\n\t// Adjust action item appearance for crumbs with actions\n\t// to match other crumbs\n\t&:not(.dropdown) :deep(.action-item) {\n\t\t// Adjustments necessary to correctly shrink on small screens\n\t\tmax-width: 100%;\n\n\t\t.button-vue {\n\t\t\tpadding: 0 4px 0 16px;\n\n\t\t\t&__wrapper {\n\t\t\t\tflex-direction: row-reverse;\n\t\t\t}\n\t\t}\n\n\t\t// Adjust the background of the last crumb when the action is open\n\t\t&.action-item--open .action-item__menutoggle {\n\t\t\tbackground-color: var(--color-background-dark);\n\t\t\tcolor: var(--color-main-text);\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},7294:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},1625:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},6591:()=>{},2102:()=>{},2405:()=>{},1900:(e,t,n)=>{"use strict";function a(e,t,n,a,o,r,i,s){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),a&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),i?(l=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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=l):o&&(l=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,{Z:()=>a})},7931:e=>{"use strict";e.exports=n(23955)},9454:e=>{"use strict";e.exports=n(73045)},4505:e=>{"use strict";e.exports=n(15303)},2734:e=>{"use strict";e.exports=n(20144)},1441:e=>{"use strict";e.exports=n(89115)}},t={};function o(n){var a=t[n];if(void 0!==a)return a.exports;var r=t[n]={id:n,exports:{}};return e[n](r,r.exports,o),r.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var r={};return(()=>{"use strict";o.r(r),o.d(r,{default:()=>j});var e=o(7664),t=o(1205);const a=n(11585);var i=o.n(a);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function c(e){for(var t=1;t(()=>{var e={8034:(e,t,n)=>{"use strict";n.d(t,{default:()=>k});const a={name:"NcActionButton",mixins:[n(9156).Z],props:{disabled:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null}},computed:{isFocusable:function(){return!this.disabled}}};var o=n(3379),r=n.n(o),i=n(7795),s=n.n(i),l=n(569),c=n.n(l),u=n(3565),d=n.n(u),m=n(9216),p=n.n(m),h=n(4589),g=n.n(h),f=n(9776),v={};v.styleTagTransform=g(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=s(),v.insertStyleElement=p(),r()(f.Z,v),f.Z&&f.Z.locals&&f.Z.locals;var y=n(1900),A=n(4216),b=n.n(A),w=(0,y.Z)(a,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"action",class:{"action--disabled":e.disabled},attrs:{role:"presentation"}},[t("button",{staticClass:"action-button",class:{focusable:e.isFocusable},attrs:{"aria-label":e.ariaLabel,title:e.title,role:"menuitem",type:"button"},on:{click:e.onClick}},[e._t("icon",(function(){return[t("span",{staticClass:"action-button__icon",class:[e.isIconUrl?"action-button__icon--url":e.icon],style:{backgroundImage:e.isIconUrl?"url(".concat(e.icon,")"):null},attrs:{"aria-hidden":e.ariaHidden}})]})),e._v(" "),e.name?t("p",[t("strong",{staticClass:"action-button__name"},[e._v("\n\t\t\t\t"+e._s(e.name)+"\n\t\t\t")]),e._v(" "),t("br"),e._v(" "),t("span",{staticClass:"action-button__longtext",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t("p",{staticClass:"action-button__longtext",domProps:{textContent:e._s(e.text)}}):t("span",{staticClass:"action-button__text"},[e._v(e._s(e.text))]),e._v(" "),e._e()],2)])}),[],!1,null,"38d8193f",null);"function"==typeof b()&&b()(w);const k=w.exports},5166:(e,t,n)=>{"use strict";n.d(t,{default:()=>k});const a={name:"NcActionLink",mixins:[n(9156).Z],props:{href:{type:String,default:"#",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith("#")||e.startsWith("/")}}},download:{type:String,default:null},target:{type:String,default:"_self",validator:function(e){return e&&(!e.startsWith("_")||["_blank","_self","_parent","_top"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var o=n(3379),r=n.n(o),i=n(7795),s=n.n(i),l=n(569),c=n.n(l),u=n(3565),d=n.n(u),m=n(9216),p=n.n(m),h=n(4589),g=n.n(h),f=n(4402),v={};v.styleTagTransform=g(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=s(),v.insertStyleElement=p(),r()(f.Z,v),f.Z&&f.Z.locals&&f.Z.locals;var y=n(1900),A=n(9158),b=n.n(A),w=(0,y.Z)(a,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"action"},[t("a",{staticClass:"action-link focusable",attrs:{download:e.download,href:e.href,"aria-label":e.ariaLabel,target:e.target,title:e.title,rel:"nofollow noreferrer noopener",role:"menuitem"},on:{click:e.onClick}},[e._t("icon",(function(){return[t("span",{staticClass:"action-link__icon",class:[e.isIconUrl?"action-link__icon--url":e.icon],style:{backgroundImage:e.isIconUrl?"url(".concat(e.icon,")"):null},attrs:{"aria-hidden":e.ariaHidden}})]})),e._v(" "),e.name?t("p",[t("strong",{staticClass:"action-link__name"},[e._v("\n\t\t\t\t"+e._s(e.name)+"\n\t\t\t")]),e._v(" "),t("br"),e._v(" "),t("span",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t("p",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}}):t("span",{staticClass:"action-link__text"},[e._v(e._s(e.text))]),e._v(" "),e._e()],2)])}),[],!1,null,"df184e4e",null);"function"==typeof b()&&b()(w);const k=w.exports},968:(e,t,n)=>{"use strict";n.d(t,{default:()=>y});const a={name:"NcActionRouter",mixins:[n(9156).Z],props:{to:{type:[String,Object],default:"",required:!0},exact:{type:Boolean,default:!1}}};var o=n(3379),r=n.n(o),i=n(7795),s=n.n(i),l=n(569),c=n.n(l),u=n(3565),d=n.n(u),m=n(9216),p=n.n(m),h=n(4589),g=n.n(h),f=n(8541),v={};v.styleTagTransform=g(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=s(),v.insertStyleElement=p(),r()(f.Z,v),f.Z&&f.Z.locals&&f.Z.locals;const y=(0,n(1900).Z)(a,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"action"},[t("router-link",{staticClass:"action-router focusable",attrs:{to:e.to,"aria-label":e.ariaLabel,exact:e.exact,title:e.title,rel:"nofollow noreferrer noopener"},nativeOn:{click:function(t){return e.onClick.apply(null,arguments)}}},[e._t("icon",(function(){return[t("span",{staticClass:"action-router__icon",class:[e.isIconUrl?"action-router__icon--url":e.icon],style:{backgroundImage:e.isIconUrl?"url(".concat(e.icon,")"):null}})]})),e._v(" "),e.name?t("p",[t("strong",{staticClass:"action-router__name"},[e._v("\n\t\t\t\t"+e._s(e.name)+"\n\t\t\t")]),e._v(" "),t("br"),e._v(" "),t("span",{staticClass:"action-router__longtext",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t("p",{staticClass:"action-router__longtext",domProps:{textContent:e._s(e.text)}}):t("span",{staticClass:"action-router__text"},[e._v(e._s(e.text))]),e._v(" "),e._e()],2)],1)}),[],!1,null,"74ff8099",null).exports},7664:(e,t,n)=>{"use strict";n.d(t,{default:()=>D});var a=n(3089),o=n(2297),r=n(1205),i=n(932),s=n(2734),l=n.n(s),c=n(1441),u=n.n(c);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function p(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);n0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var n=t.querySelector(v);if(n){var a=g(this.$refs.menu.querySelectorAll(v)).indexOf(n);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(v)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(v).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(v).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,n=(this.$slots.default||[]).filter((function(e){var t,n;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)})),a=n.every((function(e){var t,n,a,o;return"NcActionLink"===(null!==(t=null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.Ctor)||void 0===n||null===(n=n.extendOptions)||void 0===n?void 0:n.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o||null===(o=o.href)||void 0===o?void 0:o.startsWith(window.location.origin))})),o=n.filter(this.isValidSingleAction);if(this.forceMenu&&o.length>0&&this.inline>0&&(l().util.warn("Specifying forceMenu will ignore any inline actions rendering."),o=[]),0!==n.length){var r=function(n){var a,o,r,i,s,l,c,u,d,m,h,g,f=(null==n||null===(a=n.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==n||null===(o=n.componentOptions)||void 0===o||null===(o=o.propsData)||void 0===o?void 0:o.icon]}),v=null==n||null===(r=n.componentOptions)||void 0===r||null===(r=r.listeners)||void 0===r?void 0:r.click,y=null==n||null===(i=n.componentOptions)||void 0===i||null===(i=i.children)||void 0===i||null===(i=i[0])||void 0===i||null===(i=i.text)||void 0===i||null===(s=i.trim)||void 0===s?void 0:s.call(i),A=(null==n||null===(l=n.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||y,b=t.forceName?y:"",w=null==n||null===(c=n.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||w||(w=y),e("NcButton",{class:["action-item action-item--single",null==n||null===(u=n.data)||void 0===u?void 0:u.staticClass,null==n||null===(d=n.data)||void 0===d?void 0:d.class],attrs:{"aria-label":A,title:w},ref:null==n||null===(m=n.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(b?"secondary":"tertiary"),disabled:t.disabled||(null==n||null===(h=n.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==n||null===(g=n.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!v&&{click:function(e){v&&v(e)}})},[e("template",{slot:"icon"},[f]),b])},i=function(n){var o,r,i=(null===(o=t.$slots.icon)||void 0===o?void 0:o[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(r=t.$refs.menuButton)||void 0===r?void 0:r.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[i]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[n])])])};if(1===n.length&&1===o.length&&!this.forceMenu)return r(o[0]);if(o.length>0&&this.inline>0){var s=o.slice(0,this.inline),c=n.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(r)),[c.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[i(c)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[i(n)])}}};var A=n(3379),b=n.n(A),w=n(7795),k=n.n(w),C=n(569),S=n.n(C),P=n(3565),x=n.n(P),N=n(9216),T=n.n(N),E=n(4589),j=n.n(E),_=n(9546),O={};O.styleTagTransform=j(),O.setAttributes=x(),O.insert=S().bind(null,"head"),O.domAPI=k(),O.insertStyleElement=T(),b()(_.Z,O),_.Z&&_.Z.locals&&_.Z.locals;var L=n(5155),F={};F.styleTagTransform=j(),F.setAttributes=x(),F.insert=S().bind(null,"head"),F.domAPI=k(),F.insertStyleElement=T(),b()(L.Z,F),L.Z&&L.Z.locals&&L.Z.locals;var B=n(1900),z=n(5727),U=n.n(z),M=(0,B.Z)(y,void 0,void 0,!1,null,"55038265",null);"function"==typeof U()&&U()(M);const D=M.exports},3186:(e,t,a)=>{"use strict";a.d(t,{default:()=>_});var o=a(7664),r=a(1205);const i=n(11585);var s=a.n(i);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function u(e){for(var t=1;t{"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function i(e){for(var t=1;tN});const l={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,n,o,r=this,l=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(n=t.trim)||void 0===n?void 0:n.call(t),c=!!l,u=null===(o=this.$slots)||void 0===o?void 0:o.icon;l||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:l,ariaLabel:this.ariaLabel},this);var d=function(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=n.navigate,o=n.isActive,d=n.isExactActive;return e(r.to||!r.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!c,"button-vue--text-only":c&&!u,"button-vue--icon-and-text":u&&c},s(t,"button-vue--vue-".concat(r.realType),r.realType),s(t,"button-vue--wide",r.wide),s(t,"button-vue--".concat(r.flexAlignment),"center"!==r.flexAlignment),s(t,"button-vue--reverse",r.isReverseAligned),s(t,"active",o),s(t,"router-link-exact-active",d),t)],attrs:i({"aria-label":r.ariaLabel,"aria-pressed":r.pressed,disabled:r.disabled,type:r.href?null:r.nativeType,role:r.href?"button":null,href:!r.to&&r.href?r.href:null,target:!r.to&&r.href?"_self":null,rel:!r.to&&r.href?"nofollow noreferrer noopener":null,download:!r.to&&r.href&&r.download?r.download:null},r.$attrs),on:i(i({},r.$listeners),{},{click:function(e){"boolean"==typeof r.pressed&&r.$emit("update:pressed",!r.pressed),r.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":r.ariaHidden}},[r.$slots.icon]):null,c?e("span",{class:"button-vue__text"},[l]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=n(3379),u=n.n(c),d=n(7795),m=n.n(d),p=n(569),h=n.n(p),g=n(3565),f=n.n(g),v=n(9216),y=n.n(v),A=n(4589),b=n.n(A),w=n(7294),k={};k.styleTagTransform=b(),k.setAttributes=f(),k.insert=h().bind(null,"head"),k.domAPI=m(),k.insertStyleElement=y(),u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var C=n(1900),S=n(2102),P=n.n(S),x=(0,C.Z)(l,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(x);const N=x.exports},2297:(e,t,n)=>{"use strict";n.d(t,{default:()=>j});var o=n(9454),r=n(4505),i=n(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,n){return e[t]=n}}function d(e,t,n,o){var r=t&&t.prototype instanceof h?t:h,i=Object.create(r.prototype),s=new N(o||[]);return a(i,"_invoke",{value:C(e,n,s)}),i}function m(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function f(){}var v={};u(v,r,(function(){return this}));var y=Object.getPrototypeOf,A=y&&y(y(T([])));A&&A!==t&&n.call(A,r)&&(v=A);var b=f.prototype=h.prototype=Object.create(v);function w(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function o(a,r,i,l){var c=m(e[a],e,r);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,l)}),(function(e){o("throw",e,i,l)})):t.resolve(d).then((function(e){u.value=e,i(u)}),(function(e){return o("throw",e,i,l)}))}l(c.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function C(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=S(i,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=m(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function S(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),p;var o=m(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,p;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function T(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),p}},e}function c(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}const u={name:"NcPopover",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=l().mark((function e(){var n,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(n=t.$refs.popover)||void 0===n||null===(n=n.$refs.popperContent)||void 0===n?void 0:n.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,r.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){c(r,a,o,i,s,"next",e)}function s(e){c(r,a,o,i,s,"throw",e)}i(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=n(3379),p=n.n(m),h=n(7795),g=n.n(h),f=n(569),v=n.n(f),y=n(3565),A=n.n(y),b=n(9216),w=n.n(b),k=n(4589),C=n.n(k),S=n(1625),P={};P.styleTagTransform=C(),P.setAttributes=A(),P.insert=v().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=w(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var x=n(1900),N=n(2405),T=n.n(N),E=(0,x.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof T()&&T()(E);const j=E.exports},932:(e,t,n)=>{"use strict";n.d(t,{t:()=>r});var a=(0,n(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var n in e.translations)e.translations[n].pluralId?t[n]={msgid:n,msgid_plural:e.translations[n].pluralId,msgstr:e.translations[n].msgstr}:t[n]={msgid:n,msgstr:[e.translations[n]]};a.addTranslation(e.locale,{translations:{"":t}})}));var o=a.build(),r=(o.ngettext.bind(o),o.gettext.bind(o))},723:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(2734),o=n.n(a);const r={before:function(){this.$slots.default&&""!==this.text.trim()||(o().util.warn("".concat(this.$options.name," cannot be empty and requires a meaningful text content"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():""}}}},9156:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(723),o=n(6021);const r={mixins:[a.Z],props:{icon:{type:String,default:""},name:{type:String,default:""},title:{type:String,default:""},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:""},ariaHidden:{type:Boolean,default:null}},emits:["click"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit("click",e),this.closeAfterClick){var t=(0,o.Z)(this,"NcActions");t&&t.closeMenu&&t.closeMenu(!1)}}}}},1205:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},6021:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){for(var n=e.$parent;n;){if(n.$options.name===t)return n;n=n.$parent}}},1206:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},9776:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-38d8193f]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-38d8193f]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action--disabled[data-v-38d8193f]{pointer-events:none;opacity:.5}.action--disabled[data-v-38d8193f]:hover,.action--disabled[data-v-38d8193f]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-38d8193f]{opacity:1 !important}.action-button[data-v-38d8193f]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-button>span[data-v-38d8193f]{cursor:pointer;white-space:nowrap}.action-button__icon[data-v-38d8193f]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-button[data-v-38d8193f] .material-design-icon{width:44px;height:44px;opacity:1}.action-button[data-v-38d8193f] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-button p[data-v-38d8193f]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-button__longtext[data-v-38d8193f]{cursor:pointer;white-space:pre-wrap}.action-button__name[data-v-38d8193f]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/assets/action.scss","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAMF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA,CAOF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of `\\n`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},4402:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/assets/action.scss","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of `\\n`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},8541:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-74ff8099]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-74ff8099]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-router[data-v-74ff8099]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-router>span[data-v-74ff8099]{cursor:pointer;white-space:nowrap}.action-router__icon[data-v-74ff8099]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-router[data-v-74ff8099] .material-design-icon{width:44px;height:44px;opacity:1}.action-router[data-v-74ff8099] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-router p[data-v-74ff8099]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-router__longtext[data-v-74ff8099]{cursor:pointer;white-space:pre-wrap}.action-router__name[data-v-74ff8099]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}.action--disabled[data-v-74ff8099]{pointer-events:none;opacity:.5}.action--disabled[data-v-74ff8099]:hover,.action--disabled[data-v-74ff8099]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-74ff8099]{opacity:1 !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/assets/action.scss","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA,CA3FF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of `\\n`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},9546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=i},5155:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=i},8066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-4daa022a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.vue-crumb[data-v-4daa022a]{background-image:none;display:inline-flex;height:44px;padding:0}.vue-crumb[data-v-4daa022a]:last-child{max-width:210px;font-weight:bold}.vue-crumb:last-child .vue-crumb__separator[data-v-4daa022a]{display:none}.vue-crumb>a[data-v-4daa022a]:hover,.vue-crumb>a[data-v-4daa022a]:focus{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb--hidden[data-v-4daa022a]{display:none}.vue-crumb.vue-crumb--hovered>a[data-v-4daa022a]{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb__separator[data-v-4daa022a]{padding:0;color:var(--color-text-maxcontrast)}.vue-crumb>a[data-v-4daa022a]{overflow:hidden;color:var(--color-text-maxcontrast);padding:12px;min-width:44px;max-width:100%;border-radius:var(--border-radius-pill);align-items:center;display:inline-flex;justify-content:center}.vue-crumb>a>span[data-v-4daa022a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item{max-width:100%}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue{padding:0 4px 0 16px}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue__wrapper{flex-direction:row-reverse}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item.action-item--open .action-item__menutoggle{background-color:var(--color-background-dark);color:var(--color-main-text)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcBreadcrumb/NcBreadcrumb.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,4BACC,qBAAA,CACA,mBAAA,CACA,WCmBgB,CDlBhB,SAAA,CAEA,uCACC,eAAA,CACA,gBAAA,CAGA,6DACC,YAAA,CAKF,wEAEC,6CAAA,CACA,4BAAA,CAGD,oCACC,YAAA,CAGD,iDACC,6CAAA,CACA,4BAAA,CAGD,uCACC,SAAA,CACA,mCAAA,CAGD,8BACC,eAAA,CACA,mCAAA,CACA,YAAA,CACA,cCnBe,CDoBf,cAAA,CACA,uCAAA,CACA,kBAAA,CACA,mBAAA,CACA,sBAAA,CAEA,mCACC,eAAA,CACA,sBAAA,CACA,kBAAA,CAMF,wDAEC,cAAA,CAEA,oEACC,oBAAA,CAEA,6EACC,0BAAA,CAKF,mGACC,6CAAA,CACA,4BAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.vue-crumb {\n\tbackground-image: none;\n\tdisplay: inline-flex;\n\theight: $clickable-area;\n\tpadding: 0;\n\n\t&:last-child {\n\t\tmax-width: 210px;\n\t\tfont-weight: bold;\n\n\t\t// Don't show breadcrumb separator for last crumb\n\t\t.vue-crumb__separator {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t// Hover and focus effect for crumbs\n\t& > a:hover,\n\t& > a:focus {\n\t\tbackground-color: var(--color-background-dark);\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&--hidden {\n\t\tdisplay: none;\n\t}\n\n\t&#{&}--hovered > a {\n\t\tbackground-color: var(--color-background-dark);\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&__separator {\n\t\tpadding: 0;\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t> a {\n\t\toverflow: hidden;\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tpadding: 12px;\n\t\tmin-width: $clickable-area;\n\t\tmax-width: 100%;\n\t\tborder-radius: var(--border-radius-pill);\n\t\talign-items: center;\n\t\tdisplay: inline-flex;\n\t\tjustify-content: center;\n\n\t\t> span {\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t\twhite-space: nowrap;\n\t\t}\n\t}\n\n\t// Adjust action item appearance for crumbs with actions\n\t// to match other crumbs\n\t&:not(.dropdown) :deep(.action-item) {\n\t\t// Adjustments necessary to correctly shrink on small screens\n\t\tmax-width: 100%;\n\n\t\t.button-vue {\n\t\t\tpadding: 0 4px 0 16px;\n\n\t\t\t&__wrapper {\n\t\t\t\tflex-direction: row-reverse;\n\t\t\t}\n\t\t}\n\n\t\t// Adjust the background of the last crumb when the action is open\n\t\t&.action-item--open .action-item__menutoggle {\n\t\t\tbackground-color: var(--color-background-dark);\n\t\t\tcolor: var(--color-main-text);\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},7114:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-09b1aba3]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.breadcrumb[data-v-09b1aba3]{width:100%;flex-grow:1;display:inline-flex;align-items:center}.breadcrumb--collapsed[data-v-09b1aba3] .vue-crumb:last-child{min-width:100px;flex-shrink:1}.breadcrumb nav[data-v-09b1aba3]{flex-shrink:1;max-width:100%;min-width:228px}.breadcrumb .breadcrumb__crumbs[data-v-09b1aba3]{max-width:100%}.breadcrumb .breadcrumb__crumbs[data-v-09b1aba3],.breadcrumb .breadcrumb__actions[data-v-09b1aba3]{display:inline-flex}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcBreadcrumbs/NcBreadcrumbs.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,UAAA,CACA,WAAA,CACA,mBAAA,CACA,kBAAA,CAEA,8DACC,eAAA,CACA,aAAA,CAGD,iCACC,aAAA,CACA,cAAA,CAKA,eAAA,CAGD,iDACC,cAAA,CAGD,mGAEC,mBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.breadcrumb {\n\twidth: 100%;\n\tflex-grow: 1;\n\tdisplay: inline-flex;\n\talign-items: center;\n\n\t&--collapsed :deep(.vue-crumb:last-child) {\n\t\tmin-width: 100px;\n\t\tflex-shrink: 1;\n\t}\n\n\tnav {\n\t\tflex-shrink: 1;\n\t\tmax-width: 100%;\n\t\t/**\n\t\t * This value is given by the min-width of the last crumb (100px) plus\n\t\t * two times the width of a crumb with an icon (first crumb and hidden crumbs actions).\n\t\t */\n\t\tmin-width: 228px;\n\t}\n\n\t& #{&}__crumbs {\n\t\tmax-width: 100%;\n\t}\n\n\t& #{&}__crumbs,\n\t& #{&}__actions {\n\t\tdisplay: inline-flex;\n\t}\n}\n"],sourceRoot:""}]);const s=i},7294:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},1625:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},4216:()=>{},9158:()=>{},5727:()=>{},6591:()=>{},1753:()=>{},2102:()=>{},2405:()=>{},1900:(e,t,n)=>{"use strict";function a(e,t,n,a,o,r,i,s){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),a&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),i?(l=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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=l):o&&(l=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,{Z:()=>a})},7931:e=>{"use strict";e.exports=n(23955)},9454:e=>{"use strict";e.exports=n(73045)},4505:e=>{"use strict";e.exports=n(15303)},2734:e=>{"use strict";e.exports=n(20144)},1441:e=>{"use strict";e.exports=n(89115)}},t={};function o(n){var a=t[n];if(void 0!==a)return a.exports;var r=t[n]={id:n,exports:{}};return e[n](r,r.exports,o),r.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var r={};return(()=>{"use strict";o.r(r),o.d(r,{default:()=>$});var e=o(7664),t=o(8034),a=o(968),i=o(5166),s=o(3186),l=o(2734),c=o.n(l);const u=function(e,t,n){if(void 0!==e)for(var a=e.length-1;a>=0;a--){var o=e[a],r=!o.componentOptions&&o.tag&&-1===t.indexOf(o.tag),i=!!o.componentOptions&&"string"==typeof o.componentOptions.tag,s=i&&-1===t.indexOf(o.componentOptions.tag);(r||!i||s)&&((r||s)&&c().util.warn("".concat(r?o.tag:o.componentOptions.tag," is not allowed inside the ").concat(n.$options.name," component"),n),e.splice(a,1))}},d=n(57888),m=n(34829);var p=o.n(m);const h=n(20296);var g=o.n(h);const f=n(74139);function v(e){return v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function A(e){for(var t=1;t=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function k(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var C="vue-crumb";const S={name:"NcBreadcrumbs",components:{NcActions:e.default,NcActionButton:t.default,NcActionRouter:a.default,NcActionLink:i.default,NcBreadcrumb:s.default,IconFolder:p()},props:{rootIcon:{type:String,default:"icon-home"}},emits:["dropped"],data:function(){return{hiddenIndices:[],menuBreadcrumbProps:{name:"",forceMenu:!0,disableDrop:!0,open:!1},breadcrumbsRefs:{}}},beforeMount:function(){u(this.$slots.default,["NcBreadcrumb"],this)},beforeUpdate:function(){u(this.$slots.default,["NcBreadcrumb"],this)},created:function(){var e=this;window.addEventListener("resize",g()((function(){e.handleWindowResize()}),100)),(0,d.subscribe)("navigation-toggled",this.delayedResize)},mounted:function(){this.handleWindowResize()},updated:function(){var e=this;this.delayedResize(),this.$nextTick((function(){e.hideCrumbs()}))},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize),(0,d.unsubscribe)("navigation-toggled",this.delayedResize)},methods:{closeActions:function(e){this.$refs.actionsBreadcrumb.$el.contains(e.relatedTarget)||(this.menuBreadcrumbProps.open=!1)},delayedResize:function(){var e,t=this;return(e=w().mark((function e(){return w().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:t.handleWindowResize();case 3:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){k(r,a,o,i,s,"next",e)}function s(e){k(r,a,o,i,s,"throw",e)}i(void 0)}))})()},handleWindowResize:function(){if(this.$refs.container){var e=Object.values(this.breadcrumbsRefs),t=e.length,n=[],a=this.$refs.container.offsetWidth,o=this.getTotalWidth(e);this.$refs.breadcrumb__actions&&(o+=this.$refs.breadcrumb__actions.offsetWidth);var r=o-a;r+=r>0?64:0;for(var i=0,s=Math.floor(t/2);r>0&&i(()=>{var e={2105:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.icon-vue {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: 44px;\n\tmin-height: 44px;\n\topacity: 1;\n\n\t&:deep(svg) {\n\t\tfill: currentColor;\n\t\tmax-width: 20px;\n\t\tmax-height: 20px;\n\t}\n}\n"],sourceRoot:""}]);const s=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},1287:()=>{},1900:(e,t,n)=>{"use strict";function a(e,t,n,a,o,r,i,s){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),a&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),i?(l=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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=l):o&&(l=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,{Z:()=>a})}},t={};function a(n){var o=t[n];if(void 0!==o)return o.exports;var r=t[n]={id:n,exports:{}};return e[n](r,r.exports,a),r.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nc=void 0;var o={};return(()=>{"use strict";a.r(o),a.d(o,{default:()=>N});const e=n(62466);function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(e)}function r(){r=function(){return e};var e={},n=Object.prototype,a=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",l=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function u(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,n){return e[t]=n}}function d(e,t,n,a){var r=t&&t.prototype instanceof h?t:h,i=Object.create(r.prototype),s=new N(a||[]);return o(i,"_invoke",{value:C(e,n,s)}),i}function m(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function f(){}var v={};u(v,s,(function(){return this}));var y=Object.getPrototypeOf,A=y&&y(y(T([])));A&&A!==n&&a.call(A,s)&&(v=A);var b=f.prototype=h.prototype=Object.create(v);function w(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,n){function r(o,i,s,l){var c=m(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==t(d)&&a.call(d,"__await")?n.resolve(d.__await).then((function(e){r("next",e,s,l)}),(function(e){r("throw",e,s,l)})):n.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return r("throw",e,s,l)}))}l(c.arg)}var i;o(this,"_invoke",{value:function(e,t){function a(){return new n((function(n,a){r(e,t,n,a)}))}return i=i?i.then(a,a):a()}})}function C(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=S(i,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=m(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function S(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),p;var o=m(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,p;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function T(e){if(e){var t=e[s];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return n("end");if(r.tryLoc<=this.prev){var s=a.call(r,"catchLoc"),l=a.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&a.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),p}},e}function i(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function s(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function s(e){i(r,a,o,s,l,"next",e)}function l(e){i(r,a,o,s,l,"throw",e)}s(void 0)}))}}const l={name:"NcIconSvgWrapper",props:{svg:{type:String,default:""},name:{type:String,default:""}},data:function(){return{cleanSvg:""}},beforeMount:function(){var e=this;return s(r().mark((function t(){return r().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.sanitizeSVG();case 2:case"end":return t.stop()}}),t)})))()},methods:{sanitizeSVG:function(){var t=this;return s(r().mark((function n(){return r().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(t.svg){n.next=2;break}return n.abrupt("return");case 2:return n.next=4,(0,e.sanitizeSVG)(t.svg);case 4:t.cleanSvg=n.sent;case 5:case"end":return n.stop()}}),n)})))()}}};var c=a(3379),u=a.n(c),d=a(7795),m=a.n(d),p=a(569),h=a.n(p),g=a(3565),f=a.n(g),v=a(9216),y=a.n(v),A=a(4589),b=a.n(A),w=a(2105),k={};k.styleTagTransform=b(),k.setAttributes=f(),k.insert=h().bind(null,"head"),k.domAPI=m(),k.insertStyleElement=y(),u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var C=a(1900),S=a(1287),P=a.n(S),x=(0,C.Z)(l,(function(){var e=this;return(0,e._self._c)("span",{staticClass:"icon-vue",attrs:{role:"img","aria-hidden":!e.name,"aria-label":e.name},domProps:{innerHTML:e._s(e.cleanSvg)}})}),[],!1,null,"5937dacc",null);"function"==typeof P()&&P()(x);const N=x.exports})(),o})(),e.exports=a()},36029:function(e,t,n){var a,o=n(25108);self,a=()=>(()=>{var e={3089:(e,t,n)=>{"use strict";function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function i(e){for(var t=1;tN});const l={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,n,a,r=this,l=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(n=t.trim)||void 0===n?void 0:n.call(t),c=!!l,u=null===(a=this.$slots)||void 0===a?void 0:a.icon;l||this.ariaLabel||o.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:l,ariaLabel:this.ariaLabel},this);var d=function(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=n.navigate,o=n.isActive,d=n.isExactActive;return e(r.to||!r.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!c,"button-vue--text-only":c&&!u,"button-vue--icon-and-text":u&&c},s(t,"button-vue--vue-".concat(r.realType),r.realType),s(t,"button-vue--wide",r.wide),s(t,"button-vue--".concat(r.flexAlignment),"center"!==r.flexAlignment),s(t,"button-vue--reverse",r.isReverseAligned),s(t,"active",o),s(t,"router-link-exact-active",d),t)],attrs:i({"aria-label":r.ariaLabel,"aria-pressed":r.pressed,disabled:r.disabled,type:r.href?null:r.nativeType,role:r.href?"button":null,href:!r.to&&r.href?r.href:null,target:!r.to&&r.href?"_self":null,rel:!r.to&&r.href?"nofollow noreferrer noopener":null,download:!r.to&&r.href&&r.download?r.download:null},r.$attrs),on:i(i({},r.$listeners),{},{click:function(e){"boolean"==typeof r.pressed&&r.$emit("update:pressed",!r.pressed),r.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":r.ariaHidden}},[r.$slots.icon]):null,c?e("span",{class:"button-vue__text"},[l]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=n(3379),u=n.n(c),d=n(7795),m=n.n(d),p=n(569),h=n.n(p),g=n(3565),f=n.n(g),v=n(9216),y=n.n(v),A=n(4589),b=n.n(A),w=n(7294),k={};k.styleTagTransform=b(),k.setAttributes=f(),k.insert=h().bind(null,"head"),k.domAPI=m(),k.insertStyleElement=y(),u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var C=n(1900),S=n(2102),P=n.n(S),x=(0,C.Z)(l,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(x);const N=x.exports},7294:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=i},4671:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7537),o=n.n(a),r=n(3645),i=n.n(r)()(o());i.push([e.id,".material-design-icon[data-v-36cd7849]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.input-field[data-v-36cd7849]{position:relative;width:100%;border-radius:var(--border-radius-large);margin-block-start:6px}.input-field__main-wrapper[data-v-36cd7849]{height:38px;position:relative}.input-field--disabled[data-v-36cd7849]{opacity:.7;filter:saturate(0.7)}.input-field__input[data-v-36cd7849]{margin:0;padding-inline:10px 6px;height:38px !important;width:100%;font-size:var(--default-font-size);text-overflow:ellipsis;background-color:var(--color-main-background);color:var(--color-main-text);border:2px solid var(--color-border-maxcontrast);border-radius:var(--border-radius-large);cursor:pointer;-webkit-appearance:textfield !important;-moz-appearance:textfield !important}.input-field__input--label-outside[data-v-36cd7849]{padding-block:0}.input-field__input[data-v-36cd7849]:active:not([disabled]),.input-field__input[data-v-36cd7849]:hover:not([disabled]),.input-field__input[data-v-36cd7849]:focus:not([disabled]){border-color:var(--color-primary-element)}.input-field__input[data-v-36cd7849]:not(:focus,.input-field__input--label-outside)::placeholder{opacity:0}.input-field__input[data-v-36cd7849]:focus{cursor:text}.input-field__input[data-v-36cd7849]:disabled{cursor:default}.input-field__input[data-v-36cd7849]:focus-visible{box-shadow:unset !important}.input-field__input--leading-icon[data-v-36cd7849]{padding-inline-start:32px}.input-field__input--trailing-icon[data-v-36cd7849]{padding-inline-end:32px}.input-field__input--success[data-v-36cd7849]{border-color:var(--color-success) !important}.input-field__input--success[data-v-36cd7849]:focus-visible{box-shadow:#f8fafc 0px 0px 0px 2px,var(--color-primary-element) 0px 0px 0px 4px,rgba(0,0,0,.05) 0px 1px 2px 0px}.input-field__input--success:focus+.input-field__label[data-v-36cd7849],.input-field__input--success:hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-success-text)}.input-field__input--error[data-v-36cd7849]{border-color:var(--color-error) !important}.input-field__input--error[data-v-36cd7849]:focus-visible{box-shadow:#f8fafc 0px 0px 0px 2px,var(--color-primary-element) 0px 0px 0px 4px,rgba(0,0,0,.05) 0px 1px 2px 0px}.input-field__input--error:focus+.input-field__label[data-v-36cd7849],.input-field__input--error:hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-error-text)}.input-field__input:not(.input-field__input--success,.input-field__input--error):focus+.input-field__label[data-v-36cd7849],.input-field__input:not(.input-field__input--success,.input-field__input--error):hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-primary-element)}.input-field__label[data-v-36cd7849]{position:absolute;margin-inline:12px 0;height:17px;max-width:fit-content;line-height:1;inset-block-start:12px;inset-inline:0;color:var(--color-text-maxcontrast);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;pointer-events:none;transition:height var(--animation-quick),inset-block-start var(--animation-quick),font-size var(--animation-quick),color var(--animation-quick),background-color var(--animation-quick) var(--animation-slow)}.input-field__label--leading-icon[data-v-36cd7849]{margin-inline-start:34px}.input-field__label--trailing-icon[data-v-36cd7849]{margin-inline-end:34px}.input-field__input:focus+.input-field__label[data-v-36cd7849],.input-field__input:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{inset-block-start:-6px;font-size:13px;background-color:var(--color-main-background);height:14px;padding-inline:4px;margin-inline-start:8px;transition:height var(--animation-quick),inset-block-start var(--animation-quick),font-size var(--animation-quick),color var(--animation-quick)}.input-field__input:focus+.input-field__label--leading-icon[data-v-36cd7849],.input-field__input:not(:placeholder-shown)+.input-field__label--leading-icon[data-v-36cd7849]{margin-inline-start:30px}.input-field__icon[data-v-36cd7849]{position:absolute;height:32px;width:32px;display:flex;align-items:center;justify-content:center;opacity:.7}.input-field__icon--leading[data-v-36cd7849]{inset-block-end:3px;inset-inline-start:2px}.input-field__icon--trailing[data-v-36cd7849]{inset-block-end:3px;inset-inline-end:2px}.input-field__clear-button.button-vue[data-v-36cd7849]{position:absolute;inset-block-end:3px;inset-inline-end:2px;min-width:unset;min-height:unset;height:32px;width:32px !important;border-radius:var(--border-radius-large)}.input-field__helper-text-message[data-v-36cd7849]{padding-block:4px;display:flex;align-items:center}.input-field__helper-text-message__icon[data-v-36cd7849]{margin-inline-end:8px}.input-field__helper-text-message--error[data-v-36cd7849]{color:var(--color-error-text)}.input-field__helper-text-message--success[data-v-36cd7849]{color:var(--color-success-text)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcInputField/NcInputField.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,8BACC,iBAAA,CACA,UAAA,CACA,wCAAA,CACA,sBAAA,CAEA,4CACC,WAAA,CACA,iBAAA,CAGD,wCACC,UAAA,CACA,oBAAA,CAGD,qCACC,QAAA,CACA,uBAAA,CACA,sBAAA,CACA,UAAA,CAEA,kCAAA,CACA,sBAAA,CAEA,6CAAA,CACA,4BAAA,CACA,gDAAA,CACA,wCAAA,CAEA,cAAA,CACA,uCAAA,CACA,oCAAA,CAGA,oDACC,eAAA,CAGD,kLAGC,yCAAA,CAID,iGACC,SAAA,CAGD,2CACC,WAAA,CAGD,8CACC,cAAA,CAGD,mDACC,2BAAA,CAGD,mDACC,yBAAA,CAGD,oDACC,uBAAA,CAGD,8CACC,4CAAA,CACA,4DACC,+GAAA,CAID,wKAEC,+BAAA,CAIF,4CACC,0CAAA,CACA,0DACC,+GAAA,CAID,oKAEC,6BAAA,CAMD,gRAEC,kCAAA,CAKH,qCACC,iBAAA,CACA,oBAAA,CAEA,WAAA,CACA,qBAAA,CACA,aAAA,CACA,sBAAA,CACA,cAAA,CAEA,mCAAA,CAEA,kBAAA,CACA,eAAA,CACA,sBAAA,CAEA,mBAAA,CAEA,6MAAA,CAEA,mDAEC,wBAAA,CAGD,oDAEC,sBAAA,CAIF,gJAEC,sBAAA,CACA,cAAA,CACA,6CAAA,CACA,WAAA,CACA,kBAAA,CACA,uBAAA,CAEA,+IAAA,CACA,4KACC,wBAAA,CAIF,oCACC,iBAAA,CACA,WAAA,CACA,UAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,6CACC,mBAAA,CACA,sBAAA,CAGD,8CACC,mBAAA,CACA,oBAAA,CAIF,uDACC,iBAAA,CACA,mBAAA,CACA,oBAAA,CACA,eAAA,CACA,gBAAA,CACA,WAAA,CACA,qBAAA,CACA,wCAAA,CAGD,mDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CAEA,yDACC,qBAAA,CAGD,0DACC,6BAAA,CAGD,4DACC,+BAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.input-field {\n\tposition: relative;\n\twidth: 100%;\n\tborder-radius: var(--border-radius-large);\n\tmargin-block-start: 6px; // for the label in active state\n\n\t&__main-wrapper {\n\t\theight: 38px; // 44px - 6px margin\n\t\tposition: relative;\n\t}\n\n\t&--disabled {\n\t\topacity: 0.7;\n\t\tfilter: saturate(0.7);\n\t}\n\n\t&__input {\n\t\tmargin: 0;\n\t\tpadding-inline: 10px 6px; // align with label 8px margin label + 4px padding label - 2px border input\n\t\theight: 38px !important;\n\t\twidth: 100%;\n\n\t\tfont-size: var(--default-font-size);\n\t\ttext-overflow: ellipsis;\n\n\t\tbackground-color: var(--color-main-background);\n\t\tcolor: var(--color-main-text);\n\t\tborder: 2px solid var(--color-border-maxcontrast);\n\t\tborder-radius: var(--border-radius-large);\n\n\t\tcursor: pointer;\n\t\t-webkit-appearance: textfield !important;\n\t\t-moz-appearance: textfield !important;\n\n\t\t// Center text if external label is used\n\t\t&--label-outside {\n\t\t\tpadding-block: 0;\n\t\t}\n\n\t\t&:active:not([disabled]),\n\t\t&:hover:not([disabled]),\n\t\t&:focus:not([disabled]) {\n\t\t\tborder-color: var(--color-primary-element);\n\t\t}\n\n\t\t// Hide placeholder while not focussed -> show label instead (only if internal label is used)\n\t\t&:not(:focus,&--label-outside)::placeholder {\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&:focus {\n\t\t\tcursor: text;\n\t\t}\n\n\t\t&:disabled {\n\t\t\tcursor: default;\n\t\t}\n\n\t\t&:focus-visible {\n\t\t\tbox-shadow: unset !important; // Override server rules\n\t\t}\n\n\t\t&--leading-icon {\n\t\t\tpadding-inline-start: 32px;\n\t\t}\n\n\t\t&--trailing-icon {\n\t\t\tpadding-inline-end: 32px;\n\t\t}\n\n\t\t&--success {\n\t\t\tborder-color: var(--color-success) !important; //Override hover border color\n\t\t\t&:focus-visible {\n\t\t\t\tbox-shadow: rgb(248, 250, 252) 0px 0px 0px 2px, var(--color-primary-element) 0px 0px 0px 4px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px\n\t\t\t}\n\n\t\t\t// Align label text color with border color (on hover / focus)\n\t\t\t&:focus + .input-field__label,\n\t\t\t&:hover:not(:placeholder-shown) + .input-field__label {\n\t\t\t\tcolor: var(--color-success-text);\n\t\t\t}\n\t\t}\n\n\t\t&--error {\n\t\t\tborder-color: var(--color-error) !important; //Override hover border color\n\t\t\t&:focus-visible {\n\t\t\t\tbox-shadow: rgb(248, 250, 252) 0px 0px 0px 2px, var(--color-primary-element) 0px 0px 0px 4px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px\n\t\t\t}\n\n\t\t\t// Align label text color with border color (on hover / focus)\n\t\t\t&:focus + .input-field__label,\n\t\t\t&:hover:not(:placeholder-shown) + .input-field__label {\n\t\t\t\tcolor: var(--color-error-text);\n\t\t\t}\n\t\t}\n\n\t\t// Align label text color with border color (on hover / focus)\n\t\t&:not(&--success, &--error) {\n\t\t\t&:focus + .input-field__label,\n\t\t\t&:hover:not(:placeholder-shown) + .input-field__label {\n\t\t\t\tcolor: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\t}\n\n\t&__label {\n\t\tposition: absolute;\n\t\tmargin-inline: 12px 0;\n\t\t// fix height and line height to center label\n\t\theight: 17px;\n\t\tmax-width: fit-content;\n\t\tline-height: 1;\n\t\tinset-block-start: 12px;\n\t\tinset-inline: 0;\n\t\t// Fix color so that users do not think the input already has content\n\t\tcolor: var(--color-text-maxcontrast);\n\t\t// only one line labels are allowed\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t\t// forward events to input\n\t\tpointer-events: none;\n\t\t// Position transition\n\t\ttransition: height var(--animation-quick), inset-block-start var(--animation-quick), font-size var(--animation-quick), color var(--animation-quick), background-color var(--animation-quick) var(--animation-slow);\n\n\t\t&--leading-icon {\n\t\t\t// 32px icon + 2px border\n\t\t\tmargin-inline-start: 34px;\n\t\t}\n\n\t\t&--trailing-icon {\n\t\t\t// 32px icon + 2px border\n\t\t\tmargin-inline-end: 34px;\n\t\t}\n\t}\n\n\t&__input:focus + &__label,\n\t&__input:not(:placeholder-shown) + &__label {\n\t\tinset-block-start: -6px;\n\t\tfont-size: 13px; // minimum allowed font size for accessibility\n\t\tbackground-color: var(--color-main-background);\n\t\theight: 14px;\n\t\tpadding-inline: 4px;\n\t\tmargin-inline-start: 8px;\n\n\t\ttransition: height var(--animation-quick), inset-block-start var(--animation-quick), font-size var(--animation-quick), color var(--animation-quick);\n\t\t&--leading-icon {\n\t\t\tmargin-inline-start: 30px;\n\t\t}\n\t}\n\n\t&__icon {\n\t\tposition: absolute;\n\t\theight: 32px;\n\t\twidth: 32px;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\topacity: 0.7;\n\n\t\t&--leading {\n\t\t\tinset-block-end: 3px;\n\t\t\tinset-inline-start: 2px;\n\t\t}\n\n\t\t&--trailing {\n\t\t\tinset-block-end: 3px;\n\t\t\tinset-inline-end: 2px;\n\t\t}\n\t}\n\n\t&__clear-button.button-vue {\n\t\tposition: absolute;\n\t\tinset-block-end: 3px;\n\t\tinset-inline-end: 2px;\n\t\tmin-width: unset;\n\t\tmin-height: unset;\n\t\theight: 32px;\n\t\twidth: 32px !important;\n\t\tborder-radius: var(--border-radius-large);\n\t}\n\n\t&__helper-text-message {\n\t\tpadding-block: 4px;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t&__icon {\n\t\t\tmargin-inline-end: 8px;\n\t\t}\n\n\t\t&--error {\n\t\t\tcolor: var(--color-error-text);\n\t\t}\n\n\t\t&--success {\n\t\t\tcolor: var(--color-success-text);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const s=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,o,r){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=r),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),r="/*# ".concat(o," */");return[t].concat([r]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,o&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},2102:()=>{},4348:()=>{},1900:(e,t,n)=>{"use strict";function a(e,t,n,a,o,r,i,s){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),a&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),i?(l=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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=l):o&&(l=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,{Z:()=>a})}},t={};function a(n){var o=t[n];if(void 0!==o)return o.exports;var r=t[n]={id:n,exports:{}};return e[n](r,r.exports,a),r.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nc=void 0;var r={};return(()=>{"use strict";a.r(r),a.d(r,{default:()=>T});var e=a(3089);const t=n(94603);var i=a.n(t);const s=n(80419);var l=a.n(s);const c={name:"NcInputField",components:{NcButton:e.default,AlertCircle:i(),Check:l()},inheritAttrs:!1,props:{value:{type:String,required:!0},type:{type:String,default:"text",validator:function(e){return["text","password","email","tel","url","search","number"].includes(e)}},label:{type:String,default:void 0},labelOutside:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},showTrailingButton:{type:Boolean,default:!1},trailingButtonLabel:{type:String,default:""},success:{type:Boolean,default:!1},error:{type:Boolean,default:!1},helperText:{type:String,default:""},disabled:{type:Boolean,default:!1},inputClass:{type:[Object,String],default:""}},emits:["update:value","trailing-button-click"],computed:{computedId:function(){return this.$attrs.id&&""!==this.$attrs.id?this.$attrs.id:this.inputName},inputName:function(){return"input"+Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,5)},hasLeadingIcon:function(){return this.$slots.default},hasTrailingIcon:function(){return this.success},hasPlaceholder:function(){return""!==this.placeholder&&void 0!==this.placeholder},computedPlaceholder:function(){return this.hasPlaceholder?this.placeholder:this.label},isValidLabel:function(){var e=this.label||this.labelOutside;return e||o.warn("You need to add a label to the NcInputField component. Either use the prop label or use an external one, as per the example in the documentation."),e},ariaDescribedby:function(){var e=[];return this.helperText.length>0&&e.push("".concat(this.inputName,"-helper-text")),this.$attrs["aria-describedby"]&&e.push(this.$attrs["aria-describedby"]),e.join(" ")||null}},methods:{focus:function(){this.$refs.input.focus()},select:function(){this.$refs.input.select()},handleInput:function(e){this.$emit("update:value",e.target.value)},handleTrailingButtonClick:function(e){this.$emit("trailing-button-click",e)}}};var u=a(3379),d=a.n(u),m=a(7795),p=a.n(m),h=a(569),g=a.n(h),f=a(3565),v=a.n(f),y=a(9216),A=a.n(y),b=a(4589),w=a.n(b),k=a(4671),C={};C.styleTagTransform=w(),C.setAttributes=v(),C.insert=g().bind(null,"head"),C.domAPI=p(),C.insertStyleElement=A(),d()(k.Z,C),k.Z&&k.Z.locals&&k.Z.locals;var S=a(1900),P=a(4348),x=a.n(P),N=(0,S.Z)(c,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"input-field",class:{"input-field--disabled":e.disabled}},[t("div",{staticClass:"input-field__main-wrapper"},[t("input",e._g(e._b({ref:"input",staticClass:"input-field__input",class:[e.inputClass,{"input-field__input--trailing-icon":e.showTrailingButton||e.hasTrailingIcon,"input-field__input--leading-icon":e.hasLeadingIcon,"input-field__input--label-outside":e.labelOutside,"input-field__input--success":e.success,"input-field__input--error":e.error}],attrs:{id:e.computedId,type:e.type,disabled:e.disabled,placeholder:e.computedPlaceholder,"aria-describedby":e.ariaDescribedby,"aria-live":"polite"},domProps:{value:e.value},on:{input:e.handleInput}},"input",e.$attrs,!1),e.$listeners)),e._v(" "),!e.labelOutside&&e.isValidLabel?t("label",{staticClass:"input-field__label",class:[{"input-field__label--trailing-icon":e.showTrailingButton||e.hasTrailingIcon,"input-field__label--leading-icon":e.hasLeadingIcon}],attrs:{for:e.computedId}},[e._v("\n\t\t\t"+e._s(e.label)+"\n\t\t")]):e._e(),e._v(" "),t("div",{directives:[{name:"show",rawName:"v-show",value:e.hasLeadingIcon,expression:"hasLeadingIcon"}],staticClass:"input-field__icon input-field__icon--leading"},[e._t("default")],2),e._v(" "),e.showTrailingButton?t("NcButton",{staticClass:"input-field__clear-button",attrs:{type:"tertiary-no-background","aria-label":e.trailingButtonLabel,disabled:e.disabled},on:{click:e.handleTrailingButtonClick},scopedSlots:e._u([{key:"icon",fn:function(){return[e._t("trailing-button-icon")]},proxy:!0}],null,!0)}):e.success||e.error?t("div",{staticClass:"input-field__icon input-field__icon--trailing"},[e.success?t("Check",{staticStyle:{color:"var(--color-success-text)"},attrs:{size:20}}):e.error?t("AlertCircle",{staticStyle:{color:"var(--color-error-text)"},attrs:{size:20}}):e._e()],1):e._e()],1),e._v(" "),e.helperText.length>0?t("p",{staticClass:"input-field__helper-text-message",class:{"input-field__helper-text-message--error":e.error,"input-field__helper-text-message--success":e.success},attrs:{id:"".concat(e.inputName,"-helper-text")}},[e.success?t("Check",{staticClass:"input-field__helper-text-message__icon",attrs:{size:18}}):e.error?t("AlertCircle",{staticClass:"input-field__helper-text-message__icon",attrs:{size:18}}):e._e(),e._v("\n\t\t"+e._s(e.helperText)+"\n\t")],1):e._e()])}),[],!1,null,"36cd7849",null);"function"==typeof x()&&x()(N);const T=N.exports})(),r})(),e.exports=a()},27866:function(e,n,a){"use strict";var o={};a.r(o),a.d(o,{exclude:function(){return Gs},extract:function(){return Bs},parse:function(){return zs},parseUrl:function(){return Ms},pick:function(){return Rs},stringify:function(){return Us},stringifyUrl:function(){return Ds}});var r=a(17499),i=a(43554),s=a(31352),l=a(79753),c=a(77958),u=function(){var e,t=(null===(e=OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.App)||void 0===e||null===(e=e.currentFileList)||void 0===e?void 0:e.dirInfo)||{path:"/",name:""};return"".concat(t.path,"/").concat(t.name).replace(/\/\//gi,"/")},d=a(48033),m=a(20144),p=a(62520),h=a(64024),g=a(93455),f=a.n(g),v=a(70110),y=a.n(v);function A(e){return A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},A(e)}function b(){b=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new N(o||[]);return a(i,"_invoke",{value:C(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(T([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function w(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==A(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function C(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=S(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function S(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function T(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;x(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:T(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function w(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function k(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){w(r,a,o,i,s,"next",e)}function s(e){w(r,a,o,i,s,"throw",e)}i(void 0)}))}}var C=function(){var e=k(b().mark((function e(){var t;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,d.Z.get((0,l.generateOcsUrl)("apps/files/api/v1/templates"));case 2:return t=e.sent,e.abrupt("return",t.data.ocs.data);case 4:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),S=function(){var e=k(b().mark((function e(t,n,a){var o;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,d.Z.post((0,l.generateOcsUrl)("apps/files/api/v1/templates/create"),{filePath:t,templatePath:n,templateType:a});case 2:return o=e.sent,e.abrupt("return",o.data.ocs.data);case 4:case"end":return e.stop()}}),e)})));return function(t,n,a){return e.apply(this,arguments)}}(),P=256,x={name:"TemplatePreview",inheritAttrs:!1,props:{basename:{type:String,required:!0},checked:{type:Boolean,default:!1},fileid:{type:[String,Number],required:!0},filename:{type:String,required:!0},previewUrl:{type:String,default:null},hasPreview:{type:Boolean,default:!0},mime:{type:String,required:!0},ratio:{type:Number,default:null}},data:function(){return{failedPreview:!1}},computed:{nameWithoutExt:function(){return this.basename.indexOf(".")>-1?this.basename.split(".").slice(0,-1).join("."):this.basename},id:function(){return"template-picker-".concat(this.fileid)},realPreviewUrl:function(){return this.failedPreview&&this.mimeIcon?this.mimeIcon:this.previewUrl?this.previewUrl:(0,c.ts)()?(0,l.generateUrl)("/core/preview?fileId=".concat(this.fileid,"&x=").concat(P,"&y=").concat(P,"&a=1")):(0,l.generateUrl)("/apps/files_sharing/publicpreview/".concat(document.getElementById("sharingToken")&&document.getElementById("sharingToken").value,"?fileId=").concat(this.fileid,"&file=").concat((e=this.filename,t=(e.startsWith("/")?e:"/".concat(e)).split("/"),n="",t.forEach((function(e){""!==e&&(n+="/"+encodeURIComponent(e))})),n),"&x=").concat(P,"&y=").concat(P,"&a=1"));var e,t,n},mimeIcon:function(){return OC.MimeType.getIconUrl(this.mime)}},methods:{onCheck:function(){this.$emit("check",this.fileid)},onFailure:function(){this.failedPreview=!0}}},N=a(93379),T=a.n(N),E=a(7795),j=a.n(E),_=a(90569),O=a.n(_),L=a(3565),F=a.n(L),B=a(19216),z=a.n(B),U=a(44589),M=a.n(U),D=a(67679),R={};R.styleTagTransform=M(),R.setAttributes=F(),R.insert=O().bind(null,"head"),R.domAPI=j(),R.insertStyleElement=z(),T()(D.Z,R),D.Z&&D.Z.locals&&D.Z.locals;var G=a(51900),I=(0,G.Z)(x,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"template-picker__item"},[t("input",{staticClass:"radio",attrs:{id:e.id,type:"radio",name:"template-picker"},domProps:{checked:e.checked},on:{change:e.onCheck}}),e._v(" "),t("label",{staticClass:"template-picker__label",attrs:{for:e.id}},[t("div",{staticClass:"template-picker__preview",class:e.failedPreview?"template-picker__preview--failed":""},[t("img",{staticClass:"template-picker__image",attrs:{src:e.realPreviewUrl,alt:"",draggable:"false"},on:{error:e.onFailure}})]),e._v(" "),t("span",{staticClass:"template-picker__title"},[e._v("\n\t\t\t"+e._s(e.nameWithoutExt)+"\n\t\t")])])])}),[],!1,null,"5b09ec60",null).exports,$=a(25108);function q(e){return q="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},q(e)}function H(){H=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==q(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function V(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function W(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){V(r,a,o,i,s,"next",e)}function s(e){V(r,a,o,i,s,"throw",e)}i(void 0)}))}}var Z={name:"TemplatePicker",components:{NcEmptyContent:f(),NcModal:y(),TemplatePreview:I},props:{logger:{type:Object,required:!0}},data:function(){return{checked:-1,loading:!1,name:null,opened:!1,provider:null}},computed:{nameWithoutExt:function(){return this.name.indexOf(".")>-1?this.name.split(".").slice(0,-1).join("."):this.name},emptyTemplate:function(){var e,n;return{basename:t("files","Blank"),fileid:-1,filename:this.t("files","Blank"),hasPreview:!1,mime:(null===(e=this.provider)||void 0===e?void 0:e.mimetypes[0])||(null===(n=this.provider)||void 0===n?void 0:n.mimetypes)}},selectedTemplate:function(){var e=this;return this.provider.templates.find((function(t){return t.fileid===e.checked}))},style:function(){var e=(this.provider.ratio?this.provider.ratio:1.77)>1?240:160;return{"--margin":"8px","--width":e+"px","--border":"2px","--fullwidth":e+16+4+"px","--height":this.provider.ratio?Math.round(e/this.provider.ratio)+"px":null}}},methods:{open:function(e,t){var n=this;return W(H().mark((function a(){var o,r;return H().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return n.checked=n.emptyTemplate.fileid,n.name=e,n.provider=t,a.next=5,C();case 5:if(o=a.sent,null!==(r=o.find((function(e){return e.app===t.app&&e.label===t.label})))){a.next=9;break}throw new Error("Failed to match provider in results");case 9:if(n.provider=r,0!==r.templates.length){a.next=13;break}return n.onSubmit(),a.abrupt("return");case 13:n.opened=!0;case 14:case"end":return a.stop()}}),a)})))()},close:function(){this.checked=this.emptyTemplate.fileid,this.loading=!1,this.name=null,this.opened=!1,this.provider=null},onCheck:function(e){this.checked=e},onSubmit:function(){var e=this;return W(H().mark((function t(){var n,a,o,r,i,s,l,c,d,m,g;return H().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.loading=!0,a=u(),o=null===(n=OCA)||void 0===n||null===(n=n.Files)||void 0===n||null===(n=n.App)||void 0===n?void 0:n.currentFileList,e.nameWithoutExt===e.name&&(e.logger.debug("Fixed invalid filename",{name:e.name,extension:null===(r=e.provider)||void 0===r?void 0:r.extension}),e.name=e.name+(null===(i=e.provider)||void 0===i?void 0:i.extension)),t.prev=4,t.next=7,S((0,p.normalize)("".concat(a,"/").concat(e.name)),null===(s=e.selectedTemplate)||void 0===s?void 0:s.filename,null===(l=e.selectedTemplate)||void 0===l?void 0:l.templateType);case 7:return c=t.sent,e.logger.debug("Created new file",c),t.next=11,null==o?void 0:o.addAndFetchFileInfo(e.name).then((function(e,t){return t}));case 11:d=t.sent,m=new OCA.Files.FileInfoModel(d,{filesClient:null==o?void 0:o.filesClient}),(g=OCA.Files.fileActions.getDefaultFileAction(c.mime,"file",OC.PERMISSION_ALL))&&g.action(c.basename,{$file:null==o?void 0:o.findFileEl(e.name),dir:a,fileList:o,fileActions:null==o?void 0:o.fileActions,fileInfoModel:m}),e.close(),t.next=23;break;case 18:t.prev=18,t.t0=t.catch(4),e.logger.error("Error while creating the new file from template"),$.error(t.t0),(0,h.x2)(e.t("files","Unable to create new file from template"));case 23:return t.prev=23,e.loading=!1,t.finish(23);case 26:case"end":return t.stop()}}),t,null,[[4,18,23,26]])})))()}}},K=Z,Y=a(54654),J={};J.styleTagTransform=M(),J.setAttributes=F(),J.insert=O().bind(null,"head"),J.domAPI=j(),J.insertStyleElement=z(),T()(Y.Z,J),Y.Z&&Y.Z.locals&&Y.Z.locals;var Q=(0,G.Z)(K,(function(){var e=this,t=e._self._c;return e.opened?t("NcModal",{staticClass:"templates-picker",attrs:{"clear-view-delay":-1,size:"large"},on:{close:e.close}},[t("form",{staticClass:"templates-picker__form",style:e.style,on:{submit:function(t){return t.preventDefault(),t.stopPropagation(),e.onSubmit.apply(null,arguments)}}},[t("h2",[e._v(e._s(e.t("files","Pick a template for {name}",{name:e.nameWithoutExt})))]),e._v(" "),t("ul",{staticClass:"templates-picker__list"},[t("TemplatePreview",e._b({attrs:{checked:e.checked===e.emptyTemplate.fileid},on:{check:e.onCheck}},"TemplatePreview",e.emptyTemplate,!1)),e._v(" "),e._l(e.provider.templates,(function(n){return t("TemplatePreview",e._b({key:n.fileid,attrs:{checked:e.checked===n.fileid,ratio:e.provider.ratio},on:{check:e.onCheck}},"TemplatePreview",n,!1))}))],2),e._v(" "),t("div",{staticClass:"templates-picker__buttons"},[t("input",{staticClass:"primary",attrs:{type:"submit","aria-label":e.t("files","Create a new file with the selected template")},domProps:{value:e.t("files","Create")}})])]),e._v(" "),e.loading?t("NcEmptyContent",{staticClass:"templates-picker__loading",attrs:{icon:"icon-loading"}},[e._v("\n\t\t"+e._s(e.t("files","Creating file"))+"\n\t")]):e._e()],1):e._e()}),[],!1,null,"d46f1dc6",null),X=Q.exports;function ee(e){return ee="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ee(e)}function te(){te=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ee(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ne(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var ae=(0,r.IY)().setApp("files").detectUser().build();m.default.mixin({methods:{t:s.Iu,n:s.uN}});var oe=document.createElement("div");oe.id="template-picker",document.body.appendChild(oe);var re=(0,i.j)("files","templates",[]),ie=(0,i.j)("files","templates_path",!1);ae.debug("Templates providers",re),ae.debug("Templates folder",{templatesPath:ie});var se=new(m.default.extend(X))({name:"TemplatePicker",propsData:{logger:ae}});se.$mount("#template-picker"),window.addEventListener("DOMContentLoaded",(function(){if(!ie){ae.debug("Templates folder not initialized");var e={attach:function(e){e.addMenuEntry({id:"template-init",displayName:(0,s.Iu)("files","Set up templates folder"),templateName:(0,s.Iu)("files","Templates"),iconClass:"icon-template-add",fileType:"file",actionLabel:(0,s.Iu)("files","Create new templates folder"),actionHandler:function(t){ce(t),e.removeMenuEntry("template-init")}})}};OC.Plugins.register("OCA.Files.NewFileMenu",e)}})),re.forEach((function(e,t){var n={attach:function(n){var a=n.fileList;"files"!==a.id&&"files.public"!==a.id||n.addMenuEntry({id:"template-new-".concat(e.app,"-").concat(t),displayName:e.label,templateName:e.label+e.extension,iconClass:e.iconClass||"icon-file",fileType:"file",actionLabel:e.actionLabel,actionHandler:function(t){se.open(t,e)}})}};OC.Plugins.register("OCA.Files.NewFileMenu",n)}));var le,ce=function(){var e,t=(e=te().mark((function e(t){var n,a;return te().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=(u()+"/".concat(t)).replace("//","/"),e.prev=1,ae.debug("Initializing the templates directory",{templatePath:n}),e.next=5,d.Z.post((0,l.generateOcsUrl)("apps/files/api/v1/templates/path"),{templatePath:n,copySystemTemplates:!0});case 5:a=e.sent,OCA.Files.App.currentFileList.changeDirectory(n,!0,!0),re=a.data.ocs.data.templates,ie=a.data.ocs.data.template_path,e.next=15;break;case 11:e.prev=11,e.t0=e.catch(1),ae.error("Unable to initialize the templates directory"),(0,h.x2)((0,s.Iu)("files","Unable to initialize the templates directory"));case 15:case"end":return e.stop()}}),e,null,[[1,11]])})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ne(r,a,o,i,s,"next",e)}function s(e){ne(r,a,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}(),ue=a(69183);le={attach:function(e){var t=this;(0,ue.Ld)("nextcloud:unified-search.search",(function(t){var n=t.query;e.setFilter(n)})),(0,ue.Ld)("nextcloud:unified-search.reset",(function(){t.query=null,e.setFilter("")}))}},window.OC.Plugins.register("OCA.Files.FileList",le);var de=a(5656),me=(0,r.IY)().setApp("files").detectUser().build();function pe(e){return pe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},pe(e)}function he(){he=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==pe(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ge(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function fe(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ge(r,a,o,i,s,"next",e)}function s(e){ge(r,a,o,i,s,"throw",e)}i(void 0)}))}}var ve=new de.p$({id:"delete",displayName:function(e,t){return"trashbin"===t.id?(0,s.Iu)("files_trashbin","Delete permanently"):(0,s.Iu)("files","Delete")},iconSvgInline:function(){return''},enabled:function(e){return e.length>0&&e.map((function(e){return e.permissions})).every((function(e){return 0!=(e&de.y3.DELETE)}))},exec:function(e){return fe(he().mark((function t(){return he().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,d.Z.delete(e.source);case 3:return(0,ue.j8)("files:node:deleted",e),t.abrupt("return",!0);case 7:return t.prev=7,t.t0=t.catch(0),me.error("Error while deleting a file",{error:t.t0,source:e.source,node:e}),t.abrupt("return",!1);case 11:case"end":return t.stop()}}),t,null,[[0,7]])})))()},execBatch:function(e,t,n){var a=this;return fe(he().mark((function o(){return he().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.abrupt("return",Promise.all(e.map((function(e){return a.exec(e,t,n)}))));case 1:case"end":return o.stop()}}),o)})))()},order:100});function ye(e){return ye="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ye(e)}function Ae(){Ae=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ye(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function be(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function we(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){be(r,a,o,i,s,"next",e)}function s(e){be(r,a,o,i,s,"throw",e)}i(void 0)}))}}(0,de.p4)(ve);var ke=function(e){var t=document.createElement("a");t.download="",t.href=e,t.click()},Ce=function(e,t){var n=Math.random().toString(36).substring(2),a=(0,l.generateUrl)("/apps/files/ajax/download.php?dir={dir}&files={files}&downloadStartSecret={secret}",{dir:e,secret:n,files:JSON.stringify(t.map((function(e){return e.basename})))});ke(a)},Se=new de.p$({id:"download",displayName:function(){return(0,s.Iu)("files","Download")},iconSvgInline:function(){return''},enabled:function(e){return 0!==e.length&&!(e.some((function(e){return e.type===de.Tv.Folder}))&&!e.every((function(e){var t;return null===(t=e.root)||void 0===t?void 0:t.startsWith("/files")})))&&e.map((function(e){return e.permissions})).every((function(e){return 0!=(e&de.y3.READ)}))},exec:function(e,t,n){return we(Ae().mark((function t(){return Ae().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.type!==de.Tv.Folder){t.next=3;break}return Ce(n,[e]),t.abrupt("return",null);case 3:return ke(e.source),t.abrupt("return",null);case 5:case"end":return t.stop()}}),t)})))()},execBatch:function(e,t,n){var a=this;return we(Ae().mark((function o(){return Ae().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(1!==e.length){o.next=3;break}return a.exec(e[0],t,n),o.abrupt("return",[null]);case 3:return Ce(n,e),o.abrupt("return",new Array(e.length).fill(null));case 5:case"end":return o.stop()}}),o)})))()},order:30});(0,de.p4)(Se);var Pe=a(65358);function xe(e){return xe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},xe(e)}function Ne(){Ne=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==xe(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Te(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function Ee(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){Te(r,a,o,i,s,"next",e)}function s(e){Te(r,a,o,i,s,"throw",e)}i(void 0)}))}}var je=function(){var e=Ee(Ne().mark((function e(t){var n,a,o,r,i;return Ne().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=(0,l.generateOcsUrl)("apps/files/api/v1")+"/openlocaleditor?format=json",e.prev=1,e.next=4,d.Z.post(n,{path:t});case 4:o=e.sent,r=null===(a=(0,c.ts)())||void 0===a?void 0:a.uid,i="nc://open/".concat(r,"@")+window.location.host+(0,Pe.Ec)(t),i+="?token="+o.data.ocs.data.token,window.location.href=i,e.next=14;break;case 11:e.prev=11,e.t0=e.catch(1),(0,h.x2)((0,s.Iu)("files","Failed to redirect to client"));case 14:case"end":return e.stop()}}),e,null,[[1,11]])})));return function(t){return e.apply(this,arguments)}}(),_e=new de.p$({id:"edit-locally",displayName:function(){return(0,s.Iu)("files","Edit locally")},iconSvgInline:function(){return''},enabled:function(e){return 1===e.length&&0!=(e[0].permissions&de.y3.UPDATE)},exec:function(e){return Ee(Ne().mark((function t(){return Ne().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return je(e.path),t.abrupt("return",null);case 2:case"end":return t.stop()}}),t)})))()},order:25});/Android|iPhone|iPad|iPod/i.test(navigator.userAgent)||(0,de.p4)(_e);var Oe='';function Le(e){return Le="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Le(e)}function Fe(){Fe=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Le(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Be(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function ze(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){Be(r,a,o,i,s,"next",e)}function s(e){Be(r,a,o,i,s,"throw",e)}i(void 0)}))}}var Ue=function(e){return e.some((function(e){return 1!==e.attributes.favorite}))},Me=function(){var e=ze(Fe().mark((function e(t,n,a){var o,r;return Fe().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,o=(0,l.generateUrl)("/apps/files/api/v1/files")+t.path,e.next=4,d.Z.post(o,{tags:a?[window.OC.TAG_FAVORITE]:[]});case 4:return"favorites"!==n.id||a||"/"!==t.dirname||(0,ue.j8)("files:node:deleted",t),m.default.set(t.attributes,"favorite",a?1:0),a?(0,ue.j8)("files:favorites:added",t):(0,ue.j8)("files:favorites:removed",t),e.abrupt("return",!0);case 10:return e.prev=10,e.t0=e.catch(0),r=a?"adding a file to favourites":"removing a file from favourites",me.error("Error while "+r,{error:e.t0,source:t.source,node:t}),e.abrupt("return",!1);case 15:case"end":return e.stop()}}),e,null,[[0,10]])})));return function(t,n,a){return e.apply(this,arguments)}}(),De=new de.p$({id:"favorite",displayName:function(e){return Ue(e)?(0,s.Iu)("files","Add to favorites"):(0,s.Iu)("files","Remove from favorites")},iconSvgInline:function(e){return Ue(e)?'':Oe},enabled:function(e){return!e.some((function(e){var t,n;return!(null!==(t=e.root)&&void 0!==t&&null!==(n=t.startsWith)&&void 0!==n&&n.call(t,"/files"))}))&&e.every((function(e){return e.permissions!==de.y3.NONE}))},exec:function(e,t){return ze(Fe().mark((function n(){var a;return Fe().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return a=Ue([e]),n.next=3,Me(e,t,a);case 3:return n.abrupt("return",n.sent);case 4:case"end":return n.stop()}}),n)})))()},execBatch:function(e,t){return ze(Fe().mark((function n(){var a;return Fe().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return a=Ue(e),n.abrupt("return",Promise.all(e.map(function(){var e=ze(Fe().mark((function e(n){return Fe().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Me(n,t,a);case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}())));case 2:case"end":return n.stop()}}),n)})))()},order:-50});(0,de.p4)(De);var Re='';function Ge(e){return Ge="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ge(e)}function Ie(){Ie=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Ge(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function $e(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var qe=new de.p$({id:"open-folder",displayName:function(e){var t=e[0].attributes.displayName||e[0].basename;return(0,s.Iu)("files","Open folder {displayName}",{displayName:t})},iconSvgInline:function(){return Re},enabled:function(e){if(1!==e.length)return!1;var t=e[0];return!!t.isDavRessource&&t.type===de.Tv.Folder&&0!=(t.permissions&de.y3.READ)},exec:function(e,t,n){return(a=Ie().mark((function a(){return Ie().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(e&&e.type===de.Tv.Folder){a.next=2;break}return a.abrupt("return",!1);case 2:return window.OCP.Files.Router.goToRoute(null,{view:t.id,fileid:void 0},{dir:(0,p.join)(n,e.basename),fileid:void 0}),a.abrupt("return",null);case 4:case"end":return a.stop()}}),a)})),function(){var e=this,t=arguments;return new Promise((function(n,o){var r=a.apply(e,t);function i(e){$e(r,n,o,i,s,"next",e)}function s(e){$e(r,n,o,i,s,"throw",e)}i(void 0)}))})();var a},default:de.DT.HIDDEN,order:-100});function He(e){return He="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},He(e)}function Ve(){Ve=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==He(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function We(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}(0,de.p4)(qe);var Ze=new de.p$({id:"open-in-files-recent",displayName:function(){return(0,s.Iu)("files","Open in Files")},iconSvgInline:function(){return""},enabled:function(e,t){return"recent"===t.id},exec:function(e){return(t=Ve().mark((function t(){var n;return Ve().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=e.dirname,e.type===de.Tv.Folder&&(n=n+"/"+e.basename),window.OCP.Files.Router.goToRoute(null,{view:"files",fileid:e.fileid},{dir:n,fileid:e.fileid}),t.abrupt("return",null);case 4:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,o){var r=t.apply(e,n);function i(e){We(r,a,o,i,s,"next",e)}function s(e){We(r,a,o,i,s,"throw",e)}i(void 0)}))})();var t},order:-1e3,default:de.DT.HIDDEN});function Ke(e){return Ke="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ke(e)}function Ye(){Ye=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Ke(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Je(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}(0,de.p4)(Ze);var Qe=new de.p$({id:"rename",displayName:function(){return(0,s.Iu)("files","Rename")},iconSvgInline:function(){return''},enabled:function(e){return e.length>0&&e.map((function(e){return e.permissions})).every((function(e){return 0!=(e&de.y3.UPDATE)}))},exec:function(e){return(t=Ye().mark((function t(){return Ye().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(0,ue.j8)("files:node:rename",e),t.abrupt("return",null);case 2:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,o){var r=t.apply(e,n);function i(e){Je(r,a,o,i,s,"next",e)}function s(e){Je(r,a,o,i,s,"throw",e)}i(void 0)}))})();var t},order:10});function Xe(e){return Xe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Xe(e)}function et(){et=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Xe(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function tt(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}(0,de.p4)(Qe);var nt=new de.p$({id:"details",displayName:function(){return(0,s.Iu)("files","Open details")},iconSvgInline:function(){return''},enabled:function(e){var t,n,a;return 1===e.length&&!!e[0]&&!(null===(t=window)||void 0===t||null===(t=t.OCA)||void 0===t||null===(t=t.Files)||void 0===t||!t.Sidebar)&&null!==(n=(null===(a=e[0].root)||void 0===a?void 0:a.startsWith("/files/"))&&e[0].permissions!==de.y3.NONE)&&void 0!==n&&n},exec:function(e,t,n){return(a=et().mark((function a(){return et().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.prev=0,a.next=3,window.OCA.Files.Sidebar.open(e.path);case 3:return window.OCP.Files.Router.goToRoute(null,{view:t.id,fileid:e.fileid},{dir:n},!0),a.abrupt("return",null);case 7:return a.prev=7,a.t0=a.catch(0),me.error("Error while opening sidebar",{error:a.t0}),a.abrupt("return",!1);case 11:case"end":return a.stop()}}),a,null,[[0,7]])})),function(){var e=this,t=arguments;return new Promise((function(n,o){var r=a.apply(e,t);function i(e){tt(r,n,o,i,s,"next",e)}function s(e){tt(r,n,o,i,s,"throw",e)}i(void 0)}))})();var a},order:-50});(0,de.p4)(nt);var at=a(96384);function ot(e){return ot="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ot(e)}function rt(){rt=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ot(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function it(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var st=new de.p$({id:"view-in-folder",displayName:function(){return(0,s.Iu)("files","View in folder")},iconSvgInline:function(){return at},enabled:function(e){if(1!==e.length)return!1;var t=e[0];return!!t.isDavRessource&&t.permissions!==de.y3.NONE&&t.type===de.Tv.File},exec:function(e,t,n){return(a=rt().mark((function t(){return rt().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e&&e.type===de.Tv.File){t.next=2;break}return t.abrupt("return",!1);case 2:return window.OCP.Files.Router.goToRoute(null,{view:"files",fileid:e.fileid},{dir:e.dirname}),t.abrupt("return",null);case 4:case"end":return t.stop()}}),t)})),function(){var e=this,t=arguments;return new Promise((function(n,o){var r=a.apply(e,t);function i(e){it(r,n,o,i,s,"next",e)}function s(e){it(r,n,o,i,s,"throw",e)}i(void 0)}))})();var a},order:80});function lt(e){return lt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},lt(e)}function ct(){ct=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==lt(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ut(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function dt(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ut(r,a,o,i,s,"next",e)}function s(e){ut(r,a,o,i,s,"throw",e)}i(void 0)}))}}(0,de.p4)(st);var mt=function(){var e=dt(ct().mark((function e(t,n){var a,o;return ct().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a=t+"/"+n,e.next=3,(0,d.Z)({method:"MKCOL",url:a,headers:{Overwrite:"F"}});case 3:return o=e.sent,e.abrupt("return",{fileid:parseInt(o.headers["oc-fileid"]),source:a});case 5:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),pt=function(e,t){for(var n=e,a=1;t.includes(n);){var o=(0,p.extname)(e);n="".concat((0,p.basename)(e,o)," (").concat(a++,")").concat(o)}return n},ht={id:"newFolder",displayName:(0,s.Iu)("files","New folder"),if:function(e){return 0!=(e.permissions&de.y3.CREATE)},iconSvgInline:'',handler:function(e,t){return dt(ct().mark((function n(){var a,o,r,i,l,u,d,g;return ct().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return r=t.map((function(e){return e.basename})),i=pt((0,s.Iu)("files","New folder"),r),n.next=4,mt(e.source,i);case 4:l=n.sent,u=l.fileid,d=l.source,g=new de.gt({source:d,id:u,mtime:new Date,owner:(null===(a=(0,c.ts)())||void 0===a?void 0:a.uid)||null,permissions:de.y3.ALL,root:(null==e?void 0:e.root)||"/files/"+(null===(o=(0,c.ts)())||void 0===o?void 0:o.uid)}),e._children||m.default.set(e,"_children",[]),e._children.push(g.fileid),(0,h.s$)((0,s.Iu)("files",'Created new folder "{name}"',{name:(0,p.basename)(d)})),(0,ue.j8)("files:node:created",g),(0,ue.j8)("files:node:rename",g);case 13:case"end":return n.stop()}}),n)})))()}};(0,de.cd)(ht);var gt=!0;function ft(){return"undefined"!=typeof navigator&&"undefined"!=typeof window?window:void 0!==a.g?a.g:{}}m.default.util.warn;const vt="function"==typeof Proxy,yt="devtools-plugin:setup";let At,bt;class wt{constructor(e,t){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=e,this.hook=t;const n={};if(e.settings)for(const t in e.settings){const a=e.settings[t];n[t]=a.defaultValue}const o=`__vue-devtools-plugin-settings__${e.id}`;let r=Object.assign({},n);try{const e=localStorage.getItem(o),t=JSON.parse(e);Object.assign(r,t)}catch(e){}this.fallbacks={getSettings(){return r},setSettings(e){try{localStorage.setItem(o,JSON.stringify(e))}catch(e){}r=e},now(){return void 0!==At||("undefined"!=typeof window&&window.performance?(At=!0,bt=window.performance):void 0!==a.g&&(null===(e=a.g.perf_hooks)||void 0===e?void 0:e.performance)?(At=!0,bt=a.g.perf_hooks.performance):At=!1),At?bt.now():Date.now();var e}},t&&t.on("plugin:settings:set",((e,t)=>{e===this.plugin.id&&this.fallbacks.setSettings(t)})),this.proxiedOn=new Proxy({},{get:(e,t)=>this.target?this.target.on[t]:(...e)=>{this.onQueue.push({method:t,args:e})}}),this.proxiedTarget=new Proxy({},{get:(e,t)=>this.target?this.target[t]:"on"===t?this.proxiedOn:Object.keys(this.fallbacks).includes(t)?(...e)=>(this.targetQueue.push({method:t,args:e,resolve:()=>{}}),this.fallbacks[t](...e)):(...e)=>new Promise((n=>{this.targetQueue.push({method:t,args:e,resolve:n})}))})}async setRealTarget(e){this.target=e;for(const e of this.onQueue)this.target.on[e.method](...e.args);for(const e of this.targetQueue)e.resolve(await this.target[e.method](...e.args))}}function kt(e,t){const n=e,a=ft(),o=ft().__VUE_DEVTOOLS_GLOBAL_HOOK__,r=vt&&n.enableEarlyProxy;if(!o||!a.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__&&r){const e=r?new wt(n,o):null;(a.__VUE_DEVTOOLS_PLUGINS__=a.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:e}),e&&t(e.proxiedTarget)}else o.emit(yt,e,t)}var Ct=a(25108);let St;const Pt=e=>St=e,xt=Symbol();function Nt(e){return e&&"object"==typeof e&&"[object Object]"===Object.prototype.toString.call(e)&&"function"!=typeof e.toJSON}var Tt;!function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"}(Tt||(Tt={}));const Et="undefined"!=typeof window,jt="undefined"!=typeof __VUE_PROD_DEVTOOLS__&&__VUE_PROD_DEVTOOLS__&&Et,_t=(()=>"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:"object"==typeof globalThis?globalThis:{HTMLElement:null})();function Ot(e,t,n){const a=new XMLHttpRequest;a.open("GET",e),a.responseType="blob",a.onload=function(){Ut(a.response,t,n)},a.onerror=function(){Ct.error("could not download file")},a.send()}function Lt(e){const t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return t.status>=200&&t.status<=299}function Ft(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(t){const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(n)}}const Bt="object"==typeof navigator?navigator:{userAgent:""},zt=(()=>/Macintosh/.test(Bt.userAgent)&&/AppleWebKit/.test(Bt.userAgent)&&!/Safari/.test(Bt.userAgent))(),Ut=Et?"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!zt?function(e,t="download",n){const a=document.createElement("a");a.download=t,a.rel="noopener","string"==typeof e?(a.href=e,a.origin!==location.origin?Lt(a.href)?Ot(e,t,n):(a.target="_blank",Ft(a)):Ft(a)):(a.href=URL.createObjectURL(e),setTimeout((function(){URL.revokeObjectURL(a.href)}),4e4),setTimeout((function(){Ft(a)}),0))}:"msSaveOrOpenBlob"in Bt?function(e,t="download",n){if("string"==typeof e)if(Lt(e))Ot(e,t,n);else{const t=document.createElement("a");t.href=e,t.target="_blank",setTimeout((function(){Ft(t)}))}else navigator.msSaveOrOpenBlob(function(e,{autoBom:t=!1}={}){return t&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e}(e,n),t)}:function(e,t,n,a){if((a=a||open("","_blank"))&&(a.document.title=a.document.body.innerText="downloading..."),"string"==typeof e)return Ot(e,t,n);const o="application/octet-stream"===e.type,r=/constructor/i.test(String(_t.HTMLElement))||"safari"in _t,i=/CriOS\/[\d]+/.test(navigator.userAgent);if((i||o&&r||zt)&&"undefined"!=typeof FileReader){const t=new FileReader;t.onloadend=function(){let e=t.result;if("string"!=typeof e)throw a=null,new Error("Wrong reader.result type");e=i?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),a?a.location.href=e:location.assign(e),a=null},t.readAsDataURL(e)}else{const t=URL.createObjectURL(e);a?a.location.assign(t):location.href=t,a=null,setTimeout((function(){URL.revokeObjectURL(t)}),4e4)}}:()=>{};function Mt(e,t){const n="🍍 "+e;"function"==typeof __VUE_DEVTOOLS_TOAST__?__VUE_DEVTOOLS_TOAST__(n,t):"error"===t?Ct.error(n):"warn"===t?Ct.warn(n):Ct.log(n)}function Dt(e){return"_a"in e&&"install"in e}function Rt(){if(!("clipboard"in navigator))return Mt("Your browser doesn't support the Clipboard API","error"),!0}function Gt(e){return!!(e instanceof Error&&e.message.toLowerCase().includes("document is not focused"))&&(Mt('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.',"warn"),!0)}let It;function $t(e,t){for(const n in t){const a=e.state.value[n];a&&Object.assign(a,t[n])}}function qt(e){return{_custom:{display:e}}}const Ht="🍍 Pinia (root)",Vt="_root";function Wt(e){return Dt(e)?{id:Vt,label:Ht}:{id:e.$id,label:e.$id}}function Zt(e){return e?Array.isArray(e)?e.reduce(((e,t)=>(e.keys.push(t.key),e.operations.push(t.type),e.oldValue[t.key]=t.oldValue,e.newValue[t.key]=t.newValue,e)),{oldValue:{},keys:[],operations:[],newValue:{}}):{operation:qt(e.type),key:qt(e.key),oldValue:e.oldValue,newValue:e.newValue}:{}}function Kt(e){switch(e){case Tt.direct:return"mutation";case Tt.patchFunction:case Tt.patchObject:return"$patch";default:return"unknown"}}let Yt=!0;const Jt=[],Qt="pinia:mutations",Xt="pinia",{assign:en}=Object,tn=e=>"🍍 "+e;function nn(e,t){kt({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:Jt,app:e},(n=>{"function"!=typeof n.now&&Mt("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."),n.addTimelineLayer({id:Qt,label:"Pinia 🍍",color:15064968}),n.addInspector({id:Xt,label:"Pinia 🍍",icon:"storage",treeFilterPlaceholder:"Search stores",actions:[{icon:"content_copy",action:()=>{!async function(e){if(!Rt())try{await navigator.clipboard.writeText(JSON.stringify(e.state.value)),Mt("Global state copied to clipboard.")}catch(e){if(Gt(e))return;Mt("Failed to serialize the state. Check the console for more details.","error"),Ct.error(e)}}(t)},tooltip:"Serialize and copy the state"},{icon:"content_paste",action:async()=>{await async function(e){if(!Rt())try{$t(e,JSON.parse(await navigator.clipboard.readText())),Mt("Global state pasted from clipboard.")}catch(e){if(Gt(e))return;Mt("Failed to deserialize the state from clipboard. Check the console for more details.","error"),Ct.error(e)}}(t),n.sendInspectorTree(Xt),n.sendInspectorState(Xt)},tooltip:"Replace the state with the content of your clipboard"},{icon:"save",action:()=>{!async function(e){try{Ut(new Blob([JSON.stringify(e.state.value)],{type:"text/plain;charset=utf-8"}),"pinia-state.json")}catch(e){Mt("Failed to export the state as JSON. Check the console for more details.","error"),Ct.error(e)}}(t)},tooltip:"Save the state as a JSON file"},{icon:"folder_open",action:async()=>{await async function(e){try{const t=(It||(It=document.createElement("input"),It.type="file",It.accept=".json"),function(){return new Promise(((e,t)=>{It.onchange=async()=>{const t=It.files;if(!t)return e(null);const n=t.item(0);return e(n?{text:await n.text(),file:n}:null)},It.oncancel=()=>e(null),It.onerror=t,It.click()}))}),n=await t();if(!n)return;const{text:a,file:o}=n;$t(e,JSON.parse(a)),Mt(`Global state imported from "${o.name}".`)}catch(e){Mt("Failed to import the state from JSON. Check the console for more details.","error"),Ct.error(e)}}(t),n.sendInspectorTree(Xt),n.sendInspectorState(Xt)},tooltip:"Import the state from a JSON file"}],nodeActions:[{icon:"restore",tooltip:'Reset the state (with "$reset")',action:e=>{const n=t._s.get(e);n?"function"!=typeof n.$reset?Mt(`Cannot reset "${e}" store because it doesn't have a "$reset" method implemented.`,"warn"):(n.$reset(),Mt(`Store "${e}" reset.`)):Mt(`Cannot reset "${e}" store because it wasn't found.`,"warn")}}]}),n.on.inspectComponent(((e,t)=>{const n=e.componentInstance&&e.componentInstance.proxy;if(n&&n._pStores){const t=e.componentInstance.proxy._pStores;Object.values(t).forEach((t=>{e.instanceData.state.push({type:tn(t.$id),key:"state",editable:!0,value:t._isOptionsAPI?{_custom:{value:(0,m.toRaw)(t.$state),actions:[{icon:"restore",tooltip:"Reset the state of this store",action:()=>t.$reset()}]}}:Object.keys(t.$state).reduce(((e,n)=>(e[n]=t.$state[n],e)),{})}),t._getters&&t._getters.length&&e.instanceData.state.push({type:tn(t.$id),key:"getters",editable:!1,value:t._getters.reduce(((e,n)=>{try{e[n]=t[n]}catch(t){e[n]=t}return e}),{})})}))}})),n.on.getInspectorTree((n=>{if(n.app===e&&n.inspectorId===Xt){let e=[t];e=e.concat(Array.from(t._s.values())),n.rootNodes=(n.filter?e.filter((e=>"$id"in e?e.$id.toLowerCase().includes(n.filter.toLowerCase()):Ht.toLowerCase().includes(n.filter.toLowerCase()))):e).map(Wt)}})),n.on.getInspectorState((n=>{if(n.app===e&&n.inspectorId===Xt){const e=n.nodeId===Vt?t:t._s.get(n.nodeId);if(!e)return;e&&(n.state=function(e){if(Dt(e)){const t=Array.from(e._s.keys()),n=e._s,a={state:t.map((t=>({editable:!0,key:t,value:e.state.value[t]}))),getters:t.filter((e=>n.get(e)._getters)).map((e=>{const t=n.get(e);return{editable:!1,key:e,value:t._getters.reduce(((e,n)=>(e[n]=t[n],e)),{})}}))};return a}const t={state:Object.keys(e.$state).map((t=>({editable:!0,key:t,value:e.$state[t]})))};return e._getters&&e._getters.length&&(t.getters=e._getters.map((t=>({editable:!1,key:t,value:e[t]})))),e._customProperties.size&&(t.customProperties=Array.from(e._customProperties).map((t=>({editable:!0,key:t,value:e[t]})))),t}(e))}})),n.on.editInspectorState(((n,a)=>{if(n.app===e&&n.inspectorId===Xt){const e=n.nodeId===Vt?t:t._s.get(n.nodeId);if(!e)return Mt(`store "${n.nodeId}" not found`,"error");const{path:a}=n;Dt(e)?a.unshift("state"):1===a.length&&e._customProperties.has(a[0])&&!(a[0]in e.$state)||a.unshift("$state"),Yt=!1,n.set(e,a,n.state.value),Yt=!0}})),n.on.editComponentState((e=>{if(e.type.startsWith("🍍")){const n=e.type.replace(/^🍍\s*/,""),a=t._s.get(n);if(!a)return Mt(`store "${n}" not found`,"error");const{path:o}=e;if("state"!==o[0])return Mt(`Invalid path for store "${n}":\n${o}\nOnly state can be modified.`);o[0]="$state",Yt=!1,e.set(a,o,e.state.value),Yt=!0}}))}))}let an,on=0;function rn(e,t,n){const a=t.reduce(((t,n)=>(t[n]=(0,m.toRaw)(e)[n],t)),{});for(const t in a)e[t]=function(){const o=on,r=n?new Proxy(e,{get(...e){return an=o,Reflect.get(...e)},set(...e){return an=o,Reflect.set(...e)}}):e;an=o;const i=a[t].apply(r,arguments);return an=void 0,i}}function sn({app:e,store:t,options:n}){if(t.$id.startsWith("__hot:"))return;t._isOptionsAPI=!!n.state,rn(t,Object.keys(n.actions),t._isOptionsAPI);const a=t._hotUpdate;(0,m.toRaw)(t)._hotUpdate=function(e){a.apply(this,arguments),rn(t,Object.keys(e._hmrPayload.actions),!!t._isOptionsAPI)},function(e,t){Jt.includes(tn(t.$id))||Jt.push(tn(t.$id)),kt({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:Jt,app:e,settings:{logStoreChanges:{label:"Notify about new/deleted stores",type:"boolean",defaultValue:!0}}},(e=>{const n="function"==typeof e.now?e.now.bind(e):Date.now;t.$onAction((({after:a,onError:o,name:r,args:i})=>{const s=on++;e.addTimelineEvent({layerId:Qt,event:{time:n(),title:"🛫 "+r,subtitle:"start",data:{store:qt(t.$id),action:qt(r),args:i},groupId:s}}),a((a=>{an=void 0,e.addTimelineEvent({layerId:Qt,event:{time:n(),title:"🛬 "+r,subtitle:"end",data:{store:qt(t.$id),action:qt(r),args:i,result:a},groupId:s}})})),o((a=>{an=void 0,e.addTimelineEvent({layerId:Qt,event:{time:n(),logType:"error",title:"💥 "+r,subtitle:"end",data:{store:qt(t.$id),action:qt(r),args:i,error:a},groupId:s}})}))}),!0),t._customProperties.forEach((a=>{(0,m.watch)((()=>(0,m.unref)(t[a])),((t,o)=>{e.notifyComponentUpdate(),e.sendInspectorState(Xt),Yt&&e.addTimelineEvent({layerId:Qt,event:{time:n(),title:"Change",subtitle:a,data:{newValue:t,oldValue:o},groupId:an}})}),{deep:!0})})),t.$subscribe((({events:a,type:o},r)=>{if(e.notifyComponentUpdate(),e.sendInspectorState(Xt),!Yt)return;const i={time:n(),title:Kt(o),data:en({store:qt(t.$id)},Zt(a)),groupId:an};o===Tt.patchFunction?i.subtitle="⤵️":o===Tt.patchObject?i.subtitle="🧩":a&&!Array.isArray(a)&&(i.subtitle=a.type),a&&(i.data["rawEvent(s)"]={_custom:{display:"DebuggerEvent",type:"object",tooltip:"raw DebuggerEvent[]",value:a}}),e.addTimelineEvent({layerId:Qt,event:i})}),{detached:!0,flush:"sync"});const a=t._hotUpdate;t._hotUpdate=(0,m.markRaw)((o=>{a(o),e.addTimelineEvent({layerId:Qt,event:{time:n(),title:"🔥 "+t.$id,subtitle:"HMR update",data:{store:qt(t.$id),info:qt("HMR update")}}}),e.notifyComponentUpdate(),e.sendInspectorTree(Xt),e.sendInspectorState(Xt)}));const{$dispose:o}=t;t.$dispose=()=>{o(),e.notifyComponentUpdate(),e.sendInspectorTree(Xt),e.sendInspectorState(Xt),e.getSettings().logStoreChanges&&Mt(`Disposed "${t.$id}" store 🗑`)},e.notifyComponentUpdate(),e.sendInspectorTree(Xt),e.sendInspectorState(Xt),e.getSettings().logStoreChanges&&Mt(`"${t.$id}" store installed 🆕`)}))}(e,t)}const ln=()=>{};function cn(e,t,n,a=ln){e.push(t);const o=()=>{const n=e.indexOf(t);n>-1&&(e.splice(n,1),a())};return!n&&(0,m.getCurrentScope)()&&(0,m.onScopeDispose)(o),o}function un(e,...t){e.slice().forEach((e=>{e(...t)}))}const dn=e=>e();function mn(e,t){e instanceof Map&&t instanceof Map&&t.forEach(((t,n)=>e.set(n,t))),e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const a=t[n],o=e[n];Nt(o)&&Nt(a)&&e.hasOwnProperty(n)&&!(0,m.isRef)(a)&&!(0,m.isReactive)(a)?e[n]=mn(o,a):e[n]=a}return e}const pn=Symbol(),hn=new WeakMap,{assign:gn}=Object;function fn(e,t,n={},a,o,r){let i;const s=gn({actions:{}},n),l={deep:!0};let c,u,d,p=[],h=[];const g=a.state.value[e];r||g||(gt?(0,m.set)(a.state.value,e,{}):a.state.value[e]={});const f=(0,m.ref)({});let v;function y(t){let n;c=u=!1,"function"==typeof t?(t(a.state.value[e]),n={type:Tt.patchFunction,storeId:e,events:d}):(mn(a.state.value[e],t),n={type:Tt.patchObject,payload:t,storeId:e,events:d});const o=v=Symbol();(0,m.nextTick)().then((()=>{v===o&&(c=!0)})),u=!0,un(p,n,a.state.value[e])}const A=r?function(){const{state:e}=n,t=e?e():{};this.$patch((e=>{gn(e,t)}))}:ln;function b(t,n){return function(){Pt(a);const o=Array.from(arguments),r=[],i=[];let s;un(h,{args:o,name:t,store:C,after:function(e){r.push(e)},onError:function(e){i.push(e)}});try{s=n.apply(this&&this.$id===e?this:C,o)}catch(e){throw un(i,e),e}return s instanceof Promise?s.then((e=>(un(r,e),e))).catch((e=>(un(i,e),Promise.reject(e)))):(un(r,s),s)}}const w=(0,m.markRaw)({actions:{},getters:{},state:[],hotState:f}),k={_p:a,$id:e,$onAction:cn.bind(null,h),$patch:y,$reset:A,$subscribe(t,n={}){const o=cn(p,t,n.detached,(()=>r())),r=i.run((()=>(0,m.watch)((()=>a.state.value[e]),(a=>{("sync"===n.flush?u:c)&&t({storeId:e,type:Tt.direct,events:d},a)}),gn({},l,n))));return o},$dispose:function(){i.stop(),p=[],h=[],a._s.delete(e)}};gt&&(k._r=!1);const C=(0,m.reactive)(jt?gn({_hmrPayload:w,_customProperties:(0,m.markRaw)(new Set)},k):k);a._s.set(e,C);const S=a._a&&a._a.runWithContext||dn,P=a._e.run((()=>(i=(0,m.effectScope)(),S((()=>i.run(t))))));for(const t in P){const n=P[t];if((0,m.isRef)(n)&&(N=n,!(0,m.isRef)(N)||!N.effect)||(0,m.isReactive)(n))r||(!g||(x=n,gt?hn.has(x):Nt(x)&&x.hasOwnProperty(pn))||((0,m.isRef)(n)?n.value=g[t]:mn(n,g[t])),gt?(0,m.set)(a.state.value[e],t,n):a.state.value[e][t]=n);else if("function"==typeof n){const e=b(t,n);gt?(0,m.set)(P,t,e):P[t]=e,s.actions[t]=n}}var x,N;if(gt?Object.keys(P).forEach((e=>{(0,m.set)(C,e,P[e])})):(gn(C,P),gn((0,m.toRaw)(C),P)),Object.defineProperty(C,"$state",{get:()=>a.state.value[e],set:e=>{y((t=>{gn(t,e)}))}}),jt){const e={writable:!0,configurable:!0,enumerable:!1};["_p","_hmrPayload","_getters","_customProperties"].forEach((t=>{Object.defineProperty(C,t,gn({value:C[t]},e))}))}return gt&&(C._r=!0),a._p.forEach((e=>{if(jt){const t=i.run((()=>e({store:C,app:a._a,pinia:a,options:s})));Object.keys(t||{}).forEach((e=>C._customProperties.add(e))),gn(C,t)}else gn(C,i.run((()=>e({store:C,app:a._a,pinia:a,options:s}))))})),g&&r&&n.hydrate&&n.hydrate(C.$state,g),c=!0,u=!0,C}function vn(e,t,n){let a,o;const r="function"==typeof t;function i(e,n){const i=!!(0,m.getCurrentInstance)();return(e=e||(i?(0,m.inject)(xt,null):null))&&Pt(e),(e=St)._s.has(a)||(r?fn(a,t,o,e):function(e,t,n,a){const{state:o,actions:r,getters:i}=t,s=n.state.value[e];let l;l=fn(e,(function(){s||(gt?(0,m.set)(n.state.value,e,o?o():{}):n.state.value[e]=o?o():{});const t=(0,m.toRefs)(n.state.value[e]);return gn(t,r,Object.keys(i||{}).reduce(((t,a)=>(t[a]=(0,m.markRaw)((0,m.computed)((()=>{Pt(n);const t=n._s.get(e);if(!gt||t._r)return i[a].call(t,t)}))),t)),{}))}),t,n,0,!0)}(a,o,e)),e._s.get(a)}return"string"==typeof e?(a=e,o=r?n:t):(o=e,a=e.id),i.$id=a,i}var yn=a(42515),An=function(e,t){return et?1:0},bn=function(e,t){var n=e.localeCompare(t);return n?n/Math.abs(n):0},wn=/(^0x[\da-fA-F]+$|^([+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?(?!\.\d+)(?=\D|\s|$))|\d+)/g,kn=/^\s+|\s+$/g,Cn=/\s+/g,Sn=/^[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?$/,Pn=/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[/-]\d{1,4}[/-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,xn=/^0+[1-9]{1}[0-9]*$/,Nn=/[^\x00-\x80]/,Tn=function(e,t){return et?1:0},En=function(e){return e.replace(Cn," ").replace(kn,"")},jn=function(e){if(0!==e.length){var t=Number(e);if(!Number.isNaN(t))return t}},_n=function(e,t,n){if(Sn.test(e)&&(!xn.test(e)||0===t||"."!==n[t-1]))return jn(e)||0},On=function(e,t,n){return{parsedNumber:_n(e,t,n),normalizedString:En(e)}},Ln=function(e){var t=function(e){return e.replace(wn,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0")}(e).map(On);return t},Fn=function(e){return"function"==typeof e},Bn=function(e){return Number.isNaN(e)||e instanceof Number&&Number.isNaN(e.valueOf())},zn=function(e){return null===e},Un=function(e){return!(null===e||"object"!=typeof e||Array.isArray(e)||e instanceof Number||e instanceof String||e instanceof Boolean||e instanceof Date)},Mn=function(e){return"symbol"==typeof e},Dn=function(e){return void 0===e},Rn=function(e){if("string"==typeof e||e instanceof String||("number"==typeof e||e instanceof Number)&&!Bn(e)||"boolean"==typeof e||e instanceof Boolean||e instanceof Date){var t=function(e){return"boolean"==typeof e||e instanceof Boolean?Number(e).toString():"number"==typeof e||e instanceof Number?e.toString():e instanceof Date?e.getTime().toString():"string"==typeof e||e instanceof String?e.toLowerCase().replace(kn,""):""}(e),n=function(e){var t=jn(e);return void 0!==t?t:function(e){try{var t=Date.parse(e);return!Number.isNaN(t)&&Pn.test(e)?t:void 0}catch(e){return}}(e)}(t);return{parsedNumber:n,chunks:Ln(n?""+n:t),value:e}}return{isArray:Array.isArray(e),isFunction:Fn(e),isNaN:Bn(e),isNull:zn(e),isObject:Un(e),isSymbol:Mn(e),isUndefined:Dn(e),value:e}},Gn=function(e){return"function"==typeof e?e:function(t){if(Array.isArray(t)){var n=Number(e);if(Number.isInteger(n))return t[n]}else if(t&&"object"==typeof t){var a=Object.getOwnPropertyDescriptor(t,e);return null==a?void 0:a.value}return t}};function In(e,t,n){if(!e||!Array.isArray(e))return[];var a=function(e){if(!e)return[];var t=Array.isArray(e)?[].concat(e):[e];return t.some((function(e){return"string"!=typeof e&&"number"!=typeof e&&"function"!=typeof e}))?[]:t}(t),o=function(e){if(!e)return[];var t=Array.isArray(e)?[].concat(e):[e];return t.some((function(e){return"asc"!==e&&"desc"!==e&&"function"!=typeof e}))?[]:t}(n);return function(e,t,n){var a=t.length?t.map(Gn):[function(e){return e}],o=e.map((function(e,t){return{index:t,values:a.map((function(t){return t(e)})).map(Rn)}}));return o.sort((function(e,t){return function(e,t,n){for(var a=e.index,o=e.values,r=t.index,i=t.values,s=o.length,l=n.length,c=0;co||a>o?n<=o?-1:1:0}(p.chunks,h.chunks):function(e,t){return(e.chunks?!t.chunks:t.chunks)?e.chunks?-1:1:(e.isNaN?!t.isNaN:t.isNaN)?e.isNaN?-1:1:(e.isSymbol?!t.isSymbol:t.isSymbol)?e.isSymbol?-1:1:(e.isObject?!t.isObject:t.isObject)?e.isObject?-1:1:(e.isArray?!t.isArray:t.isArray)?e.isArray?-1:1:(e.isFunction?!t.isFunction:t.isFunction)?e.isFunction?-1:1:(e.isNull?!t.isNull:t.isNull)?e.isNull?-1:1:0}(p,h));if(m)return m*("desc"===u?-1:1)}}var p,h;return a-r}(e,t,n)})),o.map((function(t){return function(e,t){return e[t]}(e,t.index)}))}(e,a,o)}var $n=a(49109),qn=a(41922),Hn=a(69680),Vn=a.n(Hn),Wn=a(10861),Zn=a.n(Wn),Kn=a(91211),Yn=a.n(Kn),Jn=a(64192),Qn=a.n(Jn),Xn=a(19695),ea={name:"ShareVariantIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ta=(0,G.Z)(ea,(function(){var e=this,t=e._self._c;return t("span",e._b({staticClass:"material-design-icon share-variant-icon",attrs:{"aria-hidden":!e.title,"aria-label":e.title,role:"img"},on:{click:function(t){return e.$emit("click",t)}}},"span",e.$attrs,!1),[t("svg",{staticClass:"material-design-icon__svg",attrs:{fill:e.fillColor,width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{d:"M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z"}},[e.title?t("title",[e._v(e._s(e.title))]):e._e()])])])}),[],!1,null,null,null).exports;function na(e){return na="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},na(e)}function aa(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function oa(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:[];m.default.set(this,"selected",e)},setLastIndex:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;m.default.set(this,"lastSelection",e?this.selected:[]),m.default.set(this,"lastSelectedIndex",e)},reset:function(){m.default.set(this,"selected",[]),m.default.set(this,"lastSelection",[]),m.default.set(this,"lastSelectedIndex",null)}}});function ua(e){return ua="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ua(e)}function da(){da=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ua(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ma(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var pa=(0,i.j)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0}),ha=function(){var e=vn("userconfig",{state:function(){return{userConfig:pa}},actions:{onUpdate:function(e,t){m.default.set(this.userConfig,e,t)},update:function(e,t){return(n=da().mark((function n(){return da().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,d.Z.put((0,l.generateUrl)("/apps/files/api/v1/config/"+e),{value:t});case 2:(0,ue.j8)("files:config:updated",{key:e,value:t});case 3:case"end":return n.stop()}}),n)})),function(){var e=this,t=arguments;return new Promise((function(a,o){var r=n.apply(e,t);function i(e){ma(r,a,o,i,s,"next",e)}function s(e){ma(r,a,o,i,s,"throw",e)}i(void 0)}))})();var n}}}),t=e.apply(void 0,arguments);return t._initialized||((0,ue.Ld)("files:config:updated",(function(e){var n=e.key,a=e.value;t.onUpdate(n,a)})),t._initialized=!0),t};function ga(e){return ga="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ga(e)}function fa(){fa=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ga(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function va(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var ya=(0,i.j)("files","viewConfigs",{}),Aa=function(){var e=vn("viewconfig",{state:function(){return{viewConfig:ya}},getters:{getConfig:function(e){return function(t){return e.viewConfig[t]||{}}}},actions:{onUpdate:function(e,t,n){this.viewConfig[e]||m.default.set(this.viewConfig,e,{}),m.default.set(this.viewConfig[e],t,n)},update:function(e,t,n){return(a=fa().mark((function a(){return fa().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:d.Z.put((0,l.generateUrl)("/apps/files/api/v1/views/".concat(e,"/").concat(t)),{value:n}),(0,ue.j8)("files:viewconfig:updated",{view:e,key:t,value:n});case 2:case"end":return a.stop()}}),a)})),function(){var e=this,t=arguments;return new Promise((function(n,o){var r=a.apply(e,t);function i(e){va(r,n,o,i,s,"next",e)}function s(e){va(r,n,o,i,s,"throw",e)}i(void 0)}))})();var a},setSortingBy:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"basename",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"files";this.update(t,"sorting_mode",e),this.update(t,"sorting_direction","asc")},toggleSortingDirection:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"files",t="asc"===(this.getConfig(e)||{sorting_direction:"asc"}).sorting_direction?"desc":"asc";this.update(e,"sorting_direction",t)}}}),t=e.apply(void 0,arguments);return t._initialized||((0,ue.Ld)("files:viewconfig:updated",(function(e){var n=e.view,a=e.key,o=e.value;t.onUpdate(n,a,o)})),t._initialized=!0),t},ba=a(15764),wa=a(64412),ka=a.n(wa),Ca=a(44706),Sa=a.n(Ca);function Pa(e){return Pa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Pa(e)}function xa(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function Na(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);n=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function co(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var uo={name:"CustomElementRender",props:{source:{type:Object,required:!0},currentView:{type:Object,required:!0},render:{type:Function,required:!0}},watch:{source:function(){this.updateRootElement()},currentView:function(){this.updateRootElement()}},mounted:function(){this.updateRootElement()},methods:{updateRootElement:function(){var e,t=this;return(e=lo().mark((function e(){var n;return lo().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.render(t.source,t.currentView);case 2:(n=e.sent)?t.$el.replaceChildren(n):t.$el.replaceChildren();case 4:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){co(r,a,o,i,s,"next",e)}function s(e){co(r,a,o,i,s,"throw",e)}i(void 0)}))})()}}},mo=uo,po=(0,G.Z)(mo,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports,ho=a(27856),go={name:"CustomSvgIconRender",props:{svg:{type:String,required:!0}},watch:{svg:function(){this.$el.innerHTML=(0,ho.sanitize)(this.svg)}},mounted:function(){this.$el.innerHTML=(0,ho.sanitize)(this.svg)}},fo=a(61959),vo={};vo.styleTagTransform=M(),vo.setAttributes=F(),vo.insert=O().bind(null,"head"),vo.domAPI=j(),vo.insertStyleElement=z(),T()(fo.Z,vo),fo.Z&&fo.Z.locals&&fo.Z.locals;var yo=(0,G.Z)(go,(function(){return(0,this._self._c)("span",{staticClass:"custom-svg-icon"})}),[],!1,null,"93e9b2f4",null).exports,Ao={name:"FavoriteIcon",components:{CustomSvgIconRender:yo},data:function(){return{StarSvg:Oe}},mounted:function(){var e=this.$el.querySelector("svg");e.setAttribute("viewBox","-4 -4 30 30"),e.setAttribute("width","25"),e.setAttribute("height","25")}},bo=a(31547),wo={};wo.styleTagTransform=M(),wo.setAttributes=F(),wo.insert=O().bind(null,"head"),wo.domAPI=j(),wo.insertStyleElement=z(),T()(bo.Z,wo),bo.Z&&bo.Z.locals&&bo.Z.locals;var ko=(0,G.Z)(Ao,(function(){return(0,this._self._c)("CustomSvgIconRender",{staticClass:"favorite-marker-icon",attrs:{svg:this.StarSvg}})}),[],!1,null,"324501a3",null).exports;function Co(e){return Co="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Co(e)}function So(){So=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Co(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Po(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function xo(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){Po(r,a,o,i,s,"next",e)}function s(e){Po(r,a,o,i,s,"throw",e)}i(void 0)}))}}function No(e,t,n){return(t=function(e){var t=function(e,t){if("object"!==Co(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var a=n.call(e,"string");if("object"!==Co(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===Co(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function To(e){return function(e){if(Array.isArray(e))return Eo(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return Eo(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Eo(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Eo(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n0)return Ka;switch(null===(a=this.source)||void 0===a||null===(a=a.attributes)||void 0===a?void 0:a["mount-type"]){case"external":case"external-session":return Wa;case"group":return Da.Z}return null},linkTo:function(){var e;return this.source.attributes.failed?{title:this.t("files","This node is unavailable"),is:"span"}:this.enabledDefaultActions.length>0?{title:this.enabledDefaultActions[0].displayName([this.source],this.currentView),role:"button"}:(null===(e=this.source)||void 0===e?void 0:e.permissions)&de.y3.READ?{download:this.source.basename,href:this.source.source,title:this.t("files","Download file {name}",{name:this.displayName})}:{is:"span"}},selectedFiles:function(){return this.selectionStore.selected},isSelected:function(){return this.selectedFiles.includes(this.fileid)},cropPreviews:function(){return this.userConfig.crop_image_previews},previewUrl:function(){if(this.source.type===de.Tv.Folder)return null;try{var e=this.source.attributes.previewUrl||(0,l.generateUrl)("/core/preview?fileId={fileid}",{fileid:this.source.fileid}),t=new URL(window.location.origin+e);return t.searchParams.set("x","32"),t.searchParams.set("y","32"),t.searchParams.set("mimeFallback","true"),t.searchParams.set("a",!0===this.cropPreviews?"0":"1"),t.href}catch(e){return null}},enabledActions:function(){var e=this;return this.source.attributes.failed?[]:jo.filter((function(t){return!t.enabled||t.enabled([e.source],e.currentView)})).sort((function(e,t){return(e.order||0)-(t.order||0)}))},enabledInlineActions:function(){var e=this;return this.filesListWidth<768?[]:this.enabledActions.filter((function(t){var n;return null==t||null===(n=t.inline)||void 0===n?void 0:n.call(t,e.source,e.currentView)}))},enabledRenderActions:function(){return this.visible?this.enabledActions.filter((function(e){return"function"==typeof e.renderInline})):[]},enabledDefaultActions:function(){return this.enabledActions.filter((function(e){return!(null==e||!e.default)}))},enabledMenuActions:function(){return[].concat(To(this.enabledInlineActions),To(this.enabledActions.filter((function(e){return e.default!==de.DT.HIDDEN&&"function"!=typeof e.renderInline})))).filter((function(e,t,n){return t===n.findIndex((function(t){return t.id===e.id}))}))},openedMenu:{get:function(){return this.actionsMenuStore.opened===this.uniqueId},set:function(e){this.actionsMenuStore.opened=e?this.uniqueId:null}},uniqueId:function(){return oo(this.source.source)},isFavorite:function(){return 1===this.source.attributes.favorite},renameLabel:function(){var e;return(No(e={},de.Tv.File,t("files","File name")),No(e,de.Tv.Folder,t("files","Folder name")),e)[this.source.type]},isRenaming:function(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen:function(){return this.isRenaming&&this.filesListWidth<512},newName:{get:function(){return this.renamingStore.newName},set:function(e){this.renamingStore.newName=e}},isActive:function(){var e,t;return this.fileid===(null===(e=this.currentFileId)||void 0===e||null===(t=e.toString)||void 0===t?void 0:t.call(e))}},watch:{source:function(){this.resetState(),this.debounceIfNotCached()},isRenaming:function(e){e&&this.startRenaming()}},mounted:function(){this.debounceGetPreview=(0,Ba.debounce)((function(){this.fetchAndApplyPreview()}),150,!1),this.debounceIfNotCached()},beforeDestroy:function(){this.resetState()},methods:{debounceIfNotCached:function(){var e=this;return xo(So().mark((function t(){return So().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.previewUrl){t.next=2;break}return t.abrupt("return");case 2:return t.next=4,ro(e.previewUrl);case 4:if(!t.sent){t.next=9;break}return e.backgroundImage="url(".concat(e.previewUrl,")"),e.backgroundFailed=!1,t.abrupt("return");case 9:e.debounceGetPreview();case 10:case"end":return t.stop()}}),t)})))()},fetchAndApplyPreview:function(){var e=this;this.previewUrl&&(this.previewPromise&&this.clearImg(),this.previewPromise=new Fa.CancelablePromise((function(t,n,a){var o=new Image;o.fetchpriority=e.visible?"high":"auto",o.onload=function(){e.backgroundImage="url(".concat(e.previewUrl,")"),e.backgroundFailed=!1,t(o)},o.onerror=function(){e.backgroundFailed=!0,n(o)},o.src=e.previewUrl,a((function(){o.onerror=null,o.onload=null,o.src=""}))})))},resetState:function(){this.loading="",this.clearImg(),this.openedMenu=!1},clearImg:function(){this.backgroundImage="",this.backgroundFailed=!1,this.previewPromise&&(this.previewPromise.cancel(),this.previewPromise=null)},onActionClick:function(e){var t=this;return xo(So().mark((function n(){var a,o;return So().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return a=e.displayName([t.source],t.currentView),n.prev=1,t.loading=e.id,m.default.set(t.source,"_loading",!0),n.next=6,e.exec(t.source,t.currentView,t.currentDir);case 6:if(null!==(o=n.sent)){n.next=9;break}return n.abrupt("return");case 9:if(!o){n.next=12;break}return(0,h.s$)(t.t("files",'"{displayName}" action executed successfully',{displayName:a})),n.abrupt("return");case 12:(0,h.x2)(t.t("files",'"{displayName}" action failed',{displayName:a})),n.next=19;break;case 15:n.prev=15,n.t0=n.catch(1),me.error("Error while executing action",{action:e,e:n.t0}),(0,h.x2)(t.t("files",'"{displayName}" action failed',{displayName:a}));case 19:return n.prev=19,t.loading="",m.default.set(t.source,"_loading",!1),n.finish(19);case 23:case"end":return n.stop()}}),n,null,[[1,15,19,23]])})))()},execDefaultAction:function(e){this.enabledDefaultActions.length>0&&(e.preventDefault(),e.stopPropagation(),this.enabledDefaultActions[0].exec(this.source,this.currentView,this.currentDir))},openDetailsIfAvailable:function(e){var t;e.preventDefault(),e.stopPropagation(),null!=nt&&null!==(t=nt.enabled)&&void 0!==t&&t.call(nt,[this.source],this.currentView)&&nt.exec(this.source,this.currentView,this.currentDir)},onSelectionChange:function(e){var t,n=this,a=this.index,o=this.selectionStore.lastSelectedIndex;if(null!==(t=this.keyboardStore)&&void 0!==t&&t.shiftKey&&null!==o){var r=this.selectedFiles.includes(this.fileid),i=Math.min(a,o),s=Math.max(o,a),l=this.selectionStore.lastSelection,c=this.nodes.map((function(e){var t,n;return null===(t=e.fileid)||void 0===t||null===(n=t.toString)||void 0===n?void 0:n.call(t)})).slice(i,s+1),u=[].concat(To(l),To(c)).filter((function(e){return!r||e!==n.fileid}));return me.debug("Shift key pressed, selecting all files in between",{start:i,end:s,filesToSelect:c,isAlreadySelected:r}),void this.selectionStore.set(u)}me.debug("Updating selection",{selection:e}),this.selectionStore.set(e),this.selectionStore.setLastIndex(a)},onRightClick:function(e){if(!this.openedMenu){var t=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&t?"global":this.uniqueId,e.preventDefault(),e.stopPropagation()}},checkInputValidity:function(e){var t,n,a=e.target,o=(null===(t=(n=this.newName).trim)||void 0===t?void 0:t.call(n))||"";me.debug("Checking input validity",{newName:o});try{this.isFileNameValid(o),a.setCustomValidity(""),a.title=""}catch(e){a.setCustomValidity(e.message),a.title=e.message}finally{a.reportValidity()}},isFileNameValid:function(e){var t=e.trim();if("."===t||".."===t)throw new Error(this.t("files",'"{name}" is an invalid file name.',{name:e}));if(0===t.length)throw new Error(this.t("files","File name cannot be empty."));if(-1!==t.indexOf("/"))throw new Error(this.t("files",'"/" is not allowed inside a file name.'));if(t.match(OC.config.blacklist_files_regex))throw new Error(this.t("files",'"{name}" is not an allowed filetype.',{name:e}));if(this.checkIfNodeExists(e))throw new Error(this.t("files","{newName} already exists.",{newName:e}));return!0},checkIfNodeExists:function(e){var t=this;return this.nodes.find((function(n){return n.basename===e&&n!==t.source}))},startRenaming:function(){var e=this;this.$nextTick((function(){var t,n=(e.source.extension||"").split("").length,a=e.source.basename.split("").length-n,o=null===(t=e.$refs.renameInput)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.inputField)||void 0===t||null===(t=t.$refs)||void 0===t?void 0:t.input;o?(o.setSelectionRange(0,a),o.focus(),o.dispatchEvent(new Event("keyup"))):me.error("Could not find the rename input")}))},stopRenaming:function(){this.isRenaming&&this.renamingStore.$reset()},onRename:function(){var e=this;return xo(So().mark((function t(){var n,a,o,r,i,s,l;return So().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(o=e.source.basename,r=e.source.source,""!==(i=(null===(n=(a=e.newName).trim)||void 0===n?void 0:n.call(a))||"")){t.next=6;break}return(0,h.x2)(e.t("files","Name cannot be empty")),t.abrupt("return");case 6:if(o!==i){t.next=9;break}return e.stopRenaming(),t.abrupt("return");case 9:if(!e.checkIfNodeExists(i)){t.next=12;break}return(0,h.x2)(e.t("files","Another entry with the same name already exists")),t.abrupt("return");case 12:return e.loading="renaming",m.default.set(e.source,"_loading",!0),e.source.rename(i),t.prev=15,t.next=18,(0,d.Z)({method:"MOVE",url:r,headers:{Destination:encodeURI(e.source.source)}});case 18:(0,ue.j8)("files:node:updated",e.source),(0,ue.j8)("files:node:renamed",e.source),(0,h.s$)(e.t("files",'Renamed "{oldName}" to "{newName}"',{oldName:o,newName:i})),e.stopRenaming(),e.$nextTick((function(){e.$refs.basename.focus()})),t.next=39;break;case 25:if(t.prev=25,t.t0=t.catch(15),me.error("Error while renaming file",{error:t.t0}),e.source.rename(o),e.$refs.renameInput.focus(),404!==(null===t.t0||void 0===t.t0||null===(s=t.t0.response)||void 0===s?void 0:s.status)){t.next=35;break}return(0,h.x2)(e.t("files",'Could not rename "{oldName}", it does not exist any more',{oldName:o})),t.abrupt("return");case 35:if(412!==(null===t.t0||void 0===t.t0||null===(l=t.t0.response)||void 0===l?void 0:l.status)){t.next=38;break}return(0,h.x2)(e.t("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:e.currentDir})),t.abrupt("return");case 38:(0,h.x2)(e.t("files",'Could not rename "{oldName}"',{oldName:o}));case 39:return t.prev=39,e.loading=!1,m.default.set(e.source,"_loading",!1),t.finish(39);case 43:case"end":return t.stop()}}),t,null,[[15,25,39,43]])})))()},getBoundariesElement:function(){return document.querySelector(".app-content > .files-list")},t:s.Iu,formatFileSize:de.sS}}),Oo=_o,Lo=a(33034),Fo={};Fo.styleTagTransform=M(),Fo.setAttributes=F(),Fo.insert=O().bind(null,"head"),Fo.domAPI=j(),Fo.insertStyleElement=z(),T()(Lo.Z,Fo),Lo.Z&&Lo.Z.locals&&Lo.Z.locals;var Bo=a(14604),zo={};zo.styleTagTransform=M(),zo.setAttributes=F(),zo.insert=O().bind(null,"head"),zo.domAPI=j(),zo.insertStyleElement=z(),T()(Bo.Z,zo),Bo.Z&&Bo.Z.locals&&Bo.Z.locals;var Uo=(0,G.Z)(Oo,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("tr",{staticClass:"files-list__row",class:{"files-list__row--visible":e.visible,"files-list__row--active":e.isActive},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":e.fileid,"data-cy-files-list-row-name":e.source.basename},on:{contextmenu:e.onRightClick}},[e.source.attributes.failed?t("span",{staticClass:"files-list__row--failed"}):e._e(),e._v(" "),t("td",{staticClass:"files-list__row-checkbox"},[e.visible?t("NcCheckboxRadioSwitch",{attrs:{"aria-label":e.t("files","Select the row for {displayName}",{displayName:e.displayName}),checked:e.selectedFiles,value:e.fileid,name:"selectedFiles"},on:{"update:checked":e.onSelectionChange}}):e._e()],1),e._v(" "),t("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[t("span",{staticClass:"files-list__row-icon",on:{click:e.execDefaultAction}},["folder"===e.source.type?[t("FolderIcon"),e._v(" "),e.folderOverlay?t(e.folderOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay"}):e._e()]:e.previewUrl&&!e.backgroundFailed?t("span",{ref:"previewImg",staticClass:"files-list__row-icon-preview",style:{backgroundImage:e.backgroundImage}}):t("FileIcon"),e._v(" "),e.isFavorite?t("span",{staticClass:"files-list__row-icon-favorite",attrs:{"aria-label":e.t("files","Favorite")}},[t("FavoriteIcon",{attrs:{"aria-hidden":!0}})],1):e._e()],2),e._v(" "),t("form",{directives:[{name:"show",rawName:"v-show",value:e.isRenaming,expression:"isRenaming"},{name:"on-click-outside",rawName:"v-on-click-outside",value:e.stopRenaming,expression:"stopRenaming"}],staticClass:"files-list__row-rename",attrs:{"aria-hidden":!e.isRenaming,"aria-label":e.t("files","Rename file")},on:{submit:function(t){return t.preventDefault(),t.stopPropagation(),e.onRename.apply(null,arguments)}}},[t("NcTextField",{ref:"renameInput",attrs:{label:e.renameLabel,autofocus:!0,minlength:1,required:!0,value:e.newName,enterkeyhint:"done"},on:{"update:value":function(t){e.newName=t},keyup:[e.checkInputValidity,function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:e.stopRenaming.apply(null,arguments)}]}})],1),e._v(" "),t("a",e._b({directives:[{name:"show",rawName:"v-show",value:!e.isRenaming,expression:"!isRenaming"}],ref:"basename",staticClass:"files-list__row-name-link",attrs:{"aria-hidden":e.isRenaming,"data-cy-files-list-row-name-link":""},on:{click:e.execDefaultAction}},"a",e.linkTo,!1),[t("span",{staticClass:"files-list__row-name-text"},[t("span",{staticClass:"files-list__row-name-",domProps:{textContent:e._s(e.displayName)}}),e._v(" "),t("span",{staticClass:"files-list__row-name-ext",domProps:{textContent:e._s(e.extension)}})])])]),e._v(" "),t("td",{directives:[{name:"show",rawName:"v-show",value:!e.isRenamingSmallScreen,expression:"!isRenamingSmallScreen"}],staticClass:"files-list__row-actions",class:"files-list__row-actions-".concat(e.uniqueId),attrs:{"data-cy-files-list-row-actions":""}},[e._l(e.enabledRenderActions,(function(n){return t("CustomElementRender",{key:n.id,attrs:{"current-view":e.currentView,render:n.renderInline,source:e.source}})})),e._v(" "),e.visible?t("NcActions",{ref:"actionsMenu",attrs:{"boundaries-element":e.getBoundariesElement(),container:e.getBoundariesElement(),disabled:e.source._loading,"force-menu":0===e.enabledInlineActions.length,inline:e.enabledInlineActions.length,open:e.openedMenu},on:{"update:open":function(t){e.openedMenu=t}}},e._l(e.enabledMenuActions,(function(n){return t("NcActionButton",{key:n.id,class:"files-list__row-action-"+n.id,attrs:{"close-after-click":!0,"data-cy-files-list-row-action":n.id},on:{click:function(t){return e.onActionClick(n)}},scopedSlots:e._u([{key:"icon",fn:function(){return[e.loading===n.id?t("NcLoadingIcon",{attrs:{size:18}}):t("CustomSvgIconRender",{attrs:{svg:n.iconSvgInline([e.source],e.currentView)}})]},proxy:!0}],null,!0)},[e._v("\n\t\t\t\t"+e._s(n.displayName([e.source],e.currentView))+"\n\t\t\t")])})),1):e._e()],2),e._v(" "),e.isSizeAvailable?t("td",{staticClass:"files-list__row-size",style:{opacity:e.sizeOpacity},attrs:{"data-cy-files-list-row-size":""},on:{click:e.openDetailsIfAvailable}},[t("span",[e._v(e._s(e.size))])]):e._e(),e._v(" "),e.isMtimeAvailable?t("td",{staticClass:"files-list__row-mtime",attrs:{"data-cy-files-list-row-mtime":""},on:{click:e.openDetailsIfAvailable}},[t("span",[e._v(e._s(e.mtime))])]):e._e(),e._v(" "),e._l(e.columns,(function(n){var a;return t("td",{key:n.id,staticClass:"files-list__row-column-custom",class:"files-list__row-".concat(null===(a=e.currentView)||void 0===a?void 0:a.id,"-").concat(n.id),attrs:{"data-cy-files-list-row-column-custom":n.id},on:{click:e.openDetailsIfAvailable}},[e.visible?t("CustomElementRender",{attrs:{"current-view":e.currentView,render:n.render,source:e.source}}):e._e()],1)}))],2)}),[],!1,null,"10164d76",null),Mo=Uo.exports,Do=a(25108),Ro={name:"FilesListHeader",props:{header:{type:Object,required:!0},currentFolder:{type:Object,required:!0},currentView:{type:Object,required:!0}},computed:{enabled:function(){return this.header.enabled(this.currentFolder,this.currentView)}},watch:{enabled:function(e){e&&this.header.updated(this.currentFolder,this.currentView)},currentFolder:function(){this.header.updated(this.currentFolder,this.currentView)}},mounted:function(){Do.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},Go=(0,G.Z)(Ro,(function(){var e=this,t=e._self._c;return t("div",{directives:[{name:"show",rawName:"v-show",value:e.enabled,expression:"enabled"}],class:"files-list__header-".concat(e.header.id)},[t("span",{ref:"mount"})])}),[],!1,null,null,null).exports;function Io(e){return Io="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Io(e)}var $o=m.default.extend({name:"FilesListTableFooter",components:{},props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},summary:{type:String,default:""},filesListWidth:{type:Number,default:0}},setup:function(){var e=la();return{filesStore:sa(),pathsStore:e}},computed:{currentView:function(){return this.$navigation.active},dir:function(){var e;return((null===(e=this.$route)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)||"/").replace(/^(.+)\/$/,"$1")},currentFolder:function(){var e;if(null!==(e=this.currentView)&&void 0!==e&&e.id){if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);var t=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(t)}},columns:function(){var e;return this.filesListWidth<512?[]:(null===(e=this.currentView)||void 0===e?void 0:e.columns)||[]},totalSize:function(){var e;return null!==(e=this.currentFolder)&&void 0!==e&&e.size?(0,de.sS)(this.currentFolder.size,!0):(0,de.sS)(this.nodes.reduce((function(e,t){return e+t.size||0}),0),!0)}},methods:{classForColumn:function(e){return t={"files-list__row-column-custom":!0},n="files-list__row-".concat(this.currentView.id,"-").concat(e.id),a=!0,(n=function(e){var t=function(e,t){if("object"!==Io(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var a=n.call(e,"string");if("object"!==Io(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===Io(t)?t:String(t)}(n))in t?Object.defineProperty(t,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[n]=a,t;var t,n,a},t:s.Iu}}),qo=a(20771),Ho={};Ho.styleTagTransform=M(),Ho.setAttributes=F(),Ho.insert=O().bind(null,"head"),Ho.domAPI=j(),Ho.insertStyleElement=z(),T()(qo.Z,Ho),qo.Z&&qo.Z.locals&&qo.Z.locals;var Vo=(0,G.Z)($o,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("tr",[t("th",{staticClass:"files-list__row-checkbox"},[t("span",{staticClass:"hidden-visually"},[e._v(e._s(e.t("files","Total rows summary")))])]),e._v(" "),t("td",{staticClass:"files-list__row-name"},[t("span",{staticClass:"files-list__row-icon"}),e._v(" "),t("span",[e._v(e._s(e.summary))])]),e._v(" "),t("td",{staticClass:"files-list__row-actions"}),e._v(" "),e.isSizeAvailable?t("td",{staticClass:"files-list__column files-list__row-size"},[t("span",[e._v(e._s(e.totalSize))])]):e._e(),e._v(" "),e.isMtimeAvailable?t("td",{staticClass:"files-list__column files-list__row-mtime"}):e._e(),e._v(" "),e._l(e.columns,(function(n){var a;return t("th",{key:n.id,class:e.classForColumn(n)},[t("span",[e._v(e._s(null===(a=n.summary)||void 0===a?void 0:a.call(n,e.nodes,e.currentView)))])])}))],2)}),[],!1,null,"5d5c2897",null).exports,Wo=m.default.extend({data:function(){return{filesListWidth:null}},created:function(){var e=this,t=document.querySelector("#app-content-vue");this.$resizeObserver=new ResizeObserver((function(n){n.length>0&&n[0].target===t&&(e.filesListWidth=n[0].contentRect.width)})),this.$resizeObserver.observe(t)},beforeDestroy:function(){this.$resizeObserver.disconnect()}});function Zo(e){return Zo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Zo(e)}function Ko(){Ko=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Zo(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Yo(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var Jo=(0,de.Vn)(),Qo=m.default.extend({name:"FilesListTableHeaderActions",components:{CustomSvgIconRender:yo,NcActions:Xa(),NcActionButton:Ja(),NcLoadingIcon:Qn()},mixins:[Wo],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:function(){return[]}}},setup:function(){return{actionsMenuStore:io(),filesStore:sa(),selectionStore:ca()}},data:function(){return{loading:null}},computed:{dir:function(){var e;return((null===(e=this.$route)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)||"/").replace(/^(.+)\/$/,"$1")},enabledActions:function(){var e=this;return Jo.filter((function(e){return e.execBatch})).filter((function(t){return!t.enabled||t.enabled(e.nodes,e.currentView)})).sort((function(e,t){return(e.order||0)-(t.order||0)}))},nodes:function(){var e=this;return this.selectedNodes.map((function(t){return e.getNode(t)})).filter((function(e){return e}))},areSomeNodesLoading:function(){return this.nodes.some((function(e){return e._loading}))},openedMenu:{get:function(){return"global"===this.actionsMenuStore.opened},set:function(e){this.actionsMenuStore.opened=e?"global":null}},inlineActions:function(){return this.filesListWidth<512?0:this.filesListWidth<768?1:this.filesListWidth<1024?2:3}},methods:{getNode:function(e){return this.filesStore.getNode(e)},onActionClick:function(e){var t,n=this;return(t=Ko().mark((function t(){var a,o,r,i;return Ko().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return a=e.displayName(n.nodes,n.currentView),o=n.selectedNodes,t.prev=2,n.loading=e.id,n.nodes.forEach((function(e){m.default.set(e,"_loading",!0)})),t.next=7,e.execBatch(n.nodes,n.currentView,n.dir);case 7:if((r=t.sent).some((function(e){return null!==e}))){t.next=11;break}return n.selectionStore.reset(),t.abrupt("return");case 11:if(!r.some((function(e){return!1===e}))){t.next=16;break}return i=o.filter((function(e,t){return!1===r[t]})),n.selectionStore.set(i),(0,h.x2)(n.t("files",'"{displayName}" failed on some elements ',{displayName:a})),t.abrupt("return");case 16:(0,h.s$)(n.t("files",'"{displayName}" batch action executed successfully',{displayName:a})),n.selectionStore.reset(),t.next=24;break;case 20:t.prev=20,t.t0=t.catch(2),me.error("Error while executing action",{action:e,e:t.t0}),(0,h.x2)(n.t("files",'"{displayName}" action failed',{displayName:a}));case 24:return t.prev=24,n.loading=null,n.nodes.forEach((function(e){m.default.set(e,"_loading",!1)})),t.finish(24);case 28:case"end":return t.stop()}}),t,null,[[2,20,24,28]])})),function(){var e=this,n=arguments;return new Promise((function(a,o){var r=t.apply(e,n);function i(e){Yo(r,a,o,i,s,"next",e)}function s(e){Yo(r,a,o,i,s,"throw",e)}i(void 0)}))})()},t:s.Iu}}),Xo=Qo,er=a(70225),tr={};tr.styleTagTransform=M(),tr.setAttributes=F(),tr.insert=O().bind(null,"head"),tr.domAPI=j(),tr.insertStyleElement=z(),T()(er.Z,tr),er.Z&&er.Z.locals&&er.Z.locals;var nr=(0,G.Z)(Xo,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("th",{staticClass:"files-list__column files-list__row-actions-batch",attrs:{colspan:"2"}},[t("NcActions",{ref:"actionsMenu",attrs:{disabled:!!e.loading||e.areSomeNodesLoading,"force-name":!0,inline:e.inlineActions,"menu-name":e.inlineActions<=1?e.t("files","Actions"):null,open:e.openedMenu},on:{"update:open":function(t){e.openedMenu=t}}},e._l(e.enabledActions,(function(n){return t("NcActionButton",{key:n.id,class:"files-list__row-actions-batch-"+n.id,on:{click:function(t){return e.onActionClick(n)}},scopedSlots:e._u([{key:"icon",fn:function(){return[e.loading===n.id?t("NcLoadingIcon",{attrs:{size:18}}):t("CustomSvgIconRender",{attrs:{svg:n.iconSvgInline(e.nodes,e.currentView)}})]},proxy:!0}],null,!0)},[e._v("\n\t\t\t"+e._s(n.displayName(e.nodes,e.currentView))+"\n\t\t")])})),1)],1)}),[],!1,null,"0d9363a1",null),ar=nr.exports,or=a(20404),rr=a(23873);function ir(e){return ir="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ir(e)}function sr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function lr(e){for(var t=1;t(e[t]=function(){return ur(this.$pinia)[t]},e)),{}):Object.keys(dr).reduce(((e,t)=>(e[t]=function(){const e=ur(this.$pinia),n=dr[t];return"function"==typeof n?n.call(this,e):e[n]},e)),{}))),{},{currentView:function(){return this.$navigation.active},sortingMode:function(){var e,t;return(null===(e=this.getConfig(this.currentView.id))||void 0===e?void 0:e.sorting_mode)||(null===(t=this.currentView)||void 0===t?void 0:t.defaultSortKey)||"basename"},isAscSorting:function(){var e;return"asc"===(null===(e=this.getConfig(this.currentView.id))||void 0===e?void 0:e.sorting_direction)}}),methods:{toggleSortBy:function(e){this.sortingMode!==e?this.setSortingBy(e,this.currentView.id):this.toggleSortingDirection(this.currentView.id)}}}),pr=m.default.extend({name:"FilesListTableHeaderButton",components:{MenuDown:or.Z,MenuUp:rr.Z,NcButton:Zn()},mixins:[mr],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{sortAriaLabel:function(e){var t=this.isAscSorting?this.t("files","ascending"):this.t("files","descending");return this.t("files","Sort list by {column} ({direction})",{column:e,direction:t})},t:s.Iu}}),hr=a(97781),gr={};gr.styleTagTransform=M(),gr.setAttributes=F(),gr.insert=O().bind(null,"head"),gr.domAPI=j(),gr.insertStyleElement=z(),T()(hr.Z,gr),hr.Z&&hr.Z.locals&&hr.Z.locals;var fr=(0,G.Z)(pr,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("NcButton",{staticClass:"files-list__column-sort-button",class:{"files-list__column-sort-button--active":e.sortingMode===e.mode},attrs:{"aria-label":e.sortAriaLabel(e.name),type:"tertiary"},on:{click:function(t){return t.stopPropagation(),t.preventDefault(),e.toggleSortBy(e.mode)}}},[e.sortingMode!==e.mode||e.isAscSorting?t("MenuUp",{attrs:{slot:"icon"},slot:"icon"}):t("MenuDown",{attrs:{slot:"icon"},slot:"icon"}),e._v("\n\t"+e._s(e.name)+"\n")],1)}),[],!1,null,null,null).exports;function vr(e){return vr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},vr(e)}var yr=m.default.extend({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:fr,NcCheckboxRadioSwitch:to(),FilesListTableHeaderActions:ar},mixins:[mr],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup:function(){return{filesStore:sa(),selectionStore:ca()}},computed:{currentView:function(){return this.$navigation.active},columns:function(){var e;return this.filesListWidth<512?[]:(null===(e=this.currentView)||void 0===e?void 0:e.columns)||[]},dir:function(){var e;return((null===(e=this.$route)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)||"/").replace(/^(.+)\/$/,"$1")},selectAllBind:function(){var e=this.isNoneSelected||this.isSomeSelected?this.t("files","Select all"):this.t("files","Unselect all");return{"aria-label":e,checked:this.isAllSelected,indeterminate:this.isSomeSelected,title:e}},selectedNodes:function(){return this.selectionStore.selected},isAllSelected:function(){return this.selectedNodes.length===this.nodes.length},isNoneSelected:function(){return 0===this.selectedNodes.length},isSomeSelected:function(){return!this.isAllSelected&&!this.isNoneSelected}},methods:{classForColumn:function(e){return t={"files-list__column":!0,"files-list__column--sortable":!!e.sort,"files-list__row-column-custom":!0},n="files-list__row-".concat(this.currentView.id,"-").concat(e.id),a=!0,(n=function(e){var t=function(e,t){if("object"!==vr(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var a=n.call(e,"string");if("object"!==vr(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===vr(t)?t:String(t)}(n))in t?Object.defineProperty(t,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[n]=a,t;var t,n,a},onToggleAll:function(e){if(e){var t=this.nodes.map((function(e){return e.fileid.toString()}));me.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else me.debug("Cleared selection"),this.selectionStore.reset()},t:s.Iu}}),Ar=a(41049),br={};br.styleTagTransform=M(),br.setAttributes=F(),br.insert=O().bind(null,"head"),br.domAPI=j(),br.insertStyleElement=z(),T()(Ar.Z,br),Ar.Z&&Ar.Z.locals&&Ar.Z.locals;var wr=(0,G.Z)(yr,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("tr",{staticClass:"files-list__row-head"},[t("th",{staticClass:"files-list__column files-list__row-checkbox"},[t("NcCheckboxRadioSwitch",e._b({on:{"update:checked":e.onToggleAll}},"NcCheckboxRadioSwitch",e.selectAllBind,!1))],1),e._v(" "),e.isNoneSelected?[t("th",{staticClass:"files-list__column files-list__row-name files-list__column--sortable",on:{click:function(t){return t.stopPropagation(),t.preventDefault(),e.toggleSortBy("basename")}}},[t("span",{staticClass:"files-list__row-icon"}),e._v(" "),t("FilesListTableHeaderButton",{attrs:{name:e.t("files","Name"),mode:"basename"}})],1),e._v(" "),t("th",{staticClass:"files-list__row-actions"}),e._v(" "),e.isSizeAvailable?t("th",{staticClass:"files-list__column files-list__row-size",class:{"files-list__column--sortable":e.isSizeAvailable}},[t("FilesListTableHeaderButton",{attrs:{name:e.t("files","Size"),mode:"size"}})],1):e._e(),e._v(" "),e.isMtimeAvailable?t("th",{staticClass:"files-list__column files-list__row-mtime",class:{"files-list__column--sortable":e.isMtimeAvailable}},[t("FilesListTableHeaderButton",{attrs:{name:e.t("files","Modified"),mode:"mtime"}})],1):e._e(),e._v(" "),e._l(e.columns,(function(n){return t("th",{key:n.id,class:e.classForColumn(n)},[n.sort?t("FilesListTableHeaderButton",{attrs:{name:n.title,mode:n.id}}):t("span",[e._v("\n\t\t\t\t"+e._s(n.title)+"\n\t\t\t")])],1)}))]:t("FilesListTableHeaderActions",{attrs:{"current-view":e.currentView,"selected-nodes":e.selectedNodes}})],2)}),[],!1,null,"50439046",null).exports,kr=m.default.extend({name:"VirtualList",props:{dataComponent:{type:[Object,Function],required:!0},dataKey:{type:String,required:!0},dataSources:{type:Array,required:!0},itemHeight:{type:Number,required:!0},extraProps:{type:Object,default:function(){return{}}},scrollToIndex:{type:Number,default:0}},data:function(){return{bufferItems:3,index:this.scrollToIndex,beforeHeight:0,headerHeight:0,tableHeight:0,resizeObserver:null}},computed:{isReady:function(){return this.tableHeight>0},startIndex:function(){return Math.max(0,this.index-3)},shownItems:function(){return Math.ceil((this.tableHeight-this.headerHeight)/this.itemHeight)+6},renderedItems:function(){return this.isReady?this.dataSources.slice(this.startIndex,this.startIndex+this.shownItems):[]},tbodyStyle:function(){var e=this.startIndex+this.shownItems>this.dataSources.length,t=this.dataSources.length-this.startIndex-this.shownItems,n=Math.min(this.dataSources.length-this.startIndex,t);return{paddingTop:"".concat(this.startIndex*this.itemHeight,"px"),paddingBottom:e?0:"".concat(n*this.itemHeight,"px")}}},watch:{scrollToIndex:function(){this.index=this.scrollToIndex,this.$el.scrollTop=this.index*this.itemHeight+this.beforeHeight}},mounted:function(){var e,t,n,a=this,o=null===(e=this.$refs)||void 0===e?void 0:e.before,r=this.$el,i=null===(t=this.$refs)||void 0===t?void 0:t.tfoot,s=null===(n=this.$refs)||void 0===n?void 0:n.thead;this.resizeObserver=new ResizeObserver((0,Ba.debounce)((function(){var e,t,n;a.beforeHeight=null!==(e=null==o?void 0:o.clientHeight)&&void 0!==e?e:0,a.headerHeight=null!==(t=null==s?void 0:s.clientHeight)&&void 0!==t?t:0,a.tableHeight=null!==(n=null==r?void 0:r.clientHeight)&&void 0!==n?n:0,me.debug("VirtualList resizeObserver updated"),a.onScroll()}),100,!1)),this.resizeObserver.observe(o),this.resizeObserver.observe(r),this.resizeObserver.observe(i),this.resizeObserver.observe(s),this.$el.addEventListener("scroll",this.onScroll),this.scrollToIndex&&(this.$el.scrollTop=this.index*this.itemHeight+this.beforeHeight)},beforeDestroy:function(){this.resizeObserver&&this.resizeObserver.disconnect()},methods:{onScroll:function(){this.index=Math.max(0,Math.round((this.$el.scrollTop-this.beforeHeight)/this.itemHeight))}}}),Cr=(0,G.Z)(kr,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("table",{staticClass:"files-list",attrs:{"data-cy-files-list":""}},[t("div",{ref:"before",staticClass:"files-list__before"},[e._t("before")],2),e._v(" "),t("thead",{ref:"thead",staticClass:"files-list__thead",attrs:{"data-cy-files-list-thead":""}},[e._t("header")],2),e._v(" "),t("tbody",{staticClass:"files-list__tbody",style:e.tbodyStyle,attrs:{"data-cy-files-list-tbody":""}},e._l(e.renderedItems,(function(n,a){return t(e.dataComponent,e._b({key:a,tag:"component",attrs:{visible:(a>=e.bufferItems||e.index<=e.bufferItems)&&ae.length)&&(t=e.length);for(var n=0,a=new Array(t);n1024){var n,a=this.nodes.find((function(t){return t.fileid===e.fileId}));a&&null!=nt&&null!==(n=nt.enabled)&&void 0!==n&&n.call(nt,[a],this.currentView)&&(me.debug("Opening sidebar on file "+a.path,{node:a}),nt.exec(a,this.currentView,this.currentFolder.path))}},methods:{getFileId:function(e){return e.fileid},t:s.Iu}}),xr=a(8362),Nr={};Nr.styleTagTransform=M(),Nr.setAttributes=F(),Nr.insert=O().bind(null,"head"),Nr.domAPI=j(),Nr.insertStyleElement=z(),T()(xr.Z,Nr),xr.Z&&xr.Z.locals&&xr.Z.locals;var Tr,Er=(0,G.Z)(Pr,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("VirtualList",{attrs:{"data-component":e.FileEntry,"data-key":"source","data-sources":e.nodes,"item-height":56,"extra-props":{isMtimeAvailable:e.isMtimeAvailable,isSizeAvailable:e.isSizeAvailable,nodes:e.nodes,filesListWidth:e.filesListWidth},"scroll-to-index":e.scrollToIndex},scopedSlots:e._u([{key:"before",fn:function(){return[t("caption",{staticClass:"hidden-visually"},[e._v("\n\t\t\t"+e._s(e.currentView.caption||e.t("files","List of files and folders."))+"\n\t\t\t"+e._s(e.t("files","This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list."))+"\n\t\t")]),e._v(" "),e._l(e.sortedHeaders,(function(n){return t("FilesListHeader",{key:n.id,attrs:{"current-folder":e.currentFolder,"current-view":e.currentView,header:n}})}))]},proxy:!0},{key:"header",fn:function(){return[t("FilesListTableHeader",{attrs:{"files-list-width":e.filesListWidth,"is-mtime-available":e.isMtimeAvailable,"is-size-available":e.isSizeAvailable,nodes:e.nodes}})]},proxy:!0},{key:"footer",fn:function(){return[t("FilesListTableFooter",{attrs:{"files-list-width":e.filesListWidth,"is-mtime-available":e.isMtimeAvailable,"is-size-available":e.isSizeAvailable,nodes:e.nodes,summary:e.summary}})]},proxy:!0}])})}),[],!1,null,"18a212d2",null).exports;function jr(e){return jr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},jr(e)}function _r(){_r=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==jr(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Or(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function Lr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function Fr(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);ne?l?(m=Date.now(),i||(a=setTimeout(u?g:h,e))):h():!0!==i&&(a=setTimeout(u?g:h,void 0===u?e-c:e)))}return h.cancel=function(e){var t=(e||{}).upcomingOnly,n=void 0!==t&&t;p(),d=!n},h}var Yr={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Jr=(0,G.Z)(Yr,(function(){var e=this,t=e._self._c;return t("span",e._b({staticClass:"material-design-icon chart-pie-icon",attrs:{"aria-hidden":!e.title,"aria-label":e.title,role:"img"},on:{click:function(t){return e.$emit("click",t)}}},"span",e.$attrs,!1),[t("svg",{staticClass:"material-design-icon__svg",attrs:{fill:e.fillColor,width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{d:"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z"}},[e.title?t("title",[e._v(e._s(e.title))]):e._e()])])])}),[],!1,null,null,null).exports,Qr=a(48959),Xr=a.n(Qr);function ei(e){return ei="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ei(e)}function ti(){ti=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ei(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ni(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var ai,oi={name:"NavigationQuota",components:{ChartPie:Jr,NcAppNavigationItem:Zr(),NcProgressBar:Xr()},data:function(){return{loadingStorageStats:!1,storageStats:(0,i.j)("files","storageStats",null)}},computed:{storageStatsTitle:function(){var e,t,n,a=(0,de.sS)(null===(e=this.storageStats)||void 0===e?void 0:e.used),o=(0,de.sS)(null===(t=this.storageStats)||void 0===t?void 0:t.quota);return(null===(n=this.storageStats)||void 0===n?void 0:n.quota)<0?this.t("files","{usedQuotaByte} used",{usedQuotaByte:a}):this.t("files","{used} of {quota} used",{used:a,quota:o})},storageStatsTooltip:function(){return this.storageStats.relative?this.t("files","{relative}% used",this.storageStats):""}},beforeMount:function(){setInterval(this.throttleUpdateStorageStats,6e4),(0,ue.Ld)("files:node:created",this.throttleUpdateStorageStats),(0,ue.Ld)("files:node:deleted",this.throttleUpdateStorageStats),(0,ue.Ld)("files:node:moved",this.throttleUpdateStorageStats),(0,ue.Ld)("files:node:updated",this.throttleUpdateStorageStats)},methods:{debounceUpdateStorageStats:(ai={}.atBegin,Kr(200,(function(e){this.updateStorageStats(e)}),{debounceMode:!1!==(void 0!==ai&&ai)})),throttleUpdateStorageStats:Kr(1e3,(function(e){this.updateStorageStats(e)})),updateStorageStats:function(){var e,n=arguments,a=this;return(e=ti().mark((function e(){var o,r,i;return ti().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o=n.length>0&&void 0!==n[0]?n[0]:null,!a.loadingStorageStats){e.next=3;break}return e.abrupt("return");case 3:return a.loadingStorageStats=!0,e.prev=4,e.next=7,d.Z.get((0,l.generateUrl)("/apps/files/api/v1/stats"));case 7:if(null!=(i=e.sent)&&null!==(r=i.data)&&void 0!==r&&r.data){e.next=10;break}throw new Error("Invalid storage stats");case 10:a.storageStats=i.data.data,e.next=17;break;case 13:e.prev=13,e.t0=e.catch(4),me.error("Could not refresh storage stats",{error:e.t0}),o&&(0,h.x2)(t("files","Could not refresh storage stats"));case 17:return e.prev=17,a.loadingStorageStats=!1,e.finish(17);case 20:case"end":return e.stop()}}),e,null,[[4,13,17,20]])})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ni(r,a,o,i,s,"next",e)}function s(e){ni(r,a,o,i,s,"throw",e)}i(void 0)}))})()},t:s.Iu}},ri=oi,ii=a(38710),si={};si.styleTagTransform=M(),si.setAttributes=F(),si.insert=O().bind(null,"head"),si.domAPI=j(),si.insertStyleElement=z(),T()(ii.Z,si),ii.Z&&ii.Z.locals&&ii.Z.locals;var li=(0,G.Z)(ri,(function(){var e=this,t=e._self._c;return e.storageStats?t("NcAppNavigationItem",{staticClass:"app-navigation-entry__settings-quota",class:{"app-navigation-entry__settings-quota--not-unlimited":e.storageStats.quota>=0},attrs:{"aria-label":e.t("files","Storage informations"),loading:e.loadingStorageStats,name:e.storageStatsTitle,title:e.storageStatsTooltip,"data-cy-files-navigation-settings-quota":""},on:{click:function(t){return t.stopPropagation(),t.preventDefault(),e.debounceUpdateStorageStats.apply(null,arguments)}}},[t("ChartPie",{attrs:{slot:"icon",size:20},slot:"icon"}),e._v(" "),e.storageStats.quota>=0?t("NcProgressBar",{attrs:{slot:"extra",error:e.storageStats.relative>80,value:Math.min(e.storageStats.relative,100)},slot:"extra"}):e._e()],1):e._e()}),[],!1,null,"0df392ce",null),ci=li.exports,ui=a(68988),di=a.n(ui),mi=a(16809),pi=a.n(mi),hi={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},gi=(0,G.Z)(hi,(function(){var e=this,t=e._self._c;return t("span",e._b({staticClass:"material-design-icon clipboard-icon",attrs:{"aria-hidden":!e.title,"aria-label":e.title,role:"img"},on:{click:function(t){return e.$emit("click",t)}}},"span",e.$attrs,!1),[t("svg",{staticClass:"material-design-icon__svg",attrs:{fill:e.fillColor,width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{d:"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3"}},[e.title?t("title",[e._v(e._s(e.title))]):e._e()])])])}),[],!1,null,null,null).exports,fi=a(36029),vi=a.n(fi),yi={name:"Setting",props:{el:{type:Function,required:!0}},mounted:function(){this.$el.appendChild(this.el())}},Ai=(0,G.Z)(yi,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports;function bi(e){return bi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},bi(e)}function wi(){wi=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==bi(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ki(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var Ci={name:"Settings",components:{Clipboard:gi,NcAppSettingsDialog:di(),NcAppSettingsSection:pi(),NcCheckboxRadioSwitch:to(),NcInputField:vi(),Setting:Ai},props:{open:{type:Boolean,default:!1}},setup:function(){return{userConfigStore:ha()}},data:function(){var e,t;return{settings:(null===(e=window.OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.Settings)||void 0===e?void 0:e.settings)||[],webdavUrl:(0,l.generateRemoteUrl)("dav/files/"+encodeURIComponent(null===(t=(0,c.ts)())||void 0===t?void 0:t.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,l.generateUrl)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1}},computed:{userConfig:function(){return this.userConfigStore.userConfig}},beforeMount:function(){this.settings.forEach((function(e){return e.open()}))},beforeDestroy:function(){this.settings.forEach((function(e){return e.close()}))},methods:{onClose:function(){this.$emit("close")},setConfig:function(e,t){this.userConfigStore.update(e,t)},copyCloudId:function(){var e,n=this;return(e=wi().mark((function e(){return wi().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(document.querySelector("input#webdav-url-input").select(),navigator.clipboard){e.next=4;break}return(0,h.x2)(t("files","Clipboard is not available")),e.abrupt("return");case 4:return e.next=6,navigator.clipboard.writeText(n.webdavUrl);case 6:n.webdavUrlCopied=!0,(0,h.s$)(t("files","WebDAV URL copied to clipboard")),setTimeout((function(){n.webdavUrlCopied=!1}),5e3);case 9:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ki(r,a,o,i,s,"next",e)}function s(e){ki(r,a,o,i,s,"throw",e)}i(void 0)}))})()},t:s.Iu}},Si=Ci,Pi=a(72277),xi={};xi.styleTagTransform=M(),xi.setAttributes=F(),xi.insert=O().bind(null,"head"),xi.domAPI=j(),xi.insertStyleElement=z(),T()(Pi.Z,xi),Pi.Z&&Pi.Z.locals&&Pi.Z.locals;var Ni=(0,G.Z)(Si,(function(){var e=this,t=e._self._c;return t("NcAppSettingsDialog",{attrs:{open:e.open,"show-navigation":!0,name:e.t("files","Files settings")},on:{"update:open":e.onClose}},[t("NcAppSettingsSection",{attrs:{id:"settings",name:e.t("files","Files settings")}},[t("NcCheckboxRadioSwitch",{attrs:{checked:e.userConfig.sort_favorites_first},on:{"update:checked":function(t){return e.setConfig("sort_favorites_first",t)}}},[e._v("\n\t\t\t"+e._s(e.t("files","Sort favorites first"))+"\n\t\t")]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{checked:e.userConfig.show_hidden},on:{"update:checked":function(t){return e.setConfig("show_hidden",t)}}},[e._v("\n\t\t\t"+e._s(e.t("files","Show hidden files"))+"\n\t\t")]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{checked:e.userConfig.crop_image_previews},on:{"update:checked":function(t){return e.setConfig("crop_image_previews",t)}}},[e._v("\n\t\t\t"+e._s(e.t("files","Crop image previews"))+"\n\t\t")])],1),e._v(" "),0!==e.settings.length?t("NcAppSettingsSection",{attrs:{id:"more-settings",name:e.t("files","Additional settings")}},[e._l(e.settings,(function(e){return[t("Setting",{key:e.name,attrs:{el:e.el}})]}))],2):e._e(),e._v(" "),t("NcAppSettingsSection",{attrs:{id:"webdav",name:e.t("files","WebDAV")}},[t("NcInputField",{attrs:{id:"webdav-url-input","show-trailing-button":!0,success:e.webdavUrlCopied,"trailing-button-label":e.t("files","Copy to clipboard"),value:e.webdavUrl,readonly:"readonly",type:"url"},on:{focus:function(e){return e.target.select()},"trailing-button-click":e.copyCloudId},scopedSlots:e._u([{key:"trailing-button-icon",fn:function(){return[t("Clipboard",{attrs:{size:20}})]},proxy:!0}])}),e._v(" "),t("em",[t("a",{staticClass:"setting-link",attrs:{href:e.webdavDocs,target:"_blank",rel:"noreferrer noopener"}},[e._v("\n\t\t\t\t"+e._s(e.t("files","Use this address to access your Files via WebDAV"))+" ↗\n\t\t\t")])]),e._v(" "),t("br"),e._v(" "),t("em",[t("a",{staticClass:"setting-link",attrs:{href:e.appPasswordUrl}},[e._v("\n\t\t\t\t"+e._s(e.t("files","If you have enabled 2FA, you must create and use a new app password by clicking here."))+" ↗\n\t\t\t")])])],1)],1)}),[],!1,null,"7aaa0c4e",null).exports;function Ti(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:Mi,t=(0,Bi.eI)(e,{headers:{requesttoken:(0,c.IH)()||""}});return(0,Bi.lD)().patch("request",(function(e){var t;return null!==(t=e.headers)&&void 0!==t&&t.method&&(e.method=e.headers.method,delete e.headers.method),(0,zi.W)(e)})),t},Ri=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],Gi={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},Ii=function(){return void 0===window._nc_dav_properties&&(window._nc_dav_properties=Ri),window._nc_dav_properties.map((function(e){return"<".concat(e," />")})).join(" ")},$i=function(){return void 0===window._nc_dav_namespaces&&(window._nc_dav_namespaces=Gi),Object.keys(window._nc_dav_namespaces).map((function(e){return"xmlns:".concat(e,'="').concat(window._nc_dav_namespaces[e],'"')})).join(" ")},qi=function(){return'\n\t\t\n\t\t\t\n\t\t\t\t").concat(Ii(),"\n\t\t\t\n\t\t")};function Hi(e){return Hi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Hi(e)}function Vi(){Vi=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==Hi(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function Wi(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function Zi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function Ki(e){for(var t=1;t=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function ts(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var ns,as=Di(),os='\n\n\t\n\t\t").concat(Ii(),"\n\t\n\t\n\t\t1\n\t\n"),rs=function(){var e,t=(e=es().mark((function e(){var t,n,a,o,r,i,s,l=arguments;return es().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=l.length>0&&void 0!==l[0]?l[0]:"/",a=qi(),"/"!==n){e.next=6;break}return e.next=5,as.stat(n,{details:!0,data:qi()});case 5:o=e.sent;case 6:return e.next=8,as.getDirectoryContents(n,{details:!0,data:"/"===n?os:a,headers:{method:"/"===n?"REPORT":"PROPFIND"},includeSelf:!0});case 8:return r=e.sent,i=(null===(t=o)||void 0===t?void 0:t.data)||r.data[0],s=r.data.filter((function(e){return e.filename!==n})),e.abrupt("return",{folder:Qi(i),contents:s.map(Qi)});case 12:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){ts(r,a,o,i,s,"next",e)}function s(e){ts(r,a,o,i,s,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}(),is=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return new de.G7({id:ss(e),name:(0,p.basename)(e),icon:Re,order:t,params:{dir:e,view:"favorites"},parent:"favorites",columns:[],getContents:rs})},ss=function(e){return"favorite-".concat(oo(e))};function ls(e){return ls="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ls(e)}function cs(){cs=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==ls(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function us(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}var ds=Di((0,l.generateRemoteUrl)("dav")),ms=Math.round(Date.now()/1e3-1209600),ps='\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t').concat(Ii(),"\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/").concat(null===(ns=(0,c.ts)())||void 0===ns?void 0:ns.uid,"/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t").concat(ms,"\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n"),hs=function(){var e,t=(e=cs().mark((function e(){var t,n,a,o,r=arguments;return cs().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.length>0&&void 0!==r[0]?r[0]:"/",e.next=3,ds.getDirectoryContents(n,{details:!0,data:ps,headers:{method:"SEARCH","Content-Type":"application/xml; charset=utf-8"},deep:!0});case 3:return a=e.sent,o=a.data,e.abrupt("return",{folder:new de.gt({id:0,source:(0,l.generateRemoteUrl)("dav"+Ui),root:Ui,owner:(null===(t=(0,c.ts)())||void 0===t?void 0:t.uid)||null,permissions:de.y3.READ}),contents:o.map(Qi)});case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){us(r,a,o,i,s,"next",e)}function s(e){us(r,a,o,i,s,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();function gs(e){return gs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},gs(e)}function fs(){fs=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},o="function"==typeof Symbol?Symbol:{},r=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var r=t&&t.prototype instanceof m?t:m,i=Object.create(r.prototype),s=new P(o||[]);return a(i,"_invoke",{value:w(e,n,s)}),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,r,(function(){return this}));var f=Object.getPrototypeOf,v=f&&f(f(x([])));v&&v!==t&&n.call(v,r)&&(g=v);var y=h.prototype=m.prototype=Object.create(g);function A(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function o(a,r,i,s){var l=u(e[a],e,r);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==gs(d)&&n.call(d,"__await")?t.resolve(d.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(d).then((function(e){c.value=e,i(c)}),(function(e){return o("throw",e,i,s)}))}s(l.arg)}var r;a(this,"_invoke",{value:function(e,n){function a(){return new t((function(t,a){o(e,n,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,n){var a="suspendedStart";return function(o,r){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===o)throw r;return{value:void 0,done:!0}}for(n.method=o,n.arg=r;;){var i=n.delegate;if(i){var s=k(i,n);if(s){if(s===d)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===a)throw a="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);a="executing";var l=u(e,t,n);if("normal"===l.type){if(a=n.done?"completed":"suspendedYield",l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(a="completed",n.method="throw",n.arg=l.arg)}}}function k(e,t){var n=t.method,a=e.iterator[n];if(void 0===a)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var o=u(a,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,d;var r=o.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function x(e){if(e){var t=e[r];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,o=function t(){for(;++a=0;--o){var r=this.tryEntries[o],i=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var o=this.tryEntries[a];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),S(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var o=a.arg;S(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:x(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},e}function vs(e,t,n,a,o,r,i){try{var s=e[r](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(a,o)}function ys(e){return function(){var t=this,n=arguments;return new Promise((function(a,o){var r=e.apply(t,n);function i(e){vs(r,a,o,i,s,"next",e)}function s(e){vs(r,a,o,i,s,"throw",e)}i(void 0)}))}}const As="%[a-f0-9]{2}",bs=new RegExp("("+As+")|([^%]+?)","gi"),ws=new RegExp("("+As+")+","gi");function ks(e,t){try{return[decodeURIComponent(e.join(""))]}catch{}if(1===e.length)return e;t=t||1;const n=e.slice(0,t),a=e.slice(t);return Array.prototype.concat.call([],ks(n),ks(a))}function Cs(e){try{return decodeURIComponent(e)}catch{let t=e.match(bs)||[];for(let n=1;nnull==e,Ns=e=>encodeURIComponent(e).replace(/[!'()*]/g,(e=>`%${e.charCodeAt(0).toString(16).toUpperCase()}`)),Ts=Symbol("encodeFragmentIdentifier");function Es(e){if("string"!=typeof e||1!==e.length)throw new TypeError("arrayFormatSeparator must be single character string")}function js(e,t){return t.encode?t.strict?Ns(e):encodeURIComponent(e):e}function _s(e,t){return t.decode?function(e){if("string"!=typeof e)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof e+"`");try{return decodeURIComponent(e)}catch{return function(e){const t={"%FE%FF":"��","%FF%FE":"��"};let n=ws.exec(e);for(;n;){try{t[n[0]]=decodeURIComponent(n[0])}catch{const e=Cs(n[0]);e!==n[0]&&(t[n[0]]=e)}n=ws.exec(e)}t["%C2"]="�";const a=Object.keys(t);for(const n of a)e=e.replace(new RegExp(n,"g"),t[n]);return e}(e)}}(e):e}function Os(e){return Array.isArray(e)?e.sort():"object"==typeof e?Os(Object.keys(e)).sort(((e,t)=>Number(e)-Number(t))).map((t=>e[t])):e}function Ls(e){const t=e.indexOf("#");return-1!==t&&(e=e.slice(0,t)),e}function Fs(e,t){return t.parseNumbers&&!Number.isNaN(Number(e))&&"string"==typeof e&&""!==e.trim()?e=Number(e):!t.parseBooleans||null===e||"true"!==e.toLowerCase()&&"false"!==e.toLowerCase()||(e="true"===e.toLowerCase()),e}function Bs(e){const t=(e=Ls(e)).indexOf("?");return-1===t?"":e.slice(t+1)}function zs(e,t){Es((t={decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1,...t}).arrayFormatSeparator);const n=function(e){let t;switch(e.arrayFormat){case"index":return(e,n,a)=>{t=/\[(\d*)]$/.exec(e),e=e.replace(/\[\d*]$/,""),t?(void 0===a[e]&&(a[e]={}),a[e][t[1]]=n):a[e]=n};case"bracket":return(e,n,a)=>{t=/(\[])$/.exec(e),e=e.replace(/\[]$/,""),t?void 0!==a[e]?a[e]=[...a[e],n]:a[e]=[n]:a[e]=n};case"colon-list-separator":return(e,n,a)=>{t=/(:list)$/.exec(e),e=e.replace(/:list$/,""),t?void 0!==a[e]?a[e]=[...a[e],n]:a[e]=[n]:a[e]=n};case"comma":case"separator":return(t,n,a)=>{const o="string"==typeof n&&n.includes(e.arrayFormatSeparator),r="string"==typeof n&&!o&&_s(n,e).includes(e.arrayFormatSeparator);n=r?_s(n,e):n;const i=o||r?n.split(e.arrayFormatSeparator).map((t=>_s(t,e))):null===n?n:_s(n,e);a[t]=i};case"bracket-separator":return(t,n,a)=>{const o=/(\[])$/.test(t);if(t=t.replace(/\[]$/,""),!o)return void(a[t]=n?_s(n,e):n);const r=null===n?[]:n.split(e.arrayFormatSeparator).map((t=>_s(t,e)));void 0!==a[t]?a[t]=[...a[t],...r]:a[t]=r};default:return(e,t,n)=>{void 0!==n[e]?n[e]=[...[n[e]].flat(),t]:n[e]=t}}}(t),a=Object.create(null);if("string"!=typeof e)return a;if(!(e=e.trim().replace(/^[?#&]/,"")))return a;for(const o of e.split("&")){if(""===o)continue;const e=t.decode?o.replace(/\+/g," "):o;let[r,i]=Ss(e,"=");void 0===r&&(r=e),i=void 0===i?null:["comma","separator","bracket-separator"].includes(t.arrayFormat)?i:_s(i,t),n(_s(r,t),i,a)}for(const[e,n]of Object.entries(a))if("object"==typeof n&&null!==n)for(const[e,a]of Object.entries(n))n[e]=Fs(a,t);else a[e]=Fs(n,t);return!1===t.sort?a:(!0===t.sort?Object.keys(a).sort():Object.keys(a).sort(t.sort)).reduce(((e,t)=>{const n=a[t];return Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?e[t]=Os(n):e[t]=n,e}),Object.create(null))}function Us(e,t){if(!e)return"";Es((t={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...t}).arrayFormatSeparator);const n=n=>t.skipNull&&xs(e[n])||t.skipEmptyString&&""===e[n],a=function(e){switch(e.arrayFormat){case"index":return t=>(n,a)=>{const o=n.length;return void 0===a||e.skipNull&&null===a||e.skipEmptyString&&""===a?n:null===a?[...n,[js(t,e),"[",o,"]"].join("")]:[...n,[js(t,e),"[",js(o,e),"]=",js(a,e)].join("")]};case"bracket":return t=>(n,a)=>void 0===a||e.skipNull&&null===a||e.skipEmptyString&&""===a?n:null===a?[...n,[js(t,e),"[]"].join("")]:[...n,[js(t,e),"[]=",js(a,e)].join("")];case"colon-list-separator":return t=>(n,a)=>void 0===a||e.skipNull&&null===a||e.skipEmptyString&&""===a?n:null===a?[...n,[js(t,e),":list="].join("")]:[...n,[js(t,e),":list=",js(a,e)].join("")];case"comma":case"separator":case"bracket-separator":{const t="bracket-separator"===e.arrayFormat?"[]=":"=";return n=>(a,o)=>void 0===o||e.skipNull&&null===o||e.skipEmptyString&&""===o?a:(o=null===o?"":o,0===a.length?[[js(n,e),t,js(o,e)].join("")]:[[a,js(o,e)].join(e.arrayFormatSeparator)])}default:return t=>(n,a)=>void 0===a||e.skipNull&&null===a||e.skipEmptyString&&""===a?n:null===a?[...n,js(t,e)]:[...n,[js(t,e),"=",js(a,e)].join("")]}}(t),o={};for(const[t,a]of Object.entries(e))n(t)||(o[t]=a);const r=Object.keys(o);return!1!==t.sort&&r.sort(t.sort),r.map((n=>{const o=e[n];return void 0===o?"":null===o?js(n,t):Array.isArray(o)?0===o.length&&"bracket-separator"===t.arrayFormat?js(n,t)+"[]":o.reduce(a(n),[]).join("&"):js(n,t)+"="+js(o,t)})).filter((e=>e.length>0)).join("&")}function Ms(e,t){t={decode:!0,...t};let[n,a]=Ss(e,"#");return void 0===n&&(n=e),{url:n?.split("?")?.[0]??"",query:zs(Bs(e),t),...t&&t.parseFragmentIdentifier&&a?{fragmentIdentifier:_s(a,t)}:{}}}function Ds(e,t){t={encode:!0,strict:!0,[Ts]:!0,...t};const n=Ls(e.url).split("?")[0]||"";let a=Us({...zs(Bs(e.url),{sort:!1}),...e.query},t);a&&(a=`?${a}`);let o=function(e){let t="";const n=e.indexOf("#");return-1!==n&&(t=e.slice(n)),t}(e.url);if(e.fragmentIdentifier){const a=new URL(n);a.hash=e.fragmentIdentifier,o=t[Ts]?a.hash:`#${e.fragmentIdentifier}`}return`${n}${a}${o}`}function Rs(e,t,n){n={parseFragmentIdentifier:!0,[Ts]:!1,...n};const{url:a,query:o,fragmentIdentifier:r}=Ms(e,n);return Ds({url:a,query:Ps(o,t),fragmentIdentifier:r},n)}function Gs(e,t,n){return Rs(e,Array.isArray(t)?e=>!t.includes(e):(e,n)=>!t(e,n),n)}var Is=o,$s=a(25108);function qs(e,t){for(var n in t)e[n]=t[n];return e}var Hs=/[!'()*]/g,Vs=function(e){return"%"+e.charCodeAt(0).toString(16)},Ws=/%2C/g,Zs=function(e){return encodeURIComponent(e).replace(Hs,Vs).replace(Ws,",")};function Ks(e){try{return decodeURIComponent(e)}catch(e){}return e}var Ys=function(e){return null==e||"object"==typeof e?e:String(e)};function Js(e){var t={};return(e=e.trim().replace(/^(\?|#|&)/,""))?(e.split("&").forEach((function(e){var n=e.replace(/\+/g," ").split("="),a=Ks(n.shift()),o=n.length>0?Ks(n.join("=")):null;void 0===t[a]?t[a]=o:Array.isArray(t[a])?t[a].push(o):t[a]=[t[a],o]})),t):t}function Qs(e){var t=e?Object.keys(e).map((function(t){var n=e[t];if(void 0===n)return"";if(null===n)return Zs(t);if(Array.isArray(n)){var a=[];return n.forEach((function(e){void 0!==e&&(null===e?a.push(Zs(t)):a.push(Zs(t)+"="+Zs(e)))})),a.join("&")}return Zs(t)+"="+Zs(n)})).filter((function(e){return e.length>0})).join("&"):null;return t?"?"+t:""}var Xs=/\/?$/;function el(e,t,n,a){var o=a&&a.options.stringifyQuery,r=t.query||{};try{r=tl(r)}catch(e){}var i={name:t.name||e&&e.name,meta:e&&e.meta||{},path:t.path||"/",hash:t.hash||"",query:r,params:t.params||{},fullPath:ol(t,o),matched:e?al(e):[]};return n&&(i.redirectedFrom=ol(n,o)),Object.freeze(i)}function tl(e){if(Array.isArray(e))return e.map(tl);if(e&&"object"==typeof e){var t={};for(var n in e)t[n]=tl(e[n]);return t}return e}var nl=el(null,{path:"/"});function al(e){for(var t=[];e;)t.unshift(e),e=e.parent;return t}function ol(e,t){var n=e.path,a=e.query;void 0===a&&(a={});var o=e.hash;return void 0===o&&(o=""),(n||"/")+(t||Qs)(a)+o}function rl(e,t,n){return t===nl?e===t:!!t&&(e.path&&t.path?e.path.replace(Xs,"")===t.path.replace(Xs,"")&&(n||e.hash===t.hash&&il(e.query,t.query)):!(!e.name||!t.name)&&e.name===t.name&&(n||e.hash===t.hash&&il(e.query,t.query)&&il(e.params,t.params)))}function il(e,t){if(void 0===e&&(e={}),void 0===t&&(t={}),!e||!t)return e===t;var n=Object.keys(e).sort(),a=Object.keys(t).sort();return n.length===a.length&&n.every((function(n,o){var r=e[n];if(a[o]!==n)return!1;var i=t[n];return null==r||null==i?r===i:"object"==typeof r&&"object"==typeof i?il(r,i):String(r)===String(i)}))}function sl(e){for(var t=0;t=0&&(t=e.slice(a),e=e.slice(0,a));var o=e.indexOf("?");return o>=0&&(n=e.slice(o+1),e=e.slice(0,o)),{path:e,query:n,hash:t}}(o.path||""),c=t&&t.path||"/",u=l.path?ul(l.path,c,n||o.append):c,d=function(e,t,n){void 0===t&&(t={});var a,o=n||Js;try{a=o(e||"")}catch(e){a={}}for(var r in t){var i=t[r];a[r]=Array.isArray(i)?i.map(Ys):Ys(i)}return a}(l.query,o.query,a&&a.options.parseQuery),m=o.hash||l.hash;return m&&"#"!==m.charAt(0)&&(m="#"+m),{_normalized:!0,path:u,query:d,hash:m}}var El,jl=function(){},_l={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(e){var t=this,n=this.$router,a=this.$route,o=n.resolve(this.to,a,this.append),r=o.location,i=o.route,s=o.href,l={},c=n.options.linkActiveClass,u=n.options.linkExactActiveClass,d=null==c?"router-link-active":c,m=null==u?"router-link-exact-active":u,p=null==this.activeClass?d:this.activeClass,h=null==this.exactActiveClass?m:this.exactActiveClass,g=i.redirectedFrom?el(null,Tl(i.redirectedFrom),null,n):i;l[h]=rl(a,g,this.exactPath),l[p]=this.exact||this.exactPath?l[h]:function(e,t){return 0===e.path.replace(Xs,"/").indexOf(t.path.replace(Xs,"/"))&&(!t.hash||e.hash===t.hash)&&function(e,t){for(var n in t)if(!(n in e))return!1;return!0}(e.query,t.query)}(a,g);var f=l[h]?this.ariaCurrentValue:null,v=function(e){Ol(e)&&(t.replace?n.replace(r,jl):n.push(r,jl))},y={click:Ol};Array.isArray(this.event)?this.event.forEach((function(e){y[e]=v})):y[this.event]=v;var A={class:l},b=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:s,route:i,navigate:v,isActive:l[p],isExactActive:l[h]});if(b){if(1===b.length)return b[0];if(b.length>1||!b.length)return 0===b.length?e():e("span",{},b)}if("a"===this.tag)A.on=y,A.attrs={href:s,"aria-current":f};else{var w=Ll(this.$slots.default);if(w){w.isStatic=!1;var k=w.data=qs({},w.data);for(var C in k.on=k.on||{},k.on){var S=k.on[C];C in y&&(k.on[C]=Array.isArray(S)?S:[S])}for(var P in y)P in k.on?k.on[P].push(y[P]):k.on[P]=v;var x=w.data.attrs=qs({},w.data.attrs);x.href=s,x["aria-current"]=f}else A.on=y}return e(this.tag,A,this.$slots.default)}};function Ol(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey||e.defaultPrevented||void 0!==e.button&&0!==e.button)){if(e.currentTarget&&e.currentTarget.getAttribute){var t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Ll(e){if(e)for(var t,n=0;n-1&&(l.params[m]=n.params[m]);return l.path=Nl(u.path,l.params),s(u,l,i)}if(l.path){l.params={};for(var p=0;p-1}function uc(e,t){return cc(e)&&e._isRouter&&(null==t||e.type===t)}function dc(e,t,n){var a=function(o){o>=e.length?n():e[o]?t(e[o],(function(){a(o+1)})):a(o+1)};a(0)}function mc(e,t){return pc(e.map((function(e){return Object.keys(e.components).map((function(n){return t(e.components[n],e.instances[n],e,n)}))})))}function pc(e){return Array.prototype.concat.apply([],e)}var hc="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function gc(e){var t=!1;return function(){for(var n=[],a=arguments.length;a--;)n[a]=arguments[a];if(!t)return t=!0,e.apply(this,n)}}var fc=function(e,t){this.router=e,this.base=function(e){if(!e)if(Fl){var t=document.querySelector("base");e=(e=t&&t.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else e="/";return"/"!==e.charAt(0)&&(e="/"+e),e.replace(/\/$/,"")}(t),this.current=nl,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function vc(e,t,n,a){var o=mc(e,(function(e,a,o,r){var i=function(e,t){return"function"!=typeof e&&(e=El.extend(e)),e.options[t]}(e,t);if(i)return Array.isArray(i)?i.map((function(e){return n(e,a,o,r)})):n(i,a,o,r)}));return pc(a?o.reverse():o)}function yc(e,t){if(t)return function(){return e.apply(t,arguments)}}fc.prototype.listen=function(e){this.cb=e},fc.prototype.onReady=function(e,t){this.ready?e():(this.readyCbs.push(e),t&&this.readyErrorCbs.push(t))},fc.prototype.onError=function(e){this.errorCbs.push(e)},fc.prototype.transitionTo=function(e,t,n){var a,o=this;try{a=this.router.match(e,this.current)}catch(e){throw this.errorCbs.forEach((function(t){t(e)})),e}var r=this.current;this.confirmTransition(a,(function(){o.updateRoute(a),t&&t(a),o.ensureURL(),o.router.afterHooks.forEach((function(e){e&&e(a,r)})),o.ready||(o.ready=!0,o.readyCbs.forEach((function(e){e(a)})))}),(function(e){n&&n(e),e&&!o.ready&&(uc(e,rc.redirected)&&r===nl||(o.ready=!0,o.readyErrorCbs.forEach((function(t){t(e)}))))}))},fc.prototype.confirmTransition=function(e,t,n){var a=this,o=this.current;this.pending=e;var r,i,s=function(e){!uc(e)&&cc(e)&&(a.errorCbs.length?a.errorCbs.forEach((function(t){t(e)})):$s.error(e)),n&&n(e)},l=e.matched.length-1,c=o.matched.length-1;if(rl(e,o)&&l===c&&e.matched[l]===o.matched[c])return this.ensureURL(),e.hash&&Wl(this.router,o,e,!1),s(((i=sc(r=o,e,rc.duplicated,'Avoided redundant navigation to current location: "'+r.fullPath+'".')).name="NavigationDuplicated",i));var u,d=function(e,t){var n,a=Math.max(e.length,t.length);for(n=0;n0)){var t=this.router,n=t.options.scrollBehavior,a=nc&&n;a&&this.listeners.push(Vl());var o=function(){var n=e.current,o=bc(e.base);e.current===nl&&o===e._startLocation||e.transitionTo(o,(function(e){a&&Wl(t,e,n,!0)}))};window.addEventListener("popstate",o),this.listeners.push((function(){window.removeEventListener("popstate",o)}))}},t.prototype.go=function(e){window.history.go(e)},t.prototype.push=function(e,t,n){var a=this,o=this.current;this.transitionTo(e,(function(e){ac(dl(a.base+e.fullPath)),Wl(a.router,e,o,!1),t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var a=this,o=this.current;this.transitionTo(e,(function(e){oc(dl(a.base+e.fullPath)),Wl(a.router,e,o,!1),t&&t(e)}),n)},t.prototype.ensureURL=function(e){if(bc(this.base)!==this.current.fullPath){var t=dl(this.base+this.current.fullPath);e?ac(t):oc(t)}},t.prototype.getCurrentLocation=function(){return bc(this.base)},t}(fc);function bc(e){var t=window.location.pathname,n=t.toLowerCase(),a=e.toLowerCase();return!e||n!==a&&0!==n.indexOf(dl(a+"/"))||(t=t.slice(e.length)),(t||"/")+window.location.search+window.location.hash}var wc=function(e){function t(t,n,a){e.call(this,t,n),a&&function(e){var t=bc(e);if(!/^\/#/.test(t))return window.location.replace(dl(e+"/#"+t)),!0}(this.base)||kc()}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.setupListeners=function(){var e=this;if(!(this.listeners.length>0)){var t=this.router.options.scrollBehavior,n=nc&&t;n&&this.listeners.push(Vl());var a=function(){var t=e.current;kc()&&e.transitionTo(Cc(),(function(a){n&&Wl(e.router,a,t,!0),nc||xc(a.fullPath)}))},o=nc?"popstate":"hashchange";window.addEventListener(o,a),this.listeners.push((function(){window.removeEventListener(o,a)}))}},t.prototype.push=function(e,t,n){var a=this,o=this.current;this.transitionTo(e,(function(e){Pc(e.fullPath),Wl(a.router,e,o,!1),t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var a=this,o=this.current;this.transitionTo(e,(function(e){xc(e.fullPath),Wl(a.router,e,o,!1),t&&t(e)}),n)},t.prototype.go=function(e){window.history.go(e)},t.prototype.ensureURL=function(e){var t=this.current.fullPath;Cc()!==t&&(e?Pc(t):xc(t))},t.prototype.getCurrentLocation=function(){return Cc()},t}(fc);function kc(){var e=Cc();return"/"===e.charAt(0)||(xc("/"+e),!1)}function Cc(){var e=window.location.href,t=e.indexOf("#");return t<0?"":e=e.slice(t+1)}function Sc(e){var t=window.location.href,n=t.indexOf("#");return(n>=0?t.slice(0,n):t)+"#"+e}function Pc(e){nc?ac(Sc(e)):window.location.hash=e}function xc(e){nc?oc(Sc(e)):window.location.replace(Sc(e))}var Nc=function(e){function t(t,n){e.call(this,t,n),this.stack=[],this.index=-1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.push=function(e,t,n){var a=this;this.transitionTo(e,(function(e){a.stack=a.stack.slice(0,a.index+1).concat(e),a.index++,t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var a=this;this.transitionTo(e,(function(e){a.stack=a.stack.slice(0,a.index).concat(e),t&&t(e)}),n)},t.prototype.go=function(e){var t=this,n=this.index+e;if(!(n<0||n>=this.stack.length)){var a=this.stack[n];this.confirmTransition(a,(function(){var e=t.current;t.index=n,t.updateRoute(a),t.router.afterHooks.forEach((function(t){t&&t(a,e)}))}),(function(e){uc(e,rc.duplicated)&&(t.index=n)}))}},t.prototype.getCurrentLocation=function(){var e=this.stack[this.stack.length-1];return e?e.fullPath:"/"},t.prototype.ensureURL=function(){},t}(fc),Tc=function(e){void 0===e&&(e={}),this.app=null,this.apps=[],this.options=e,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Ml(e.routes||[],this);var t=e.mode||"hash";switch(this.fallback="history"===t&&!nc&&!1!==e.fallback,this.fallback&&(t="hash"),Fl||(t="abstract"),this.mode=t,t){case"history":this.history=new Ac(this,e.base);break;case"hash":this.history=new wc(this,e.base,this.fallback);break;case"abstract":this.history=new Nc(this,e.base)}},Ec={currentRoute:{configurable:!0}};Tc.prototype.match=function(e,t,n){return this.matcher.match(e,t,n)},Ec.currentRoute.get=function(){return this.history&&this.history.current},Tc.prototype.init=function(e){var t=this;if(this.apps.push(e),e.$once("hook:destroyed",(function(){var n=t.apps.indexOf(e);n>-1&&t.apps.splice(n,1),t.app===e&&(t.app=t.apps[0]||null),t.app||t.history.teardown()})),!this.app){this.app=e;var n=this.history;if(n instanceof Ac||n instanceof wc){var a=function(e){n.setupListeners(),function(e){var a=n.current,o=t.options.scrollBehavior;nc&&o&&"fullPath"in e&&Wl(t,e,a,!1)}(e)};n.transitionTo(n.getCurrentLocation(),a,a)}n.listen((function(e){t.apps.forEach((function(t){t._route=e}))}))}},Tc.prototype.beforeEach=function(e){return _c(this.beforeHooks,e)},Tc.prototype.beforeResolve=function(e){return _c(this.resolveHooks,e)},Tc.prototype.afterEach=function(e){return _c(this.afterHooks,e)},Tc.prototype.onReady=function(e,t){this.history.onReady(e,t)},Tc.prototype.onError=function(e){this.history.onError(e)},Tc.prototype.push=function(e,t,n){var a=this;if(!t&&!n&&"undefined"!=typeof Promise)return new Promise((function(t,n){a.history.push(e,t,n)}));this.history.push(e,t,n)},Tc.prototype.replace=function(e,t,n){var a=this;if(!t&&!n&&"undefined"!=typeof Promise)return new Promise((function(t,n){a.history.replace(e,t,n)}));this.history.replace(e,t,n)},Tc.prototype.go=function(e){this.history.go(e)},Tc.prototype.back=function(){this.go(-1)},Tc.prototype.forward=function(){this.go(1)},Tc.prototype.getMatchedComponents=function(e){var t=e?e.matched?e:this.resolve(e).route:this.currentRoute;return t?[].concat.apply([],t.matched.map((function(e){return Object.keys(e.components).map((function(t){return e.components[t]}))}))):[]},Tc.prototype.resolve=function(e,t,n){var a=Tl(e,t=t||this.history.current,n,this),o=this.match(a,t),r=o.redirectedFrom||o.fullPath,i=function(e,t,n){var a="hash"===n?"#"+t:t;return e?dl(e+"/"+a):a}(this.history.base,r,this.mode);return{location:a,route:o,href:i,normalizedTo:a,resolved:o}},Tc.prototype.getRoutes=function(){return this.matcher.getRoutes()},Tc.prototype.addRoute=function(e,t){this.matcher.addRoute(e,t),this.history.current!==nl&&this.history.transitionTo(this.history.getCurrentLocation())},Tc.prototype.addRoutes=function(e){this.matcher.addRoutes(e),this.history.current!==nl&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Tc.prototype,Ec);var jc=Tc;function _c(e,t){return e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}Tc.install=function e(t){if(!e.installed||El!==t){e.installed=!0,El=t;var n=function(e){return void 0!==e},a=function(e,t){var a=e.$options._parentVnode;n(a)&&n(a=a.data)&&n(a=a.registerRouteInstance)&&a(e,t)};t.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,a(this,this)},destroyed:function(){a(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("RouterView",ll),t.component("RouterLink",_l);var o=t.config.optionMergeStrategies;o.beforeRouteEnter=o.beforeRouteLeave=o.beforeRouteUpdate=o.created}},Tc.version="3.6.5",Tc.isNavigationFailure=uc,Tc.NavigationFailureType=rc,Tc.START_LOCATION=nl,Fl&&window.Vue&&window.Vue.use(Tc),m.default.use(jc);var Oc=jc.prototype.push;jc.prototype.push=function(e,t,n){return t||n?Oc.call(this,e,t,n):Oc.call(this,e).catch((function(e){return e}))};var Lc=new jc({mode:"history",base:(0,l.generateUrl)("/apps/files"),linkActiveClass:"active",routes:[{path:"/",redirect:{name:"filelist"}},{path:"/:view/:fileid?",name:"filelist",props:!0}],stringifyQuery:function(e){var t=Is.stringify(e).replace(/%2F/gim,"/");return t?"?"+t:""}});function Fc(e){return Fc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Fc(e)}function Bc(e,t){for(var n=0;n1&&void 0!==arguments[1]&&arguments[1];return this._router.push({path:e,replace:t})}},{key:"goToRoute",value:function(e,t,n,a){return this._router.push({name:e,query:n,params:t,replace:a})}}],n&&Bc(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();function Mc(e){return Mc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Mc(e)}function Dc(e,t){for(var n=0;n0?($c.error("A setting with the same name is already registered"),!1):(this._settings.push(e),!0)}},{key:"settings",get:function(){return this._settings}}])&&Hc(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();a.nc=btoa((0,c.IH)()),window.OCA.Files=null!==(Wc=window.OCA.Files)&&void 0!==Wc?Wc:{},window.OCP.Files=null!==(Zc=window.OCP.Files)&&void 0!==Zc?Zc:{};var Yc=new Uc(Lc);Object.assign(window.OCP.Files,{Router:Yc}),m.default.use((function(e){e.mixin({beforeCreate(){const e=this.$options;if(e.pinia){const t=e.pinia;if(!this._provided){const e={};Object.defineProperty(this,"_provided",{get:()=>e,set:t=>Object.assign(e,t)})}this._provided[xt]=t,this.$pinia||(this.$pinia=t),t._a=this,Et&&Pt(t),jt&&nn(t._a,t)}else!this.$pinia&&e.parent&&e.parent.$pinia&&(this.$pinia=e.parent.$pinia)},destroyed(){delete this._pStores}})}));var Jc=function(){const e=(0,m.effectScope)(!0),t=e.run((()=>(0,m.ref)({})));let n=[],a=[];const o=(0,m.markRaw)({install(e){Pt(o),gt||(o._a=e,e.provide(xt,o),e.config.globalProperties.$pinia=o,jt&&nn(e,o),a.forEach((e=>n.push(e))),a=[])},use(e){return this._a||gt?n.push(e):a.push(e),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return jt&&"undefined"!=typeof Proxy&&o.use(sn),o}(),Qc=(0,de.Ti)();m.default.prototype.$navigation=Qc;var Xc=new Kc;Object.assign(window.OCA.Files,{Settings:Xc}),Object.assign(window.OCA.Files.Settings,{Setting:Ic}),new(m.default.extend(Fi))({name:"FilesNavigationRoot",propsData:{Navigation:Qc},router:Lc,pinia:Jc}).$mount("#app-navigation-files"),new(m.default.extend($r))({name:"FilesListRoot",router:Lc,pinia:Jc}).$mount("#app-content-vue"),function(){var e=(0,i.j)("files","favoriteFolders",[]),t=e.map((function(e,t){return is(e,t)})),n=(0,de.Ti)();n.register(new de.G7({id:"favorites",name:(0,s.Iu)("files","Favorites"),caption:(0,s.Iu)("files","List of favorites files and folders."),emptyTitle:(0,s.Iu)("files","No favorites yet"),emptyCaption:(0,s.Iu)("files","Files and folders you mark as favorite will show up here"),icon:Oe,order:5,columns:[],getContents:rs})),t.forEach((function(e){return n.register(e)})),(0,ue.Ld)("files:favorites:added",(function(e){var t;e.type===de.Tv.Folder&&(null!==e.path&&null!==(t=e.root)&&void 0!==t&&t.startsWith("/files")?o(e.path):me.error("Favorite folder is not within user files root",{node:e}))})),(0,ue.Ld)("files:favorites:removed",(function(e){var t;e.type===de.Tv.Folder&&(null!==e.path&&null!==(t=e.root)&&void 0!==t&&t.startsWith("/files")?r(e.path):me.error("Favorite folder is not within user files root",{node:e}))}));var a=function(){e.sort((function(e,t){return e.localeCompare(t,(0,s.G3)(),{ignorePunctuation:!0})})),e.forEach((function(e,n){var a=t.find((function(t){return t.id===ss(e)}));a&&(a.order=n)}))},o=function(o){var r=is(o);e.find((function(e){return e===o}))||(e.push(o),t.push(r),a(),n.register(r))},r=function(o){var r=ss(o),i=e.findIndex((function(e){return e===o}));-1!==i&&(e.splice(i,1),t.splice(i,1),n.remove(r),a())}}(),(0,de.Ti)().register(new de.G7({id:"files",name:(0,s.Iu)("files","All files"),caption:(0,s.Iu)("files","List of your files and folders."),icon:Re,order:0,getContents:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=new AbortController,n=qi();return new Fa.CancelablePromise(function(){var a,o=(a=Vi().mark((function a(o,r,i){var s,l,c;return Vi().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return i((function(){return t.abort()})),a.prev=1,a.next=4,Ji.getDirectoryContents(e,{details:!0,data:n,includeSelf:!0,signal:t.signal});case 4:if(s=a.sent,l=s.data[0],c=s.data.slice(1),l.filename===e){a.next=9;break}throw new Error("Root node does not match requested path");case 9:o({folder:Qi(l),contents:c.map((function(e){try{return Qi(e)}catch(t){return me.error("Invalid node detected '".concat(e.basename,"'"),{error:t}),null}})).filter(Boolean)}),a.next=15;break;case 12:a.prev=12,a.t0=a.catch(1),r(a.t0);case 15:case"end":return a.stop()}}),a,null,[[1,12]])})),function(){var e=this,t=arguments;return new Promise((function(n,o){var r=a.apply(e,t);function i(e){Wi(r,n,o,i,s,"next",e)}function s(e){Wi(r,n,o,i,s,"throw",e)}i(void 0)}))});return function(e,t,n){return o.apply(this,arguments)}}())}})),(0,de.Ti)().register(new de.G7({id:"recent",name:(0,s.Iu)("files","Recent"),caption:(0,s.Iu)("files","List of recently modified files and folders."),emptyTitle:(0,s.Iu)("files","No recently modified files"),emptyCaption:(0,s.Iu)("files","Files and folders you recently modified will show up here."),icon:'',order:2,defaultSortKey:"mtime",getContents:hs})),"serviceWorker"in navigator?window.addEventListener("load",ys(fs().mark((function e(){var t,n;return fs().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,t=(0,l.generateUrl)("/apps/files/preview-service-worker.js",{},{noRewrite:!0}),e.next=4,navigator.serviceWorker.register(t,{scope:"/"});case 4:n=e.sent,me.debug("SW registered: ",{registration:n}),e.next=11;break;case 8:e.prev=8,e.t0=e.catch(0),me.error("SW registration failed: ",{error:e.t0});case 11:case"end":return e.stop()}}),e,null,[[0,8]])})))):me.debug("Service Worker is not enabled on this browser.")},3443:function(e,t,n){var a,o,r=n(25108);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,a=function(e){"use strict";function t(e,n){return t=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},t(e,n)}function n(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=a(e);if(t){var r=a(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return function(e,t){if(t&&("object"===i(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(this,n)}}function a(e){return a=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},a(e)}function o(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var a=0,o=function(){};return{s:o,n:function(){return a>=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,i=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(e){l=!0,r=e},f:function(){try{i||null==n.return||n.return()}finally{if(l)throw r}}}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n*,.files-list[data-v-18a212d2] .files-list__row:focus>*,.files-list[data-v-18a212d2] .files-list__row:active>*,.files-list[data-v-18a212d2] .files-list__row--active>*{--color-border: var(--color-border-dark)}.files-list[data-v-18a212d2] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row--active .favorite-marker-icon svg path{stroke:var(--color-background-dark)}.files-list[data-v-18a212d2] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-18a212d2] .files-list__row-icon *{cursor:pointer}.files-list[data-v-18a212d2] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-18a212d2] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon{margin:-3px}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-18a212d2] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);background-repeat:no-repeat;background-position:center;background-size:contain}.files-list[data-v-18a212d2] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-18a212d2] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-18a212d2] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-18a212d2] .files-list__row-name a:focus .files-list__row-name-text,.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-18a212d2] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-18a212d2] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-18a212d2] .files-list__row-actions{width:auto}.files-list[data-v-18a212d2] .files-list__row-actions~td,.files-list[data-v-18a212d2] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-18a212d2] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-18a212d2] .files-list__row-actions button:not(:hover,:focus,:active) .button-vue__wrapper{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-mtime,.files-list[data-v-18a212d2] .files-list__row-size{justify-content:flex-end;width:calc(var(--row-height)*1.5);color:var(--color-main-text)}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button{padding:0 16px 0 4px !important}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button .button-vue__wrapper,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button .button-vue__wrapper{flex-direction:row}.files-list[data-v-18a212d2] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-18a212d2] .files-list__row-column-custom{width:calc(var(--row-height)*2)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,aAAA,CACA,WAAA,CAIC,mCACC,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAID,iDACC,YAAA,CACA,qBAAA,CAID,gDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAGD,gGAEC,YAAA,CACA,UAAA,CACA,6CAAA,CAID,gCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,gBAAA,CAGD,gEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,0EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,sDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,uDACC,sBAAA,CAEA,8EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,iHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,2GACC,mBAAA,CAMF,mNACC,6CAAA,CACA,2NACC,wCAAA,CAGD,+UACC,mCAAA,CAMH,mDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,qDACC,cAAA,CAGD,wDACC,0BAAA,CAEA,gGACC,8BAAA,CACA,+BAAA,CAID,oEACC,WAAA,CACA,wEACC,0CAAA,CACA,2CAAA,CAKH,2DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CACA,2BAAA,CAEA,0BAAA,CACA,uBAAA,CAGD,4DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAKF,mDAEC,eAAA,CAEA,aAAA,CAEA,qDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,mEACC,YAAA,CAID,oLAEC,mDAAA,CACA,kBAAA,CAIF,8EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,6EACC,mCAAA,CAKF,qDACC,UAAA,CACA,eAAA,CACA,2DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,mEAEC,+BAAA,CACA,SAAA,CAKH,sDACC,UAAA,CAGA,kHAEC,2BAAA,CAIA,+EAEC,kBAAA,CAED,6GAEC,mCAAA,CAKH,uGAGC,wBAAA,CACA,iCAAA,CAEA,4BAAA,CAGA,uKACC,+BAAA,CACA,iNACC,kBAAA,CAKH,oDACC,+BAAA,CAGD,4DACC,+BAAA",sourcesContent:["\n.files-list {\n\t--row-height: 55px;\n\t--cell-margin: 14px;\n\n\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\n\t--checkbox-size: 24px;\n\t--clickable-area: 44px;\n\t--icon-preview-size: 32px;\n\n\tdisplay: block;\n\toverflow: auto;\n\theight: 100%;\n\n\t&::v-deep {\n\t\t// Table head, body and footer\n\t\ttbody {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\t// Necessary for virtual scrolling absolute\n\t\t\tposition: relative;\n\t\t}\n\n\t\t// Before table and thead\n\t\t.files-list__before {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t// Table header\n\t\t.files-list__thead {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\tz-index: 10;\n\t\t\ttop: 0;\n\t\t}\n\n\t\t.files-list__thead,\n\t\t.files-list__tfoot {\n\t\t\tdisplay: flex;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: var(--color-main-background);\n\n\t\t}\n\n\t\ttr {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twidth: 100%;\n\t\t\tuser-select: none;\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\tuser-select: none;\n\t\t}\n\n\t\ttd, th {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tflex: 0 0 auto;\n\t\t\tjustify-content: left;\n\t\t\twidth: var(--row-height);\n\t\t\theight: var(--row-height);\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\tborder: none;\n\n\t\t\t// Columns should try to add any text\n\t\t\t// node wrapped in a span. That should help\n\t\t\t// with the ellipsis on overflow.\n\t\t\tspan {\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row--failed {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\topacity: .1;\n\t\t\tz-index: -1;\n\t\t\tbackground: var(--color-error);\n\t\t}\n\n\t\t.files-list__row-checkbox {\n\t\t\tjustify-content: center;\n\n\t\t\t.checkbox-radio-switch {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\n\t\t\t\t--icon-size: var(--checkbox-size);\n\n\t\t\t\tlabel.checkbox-radio-switch__label {\n\t\t\t\t\twidth: var(--clickable-area);\n\t\t\t\t\theight: var(--clickable-area);\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\n\t\t\t\t}\n\n\t\t\t\t.checkbox-radio-switch__icon {\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row {\n\t\t\t&:hover, &:focus, &:active, &--active {\n\t\t\t\tbackground-color: var(--color-background-dark);\n\t\t\t\t> * {\n\t\t\t\t\t--color-border: var(--color-border-dark);\n\t\t\t\t}\n\t\t\t\t// Hover state of the row should also change the favorite markers background\n\t\t\t\t.favorite-marker-icon svg path {\n\t\t\t\t\tstroke: var(--color-background-dark);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Entry preview or mime icon\n\t\t.files-list__row-icon {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\toverflow: visible;\n\t\t\talign-items: center;\n\t\t\t// No shrinking or growing allowed\n\t\t\tflex: 0 0 var(--icon-preview-size);\n\t\t\tjustify-content: center;\n\t\t\twidth: var(--icon-preview-size);\n\t\t\theight: 100%;\n\t\t\t// Show same padding as the checkbox right padding for visual balance\n\t\t\tmargin-right: var(--checkbox-padding);\n\t\t\tcolor: var(--color-primary-element);\n\n\t\t\t// Icon is also clickable\n\t\t\t* {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\n\t\t\t& > span {\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t&:not(.files-list__row-icon-favorite) svg {\n\t\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\t}\n\n\t\t\t\t// Slightly increase the size of the folder icon\n\t\t\t\t&.folder-icon {\n\t\t\t\t\tmargin: -3px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\twidth: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t\theight: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-preview {\n\t\t\t\toverflow: hidden;\n\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\tborder-radius: var(--border-radius);\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t// Center and contain the preview\n\t\t\t\tbackground-position: center;\n\t\t\t\tbackground-size: contain;\n\t\t\t}\n\n\t\t\t&-favorite {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0px;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t}\n\n\t\t// Entry link\n\t\t.files-list__row-name {\n\t\t\t// Prevent link from overflowing\n\t\t\toverflow: hidden;\n\t\t\t// Take as much space as possible\n\t\t\tflex: 1 1 auto;\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\t// Fill cell height and width\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\t// Necessary for flex grow to work\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t// Already added to the inner text, see rule below\n\t\t\t\t&:focus-visible {\n\t\t\t\t\toutline: none;\n\t\t\t\t}\n\n\t\t\t\t// Keyboard indicator a11y\n\t\t\t\t&:focus .files-list__row-name-text,\n\t\t\t\t&:focus-visible .files-list__row-name-text {\n\t\t\t\t\toutline: 2px solid var(--color-main-text) !important;\n\t\t\t\t\tborder-radius: 20px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.files-list__row-name-text {\n\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t// Make some space for the outline\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t\t// Align two name and ext\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t\t.files-list__row-name-ext {\n\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t}\n\t\t}\n\n\t\t// Rename form\n\t\t.files-list__row-rename {\n\t\t\twidth: 100%;\n\t\t\tmax-width: 600px;\n\t\t\tinput {\n\t\t\t\twidth: 100%;\n\t\t\t\t// Align with text, 0 - padding - border\n\t\t\t\tmargin-left: -8px;\n\t\t\t\tpadding: 2px 6px;\n\t\t\t\tborder-width: 2px;\n\n\t\t\t\t&:invalid {\n\t\t\t\t\t// Show red border on invalid input\n\t\t\t\t\tborder-color: var(--color-error);\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-actions {\n\t\t\twidth: auto;\n\n\t\t\t// Add margin to all cells after the actions\n\t\t\t& ~ td,\n\t\t\t& ~ th {\n\t\t\t\tmargin: 0 var(--cell-margin);\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t\t.button-vue__text {\n\t\t\t\t\t// Remove bold from default button styling\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t}\n\t\t\t\t&:not(:hover, :focus, :active) .button-vue__wrapper {\n\t\t\t\t\t// Also apply color-text-maxcontrast to non-active button\n\t\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-mtime,\n\t\t.files-list__row-size {\n\t\t\t// Right align text\n\t\t\tjustify-content: flex-end;\n\t\t\twidth: calc(var(--row-height) * 1.5);\n\t\t\t// opacity varies with the size\n\t\t\tcolor: var(--color-main-text);\n\n\t\t\t// Icon is before text since size is right aligned\n\t\t\t.files-list__column-sort-button {\n\t\t\t\tpadding: 0 16px 0 4px !important;\n\t\t\t\t.button-vue__wrapper {\n\t\t\t\t\tflex-direction: row;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-mtime {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\n\t\t.files-list__row-column-custom {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]),t.Z=i},38710:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".app-navigation-entry__settings-quota--not-unlimited[data-v-0df392ce] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-0df392ce]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}","",{version:3,sources:["webpack://./apps/files/src/components/NavigationQuota.vue"],names:[],mappings:"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA",sourcesContent:["\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n"],sourceRoot:""}]),t.Z=i},67679:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".template-picker__item[data-v-5b09ec60]{display:flex}.template-picker__label[data-v-5b09ec60]{display:flex;align-items:center;flex:1 1;flex-direction:column}.template-picker__label[data-v-5b09ec60],.template-picker__label *[data-v-5b09ec60]{cursor:pointer;user-select:none}.template-picker__label[data-v-5b09ec60]::before{display:none !important}.template-picker__preview[data-v-5b09ec60]{display:block;overflow:hidden;flex:1 1;width:var(--width);min-height:var(--height);max-height:var(--height);padding:0;border:var(--border) solid var(--color-border);border-radius:var(--border-radius-large)}input:checked+label>.template-picker__preview[data-v-5b09ec60]{border-color:var(--color-primary-element)}.template-picker__preview--failed[data-v-5b09ec60]{display:flex}.template-picker__image[data-v-5b09ec60]{max-width:100%;background-color:var(--color-main-background);object-fit:cover}.template-picker__preview--failed .template-picker__image[data-v-5b09ec60]{width:calc(var(--margin)*8);margin:auto;background-color:rgba(0,0,0,0) !important;object-fit:initial}.template-picker__title[data-v-5b09ec60]{overflow:hidden;max-width:calc(var(--width) + 4px);padding:var(--margin);white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/TemplatePreview.vue"],names:[],mappings:"AAGC,wCACC,YAAA,CAGD,yCACC,YAAA,CAEA,kBAAA,CACA,QAAA,CACA,qBAAA,CAEA,oFACC,cAAA,CACA,gBAAA,CAGD,iDACC,uBAAA,CAIF,2CACC,aAAA,CACA,eAAA,CAEA,QAAA,CACA,kBAAA,CACA,wBAAA,CACA,wBAAA,CACA,SAAA,CACA,8CAAA,CACA,wCAAA,CAEA,+DACC,yCAAA,CAGD,mDAEC,YAAA,CAIF,yCACC,cAAA,CACA,6CAAA,CAEA,gBAAA,CAID,2EACC,2BAAA,CAEA,WAAA,CACA,yCAAA,CAEA,kBAAA,CAGD,yCACC,eAAA,CAEA,kCAAA,CACA,qBAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n\n.template-picker {\n\t&__item {\n\t\tdisplay: flex;\n\t}\n\n\t&__label {\n\t\tdisplay: flex;\n\t\t// Align in the middle of the grid\n\t\talign-items: center;\n\t\tflex: 1 1;\n\t\tflex-direction: column;\n\n\t\t&, * {\n\t\t\tcursor: pointer;\n\t\t\tuser-select: none;\n\t\t}\n\n\t\t&::before {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n\n\t&__preview {\n\t\tdisplay: block;\n\t\toverflow: hidden;\n\t\t// Stretch so all entries are the same width\n\t\tflex: 1 1;\n\t\twidth: var(--width);\n\t\tmin-height: var(--height);\n\t\tmax-height: var(--height);\n\t\tpadding: 0;\n\t\tborder: var(--border) solid var(--color-border);\n\t\tborder-radius: var(--border-radius-large);\n\n\t\tinput:checked + label > & {\n\t\t\tborder-color: var(--color-primary-element);\n\t\t}\n\n\t\t&--failed {\n\t\t\t// Make sure to properly center fallback icon\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\n\t&__image {\n\t\tmax-width: 100%;\n\t\tbackground-color: var(--color-main-background);\n\n\t\tobject-fit: cover;\n\t}\n\n\t// Failed preview, fallback to mime icon\n\t&__preview--failed &__image {\n\t\twidth: calc(var(--margin) * 8);\n\t\t// Center mime icon\n\t\tmargin: auto;\n\t\tbackground-color: transparent !important;\n\n\t\tobject-fit: initial;\n\t}\n\n\t&__title {\n\t\toverflow: hidden;\n\t\t// also count preview border\n\t\tmax-width: calc(var(--width) + 2*2px);\n\t\tpadding: var(--margin);\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]),t.Z=i},78233:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".app-content[data-v-37471899]{display:flex;overflow:hidden;flex-direction:column;max-height:100%}.files-list__header[data-v-37471899]{display:flex;align-content:center;flex:0 0;margin:4px 4px 4px 50px}.files-list__header>*[data-v-37471899]{flex:0 0}.files-list__header-share-button[data-v-37471899]{opacity:.3}.files-list__header-share-button--shared[data-v-37471899]{opacity:1}.files-list__refresh-icon[data-v-37471899]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-37471899]{margin:auto}","",{version:3,sources:["webpack://./apps/files/src/views/FilesList.vue"],names:[],mappings:"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CAOA,qCACC,YAAA,CACA,oBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,uCAGC,QAAA,CAGD,kDACC,UAAA,CACA,0DACC,SAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA",sourcesContent:["\n.app-content {\n\t// Virtual list needs to be full height and is scrollable\n\tdisplay: flex;\n\toverflow: hidden;\n\tflex-direction: column;\n\tmax-height: 100%;\n}\n\n$margin: 4px;\n$navigationToggleSize: 50px;\n\n.files-list {\n\t&__header {\n\t\tdisplay: flex;\n\t\talign-content: center;\n\t\t// Do not grow or shrink (vertically)\n\t\tflex: 0 0;\n\t\t// Align with the navigation toggle icon\n\t\tmargin: $margin $margin $margin $navigationToggleSize;\n\t\t> * {\n\t\t\t// Do not grow or shrink (horizontally)\n\t\t\t// Only the breadcrumbs shrinks\n\t\t\tflex: 0 0;\n\t\t}\n\n\t\t&-share-button {\n\t\t\topacity: .3;\n\t\t\t&--shared {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__refresh-icon {\n\t\tflex: 0 0 44px;\n\t\twidth: 44px;\n\t\theight: 44px;\n\t}\n\n\t&__loading-icon {\n\t\tmargin: auto;\n\t}\n}\n\n"],sourceRoot:""}]),t.Z=i},24924:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".app-navigation[data-v-5b025a97] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation>ul.app-navigation__list[data-v-5b025a97]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-5b025a97]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}","",{version:3,sources:["webpack://./apps/files/src/views/Navigation.vue"],names:[],mappings:"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA",sourcesContent:["\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\n.app-navigation::v-deep .app-navigation-entry-icon {\n\tbackground-repeat: no-repeat;\n\tbackground-position: center;\n}\n\n.app-navigation > ul.app-navigation__list {\n\t// Use flex gap value for more elegant spacing\n\tpadding-bottom: var(--default-grid-baseline, 4px);\n}\n\n.app-navigation-entry__settings {\n\theight: auto !important;\n\toverflow: hidden !important;\n\tpadding-top: 0 !important;\n\t// Prevent shrinking or growing\n\tflex: 0 0 auto;\n}\n"],sourceRoot:""}]),t.Z=i},72277:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".setting-link[data-v-7aaa0c4e]:hover{text-decoration:underline}","",{version:3,sources:["webpack://./apps/files/src/views/Settings.vue"],names:[],mappings:"AACA,qCACC,yBAAA",sourcesContent:["\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n"],sourceRoot:""}]),t.Z=i},54654:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,".templates-picker__form[data-v-d46f1dc6]{padding:calc(var(--margin)*2);padding-bottom:0}.templates-picker__form h2[data-v-d46f1dc6]{text-align:center;font-weight:bold;margin:var(--margin) 0 calc(var(--margin)*2)}.templates-picker__list[data-v-d46f1dc6]{display:grid;grid-gap:calc(var(--margin)*2);grid-auto-columns:1fr;max-width:calc(var(--fullwidth)*6);grid-template-columns:repeat(auto-fit, var(--fullwidth));grid-auto-rows:1fr;justify-content:center}.templates-picker__buttons[data-v-d46f1dc6]{display:flex;justify-content:end;padding:calc(var(--margin)*2) var(--margin);position:sticky;bottom:0;background-image:linear-gradient(0, var(--gradient-main-background))}.templates-picker__buttons button[data-v-d46f1dc6],.templates-picker__buttons input[type=submit][data-v-d46f1dc6]{height:44px}.templates-picker[data-v-d46f1dc6] .modal-container{position:relative}.templates-picker__loading[data-v-d46f1dc6]{position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;margin:0;background-color:var(--color-main-background-translucent)}","",{version:3,sources:["webpack://./apps/files/src/views/TemplatePicker.vue"],names:[],mappings:"AAEC,yCACC,6BAAA,CAEA,gBAAA,CAEA,4CACC,iBAAA,CACA,gBAAA,CACA,4CAAA,CAIF,yCACC,YAAA,CACA,8BAAA,CACA,qBAAA,CAEA,kCAAA,CACA,wDAAA,CAEA,kBAAA,CAEA,sBAAA,CAGD,4CACC,YAAA,CACA,mBAAA,CACA,2CAAA,CACA,eAAA,CACA,QAAA,CACA,oEAAA,CAEA,kHACC,WAAA,CAKF,oDACC,iBAAA,CAGD,4CACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,yDAAA",sourcesContent:["\n.templates-picker {\n\t&__form {\n\t\tpadding: calc(var(--margin) * 2);\n\t\t// Will be handled by the buttons\n\t\tpadding-bottom: 0;\n\n\t\th2 {\n\t\t\ttext-align: center;\n\t\t\tfont-weight: bold;\n\t\t\tmargin: var(--margin) 0 calc(var(--margin) * 2);\n\t\t}\n\t}\n\n\t&__list {\n\t\tdisplay: grid;\n\t\tgrid-gap: calc(var(--margin) * 2);\n\t\tgrid-auto-columns: 1fr;\n\t\t// We want maximum 5 columns. Putting 6 as we don't count the grid gap. So it will always be lower than 6\n\t\tmax-width: calc(var(--fullwidth) * 6);\n\t\tgrid-template-columns: repeat(auto-fit, var(--fullwidth));\n\t\t// Make sure all rows are the same height\n\t\tgrid-auto-rows: 1fr;\n\t\t// Center the columns set\n\t\tjustify-content: center;\n\t}\n\n\t&__buttons {\n\t\tdisplay: flex;\n\t\tjustify-content: end;\n\t\tpadding: calc(var(--margin) * 2) var(--margin);\n\t\tposition: sticky;\n\t\tbottom: 0;\n\t\tbackground-image: linear-gradient(0, var(--gradient-main-background));\n\n\t\tbutton, input[type='submit'] {\n\t\t\theight: 44px;\n\t\t}\n\t}\n\n\t// Make sure we're relative for the loading emptycontent on top\n\t::v-deep .modal-container {\n\t\tposition: relative;\n\t}\n\n\t&__loading {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmargin: 0;\n\t\tbackground-color: var(--color-main-background-translucent);\n\t}\n}\n\n"],sourceRoot:""}]),t.Z=i},14604:function(e,t,n){"use strict";var a=n(87537),o=n.n(a),r=n(23645),i=n.n(r)()(o());i.push([e.id,"\n/* @keyframes preview-gradient-fade {\n 0% {\n opacity: 1;\n }\n 50% {\n opacity: 0.5;\n }\n 100% {\n opacity: 1;\n }\n} */\n","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry.vue"],names:[],mappings:";AAs7BA;;;;;;;;;;GAUA",sourcesContent:["\x3c!--\n - @copyright Copyright (c) 2023 John Molakvoæ \n -\n - @author John Molakvoæ \n -\n - @license AGPL-3.0-or-later\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 .\n -\n --\x3e\n\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=script&lang=js&\"","/**\n * @copyright Copyright (c) 2021 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nconst encodeFilePath = function(path) {\n\tconst pathSections = (path.startsWith('/') ? path : `/${path}`).split('/')\n\tlet relativePath = ''\n\tpathSections.forEach((section) => {\n\t\tif (section !== '') {\n\t\t\trelativePath += '/' + encodeURIComponent(section)\n\t\t}\n\t})\n\treturn relativePath\n}\n\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nconst extractFilePaths = function(path) {\n\tconst pathSections = path.split('/')\n\tconst fileName = pathSections[pathSections.length - 1]\n\tconst dirPath = pathSections.slice(0, pathSections.length - 1).join('/')\n\treturn [dirPath, fileName]\n}\n\nexport { encodeFilePath, extractFilePaths }\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./TemplatePreview.vue?vue&type=template&id=5b09ec60&scoped=true&\"\nimport script from \"./TemplatePreview.vue?vue&type=script&lang=js&\"\nexport * from \"./TemplatePreview.vue?vue&type=script&lang=js&\"\nimport style0 from \"./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\"\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 \"5b09ec60\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('li',{staticClass:\"template-picker__item\"},[_c('input',{staticClass:\"radio\",attrs:{\"id\":_vm.id,\"type\":\"radio\",\"name\":\"template-picker\"},domProps:{\"checked\":_vm.checked},on:{\"change\":_vm.onCheck}}),_vm._v(\" \"),_c('label',{staticClass:\"template-picker__label\",attrs:{\"for\":_vm.id}},[_c('div',{staticClass:\"template-picker__preview\",class:_vm.failedPreview ? 'template-picker__preview--failed' : ''},[_c('img',{staticClass:\"template-picker__image\",attrs:{\"src\":_vm.realPreviewUrl,\"alt\":\"\",\"draggable\":\"false\"},on:{\"error\":_vm.onFailure}})]),_vm._v(\" \"),_c('span',{staticClass:\"template-picker__title\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.nameWithoutExt)+\"\\n\\t\\t\")])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./TemplatePicker.vue?vue&type=template&id=d46f1dc6&scoped=true&\"\nimport script from \"./TemplatePicker.vue?vue&type=script&lang=js&\"\nexport * from \"./TemplatePicker.vue?vue&type=script&lang=js&\"\nimport style0 from \"./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\"\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 \"d46f1dc6\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.opened)?_c('NcModal',{staticClass:\"templates-picker\",attrs:{\"clear-view-delay\":-1,\"size\":\"large\"},on:{\"close\":_vm.close}},[_c('form',{staticClass:\"templates-picker__form\",style:(_vm.style),on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onSubmit.apply(null, arguments)}}},[_c('h2',[_vm._v(_vm._s(_vm.t('files', 'Pick a template for {name}', { name: _vm.nameWithoutExt })))]),_vm._v(\" \"),_c('ul',{staticClass:\"templates-picker__list\"},[_c('TemplatePreview',_vm._b({attrs:{\"checked\":_vm.checked === _vm.emptyTemplate.fileid},on:{\"check\":_vm.onCheck}},'TemplatePreview',_vm.emptyTemplate,false)),_vm._v(\" \"),_vm._l((_vm.provider.templates),function(template){return _c('TemplatePreview',_vm._b({key:template.fileid,attrs:{\"checked\":_vm.checked === template.fileid,\"ratio\":_vm.provider.ratio},on:{\"check\":_vm.onCheck}},'TemplatePreview',template,false))})],2),_vm._v(\" \"),_c('div',{staticClass:\"templates-picker__buttons\"},[_c('input',{staticClass:\"primary\",attrs:{\"type\":\"submit\",\"aria-label\":_vm.t('files', 'Create a new file with the selected template')},domProps:{\"value\":_vm.t('files', 'Create')}})])]),_vm._v(\" \"),(_vm.loading)?_c('NcEmptyContent',{staticClass:\"templates-picker__loading\",attrs:{\"icon\":\"icon-loading\"}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('files', 'Creating file'))+\"\\n\\t\")]):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2020 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Julius Härtl \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { getLoggerBuilder } from '@nextcloud/logger'\nimport { loadState } from '@nextcloud/initial-state'\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n'\nimport { generateOcsUrl } from '@nextcloud/router'\nimport { getCurrentDirectory } from './utils/davUtils.js'\nimport axios from '@nextcloud/axios'\nimport Vue from 'vue'\n\nimport TemplatePickerView from './views/TemplatePicker.vue'\nimport { showError } from '@nextcloud/dialogs'\n\n// Set up logger\nconst logger = getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n\n// Add translates functions\nVue.mixin({\n\tmethods: {\n\t\tt,\n\t\tn,\n\t},\n})\n\n// Create document root\nconst TemplatePickerRoot = document.createElement('div')\nTemplatePickerRoot.id = 'template-picker'\ndocument.body.appendChild(TemplatePickerRoot)\n\n// Retrieve and init templates\nlet templates = loadState('files', 'templates', [])\nlet templatesPath = loadState('files', 'templates_path', false)\nlogger.debug('Templates providers', templates)\nlogger.debug('Templates folder', { templatesPath })\n\n// Init vue app\nconst View = Vue.extend(TemplatePickerView)\nconst TemplatePicker = new View({\n\tname: 'TemplatePicker',\n\tpropsData: {\n\t\tlogger,\n\t},\n})\nTemplatePicker.$mount('#template-picker')\n\n// Init template engine after load to make sure it's the last injected entry\nwindow.addEventListener('DOMContentLoaded', function() {\n\tif (!templatesPath) {\n\t\tlogger.debug('Templates folder not initialized')\n\t\tconst initTemplatesPlugin = {\n\t\t\tattach(menu) {\n\t\t\t\t// register the new menu entry\n\t\t\t\tmenu.addMenuEntry({\n\t\t\t\t\tid: 'template-init',\n\t\t\t\t\tdisplayName: t('files', 'Set up templates folder'),\n\t\t\t\t\ttemplateName: t('files', 'Templates'),\n\t\t\t\t\ticonClass: 'icon-template-add',\n\t\t\t\t\tfileType: 'file',\n\t\t\t\t\tactionLabel: t('files', 'Create new templates folder'),\n\t\t\t\t\tactionHandler(name) {\n\t\t\t\t\t\tinitTemplatesFolder(name)\n\t\t\t\t\t\tmenu.removeMenuEntry('template-init')\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t},\n\t\t}\n\t\tOC.Plugins.register('OCA.Files.NewFileMenu', initTemplatesPlugin)\n\t}\n})\n\n// Init template files menu\ntemplates.forEach((provider, index) => {\n\tconst newTemplatePlugin = {\n\t\tattach(menu) {\n\t\t\tconst fileList = menu.fileList\n\n\t\t\t// only attach to main file list, public view is not supported yet\n\t\t\tif (fileList.id !== 'files' && fileList.id !== 'files.public') {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\t// register the new menu entry\n\t\t\tmenu.addMenuEntry({\n\t\t\t\tid: `template-new-${provider.app}-${index}`,\n\t\t\t\tdisplayName: provider.label,\n\t\t\t\ttemplateName: provider.label + provider.extension,\n\t\t\t\ticonClass: provider.iconClass || 'icon-file',\n\t\t\t\tfileType: 'file',\n\t\t\t\tactionLabel: provider.actionLabel,\n\t\t\t\tactionHandler(name) {\n\t\t\t\t\tTemplatePicker.open(name, provider)\n\t\t\t\t},\n\t\t\t})\n\t\t},\n\t}\n\tOC.Plugins.register('OCA.Files.NewFileMenu', newTemplatePlugin)\n})\n\n/**\n * Init the template directory\n *\n * @param {string} name the templates folder name\n */\nconst initTemplatesFolder = async function(name) {\n\tconst templatePath = (getCurrentDirectory() + `/${name}`).replace('//', '/')\n\ttry {\n\t\tlogger.debug('Initializing the templates directory', { templatePath })\n\t\tconst response = await axios.post(generateOcsUrl('apps/files/api/v1/templates/path'), {\n\t\t\ttemplatePath,\n\t\t\tcopySystemTemplates: true,\n\t\t})\n\n\t\t// Go to template directory\n\t\tOCA.Files.App.currentFileList.changeDirectory(templatePath, true, true)\n\n\t\ttemplates = response.data.ocs.data.templates\n\t\ttemplatesPath = response.data.ocs.data.template_path\n\t} catch (error) {\n\t\tlogger.error('Unable to initialize the templates directory')\n\t\tshowError(t('files', 'Unable to initialize the templates directory'))\n\t}\n}\n","/*\n * @copyright Copyright (c) 2021 Julius Härtl \n *\n * @author Julius Härtl \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { subscribe } from '@nextcloud/event-bus'\n\n(function() {\n\n\tconst FilesPlugin = {\n\t\tattach(fileList) {\n\t\t\tsubscribe('nextcloud:unified-search.search', ({ query }) => {\n\t\t\t\tfileList.setFilter(query)\n\t\t\t})\n\t\t\tsubscribe('nextcloud:unified-search.reset', () => {\n\t\t\t\tthis.query = null\n\t\t\t\tfileList.setFilter('')\n\t\t\t})\n\n\t\t},\n\t}\n\n\twindow.OC.Plugins.register('OCA.Files.FileList', FilesPlugin)\n\n})()\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { Permission, Node, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport TrashCanSvg from '@mdi/svg/svg/trash-can.svg?raw';\nimport logger from '../logger.js';\nexport const action = new FileAction({\n id: 'delete',\n displayName(nodes, view) {\n return view.id === 'trashbin'\n ? t('files_trashbin', 'Delete permanently')\n : t('files', 'Delete');\n },\n iconSvgInline: () => TrashCanSvg,\n enabled(nodes) {\n return nodes.length > 0 && nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.DELETE) !== 0);\n },\n async exec(node) {\n try {\n await axios.delete(node.source);\n // Let's delete even if it's moved to the trashbin\n // since it has been removed from the current view\n // and changing the view will trigger a reload anyway.\n emit('files:node:deleted', node);\n return true;\n }\n catch (error) {\n logger.error('Error while deleting a file', { error, source: node.source, node });\n return false;\n }\n },\n async execBatch(nodes, view, dir) {\n return Promise.all(nodes.map(node => this.exec(node, view, dir)));\n },\n order: 100,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router';\nimport { registerFileAction, FileAction, Permission, Node, FileType, View } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport ArrowDownSvg from '@mdi/svg/svg/arrow-down.svg?raw';\nconst triggerDownload = function (url) {\n const hiddenElement = document.createElement('a');\n hiddenElement.download = '';\n hiddenElement.href = url;\n hiddenElement.click();\n};\nconst downloadNodes = function (dir, nodes) {\n const secret = Math.random().toString(36).substring(2);\n const url = generateUrl('/apps/files/ajax/download.php?dir={dir}&files={files}&downloadStartSecret={secret}', {\n dir,\n secret,\n files: JSON.stringify(nodes.map(node => node.basename)),\n });\n triggerDownload(url);\n};\nexport const action = new FileAction({\n id: 'download',\n displayName: () => t('files', 'Download'),\n iconSvgInline: () => ArrowDownSvg,\n enabled(nodes) {\n if (nodes.length === 0) {\n return false;\n }\n // We can download direct dav files. But if we have\n // some folders, we need to use the /apps/files/ajax/download.php\n // endpoint, which only supports user root folder.\n if (nodes.some(node => node.type === FileType.Folder)\n && !nodes.every(node => node.root?.startsWith('/files'))) {\n return false;\n }\n return nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.READ) !== 0);\n },\n async exec(node, view, dir) {\n if (node.type === FileType.Folder) {\n downloadNodes(dir, [node]);\n return null;\n }\n triggerDownload(node.source);\n return null;\n },\n async execBatch(nodes, view, dir) {\n if (nodes.length === 1) {\n this.exec(nodes[0], view, dir);\n return [null];\n }\n downloadNodes(dir, nodes);\n return new Array(nodes.length).fill(null);\n },\n order: 30,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { encodePath } from '@nextcloud/paths';\nimport { generateOcsUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { registerFileAction, FileAction, Permission } from '@nextcloud/files';\nimport { showError } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport LaptopSvg from '@mdi/svg/svg/laptop.svg?raw';\nconst openLocalClient = async function (path) {\n const link = generateOcsUrl('apps/files/api/v1') + '/openlocaleditor?format=json';\n try {\n const result = await axios.post(link, { path });\n const uid = getCurrentUser()?.uid;\n let url = `nc://open/${uid}@` + window.location.host + encodePath(path);\n url += '?token=' + result.data.ocs.data.token;\n window.location.href = url;\n }\n catch (error) {\n showError(t('files', 'Failed to redirect to client'));\n }\n};\nexport const action = new FileAction({\n id: 'edit-locally',\n displayName: () => t('files', 'Edit locally'),\n iconSvgInline: () => LaptopSvg,\n // Only works on single files\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n return (nodes[0].permissions & Permission.UPDATE) !== 0;\n },\n async exec(node) {\n openLocalClient(node.path);\n return null;\n },\n order: 25,\n});\nif (!/Android|iPhone|iPad|iPod/i.test(navigator.userAgent)) {\n registerFileAction(action);\n}\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { Permission, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nimport StarOutlineSvg from '@mdi/svg/svg/star-outline.svg?raw';\nimport StarSvg from '@mdi/svg/svg/star.svg?raw';\nimport logger from '../logger.js';\n// If any of the nodes is not favorited, we display the favorite action.\nconst shouldFavorite = (nodes) => {\n return nodes.some(node => node.attributes.favorite !== 1);\n};\nexport const favoriteNode = async (node, view, willFavorite) => {\n try {\n // TODO: migrate to webdav tags plugin\n const url = generateUrl('/apps/files/api/v1/files') + node.path;\n await axios.post(url, {\n tags: willFavorite\n ? [window.OC.TAG_FAVORITE]\n : [],\n });\n // Let's delete if we are in the favourites view\n // AND if it is removed from the user favorites\n // AND it's in the root of the favorites view\n if (view.id === 'favorites' && !willFavorite && node.dirname === '/') {\n emit('files:node:deleted', node);\n }\n // Update the node webdav attribute\n Vue.set(node.attributes, 'favorite', willFavorite ? 1 : 0);\n // Dispatch event to whoever is interested\n if (willFavorite) {\n emit('files:favorites:added', node);\n }\n else {\n emit('files:favorites:removed', node);\n }\n return true;\n }\n catch (error) {\n const action = willFavorite ? 'adding a file to favourites' : 'removing a file from favourites';\n logger.error('Error while ' + action, { error, source: node.source, node });\n return false;\n }\n};\nexport const action = new FileAction({\n id: 'favorite',\n displayName(nodes) {\n return shouldFavorite(nodes)\n ? t('files', 'Add to favorites')\n : t('files', 'Remove from favorites');\n },\n iconSvgInline: (nodes) => {\n return shouldFavorite(nodes)\n ? StarOutlineSvg\n : StarSvg;\n },\n enabled(nodes) {\n // We can only favorite nodes within files and with permissions\n return !nodes.some(node => !node.root?.startsWith?.('/files'))\n && nodes.every(node => node.permissions !== Permission.NONE);\n },\n async exec(node, view) {\n const willFavorite = shouldFavorite([node]);\n return await favoriteNode(node, view, willFavorite);\n },\n async execBatch(nodes, view) {\n const willFavorite = shouldFavorite(nodes);\n return Promise.all(nodes.map(async (node) => await favoriteNode(node, view, willFavorite)));\n },\n order: -50,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { join } from 'path';\nimport { Permission, Node, FileType, View, registerFileAction, FileAction, DefaultType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nexport const action = new FileAction({\n id: 'open-folder',\n displayName(files) {\n // Only works on single node\n const displayName = files[0].attributes.displayName || files[0].basename;\n return t('files', 'Open folder {displayName}', { displayName });\n },\n iconSvgInline: () => FolderSvg,\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n if (!node.isDavRessource) {\n return false;\n }\n return node.type === FileType.Folder\n && (node.permissions & Permission.READ) !== 0;\n },\n async exec(node, view, dir) {\n if (!node || node.type !== FileType.Folder) {\n return false;\n }\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: undefined }, { dir: join(dir, node.basename), fileid: undefined });\n return null;\n },\n // Main action if enabled, meaning folders only\n default: DefaultType.HIDDEN,\n order: -100,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport { FileType } from '@nextcloud/files';\nimport { registerFileAction, FileAction, DefaultType } from '@nextcloud/files';\n/**\n * TODO: Move away from a redirect and handle\n * navigation straight out of the recent view\n */\nexport const action = new FileAction({\n id: 'open-in-files-recent',\n displayName: () => t('files', 'Open in Files'),\n iconSvgInline: () => '',\n enabled: (nodes, view) => view.id === 'recent',\n async exec(node) {\n let dir = node.dirname;\n if (node.type === FileType.Folder) {\n dir = dir + '/' + node.basename;\n }\n window.OCP.Files.Router.goToRoute(null, // use default route\n { view: 'files', fileid: node.fileid }, { dir, fileid: node.fileid });\n return null;\n },\n // Before openFolderAction\n order: -1000,\n default: DefaultType.HIDDEN,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { Permission, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport PencilSvg from '@mdi/svg/svg/pencil.svg?raw';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: 'rename',\n displayName: () => t('files', 'Rename'),\n iconSvgInline: () => PencilSvg,\n enabled: (nodes) => {\n return nodes.length > 0 && nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.UPDATE) !== 0);\n },\n async exec(node) {\n // Renaming is a built-in feature of the files app\n emit('files:node:rename', node);\n return null;\n },\n order: 10,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Permission, View, registerFileAction, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: ACTION_DETAILS,\n displayName: () => t('files', 'Open details'),\n iconSvgInline: () => InformationSvg,\n // Sidebar currently supports user folder only, /files/USER\n enabled: (nodes) => {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n if (!nodes[0]) {\n return false;\n }\n // Only work if the sidebar is available\n if (!window?.OCA?.Files?.Sidebar) {\n return false;\n }\n return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n },\n async exec(node, view, dir) {\n try {\n // TODO: migrate Sidebar to use a Node instead\n await window.OCA.Files.Sidebar.open(node.path);\n // Silently update current fileid\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n return null;\n }\n catch (error) {\n logger.error('Error while opening sidebar', { error });\n return false;\n }\n },\n order: -50,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Node, FileType, Permission, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nexport const action = new FileAction({\n id: 'view-in-folder',\n displayName() {\n return t('files', 'View in folder');\n },\n iconSvgInline: () => FolderMoveSvg,\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n if (!node.isDavRessource) {\n return false;\n }\n if (node.permissions === Permission.NONE) {\n return false;\n }\n return node.type === FileType.File;\n },\n async exec(node, view, dir) {\n if (!node || node.type !== FileType.File) {\n return false;\n }\n window.OCP.Files.Router.goToRoute(null, { view: 'files', fileid: node.fileid }, { dir: node.dirname });\n return null;\n },\n order: 80,\n});\nregisterFileAction(action);\n","import { addNewFileMenuEntry, Permission, Folder } from '@nextcloud/files';\nimport { basename, extname } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { showSuccess } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport FolderPlusSvg from '@mdi/svg/svg/folder-plus.svg?raw';\nimport Vue from 'vue';\nconst createNewFolder = async (root, name) => {\n const source = root + '/' + name;\n const response = await axios({\n method: 'MKCOL',\n url: source,\n headers: {\n Overwrite: 'F',\n },\n });\n return {\n fileid: parseInt(response.headers['oc-fileid']),\n source,\n };\n};\n// TODO: move to @nextcloud/files\nexport const getUniqueName = (name, names) => {\n let newName = name;\n let i = 1;\n while (names.includes(newName)) {\n const ext = extname(name);\n newName = `${basename(name, ext)} (${i++})${ext}`;\n }\n return newName;\n};\nconst entry = {\n id: 'newFolder',\n displayName: t('files', 'New folder'),\n if: (context) => (context.permissions & Permission.CREATE) !== 0,\n iconSvgInline: FolderPlusSvg,\n async handler(context, content) {\n const contentNames = content.map((node) => node.basename);\n const name = getUniqueName(t('files', 'New folder'), contentNames);\n const { fileid, source } = await createNewFolder(context.source, name);\n // Create the folder in the store\n const folder = new Folder({\n source,\n id: fileid,\n mtime: new Date(),\n owner: getCurrentUser()?.uid || null,\n permissions: Permission.ALL,\n root: context?.root || '/files/' + getCurrentUser()?.uid,\n });\n if (!context._children) {\n Vue.set(context, '_children', []);\n }\n context._children.push(folder.fileid);\n showSuccess(t('files', 'Created new folder \"{name}\"', { name: basename(source) }));\n emit('files:node:created', folder);\n emit('files:node:rename', folder);\n },\n};\naddNewFileMenuEntry(entry);\n","import Vue from 'vue'\nimport { getCurrentInstance } from 'vue'\n\nvar isVue2 = true\nvar isVue3 = false\nvar Vue2 = Vue\nvar warn = Vue.util.warn\n\nfunction install() {}\n\n// createApp polyfill\nexport function createApp(rootComponent, rootProps) {\n var vm\n var provide = {}\n var app = {\n config: Vue.config,\n use: Vue.use.bind(Vue),\n mixin: Vue.mixin.bind(Vue),\n component: Vue.component.bind(Vue),\n provide: function (key, value) {\n provide[key] = value\n return this\n },\n directive: function (name, dir) {\n if (dir) {\n Vue.directive(name, dir)\n return app\n } else {\n return Vue.directive(name)\n }\n },\n mount: function (el, hydrating) {\n if (!vm) {\n vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))\n vm.$mount(el, hydrating)\n return vm\n } else {\n return vm\n }\n },\n unmount: function () {\n if (vm) {\n vm.$destroy()\n vm = undefined\n }\n },\n }\n return app\n}\n\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n warn\n}\n\n// Vue 3 components mock\nfunction createMockComponent(name) {\n return {\n setup() {\n throw new Error('[vue-demi] ' + name + ' is not supported in Vue 2. It\\'s provided to avoid compiler errors.')\n }\n }\n}\nexport var Fragment = /*#__PURE__*/ createMockComponent('Fragment')\nexport var Transition = /*#__PURE__*/ createMockComponent('Transition')\nexport var TransitionGroup = /*#__PURE__*/ createMockComponent('TransitionGroup')\nexport var Teleport = /*#__PURE__*/ createMockComponent('Teleport')\nexport var Suspense = /*#__PURE__*/ createMockComponent('Suspense')\nexport var KeepAlive = /*#__PURE__*/ createMockComponent('KeepAlive')\n\nexport * from 'vue'\n\n// Not implemented https://github.com/vuejs/core/pull/8111, falls back to getCurrentInstance()\nexport function hasInjectionContext() {\n return !!getCurrentInstance()\n}\n","export function getDevtoolsGlobalHook() {\n return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;\n}\nexport function getTarget() {\n // @ts-ignore\n return (typeof navigator !== 'undefined' && typeof window !== 'undefined')\n ? window\n : typeof global !== 'undefined'\n ? global\n : {};\n}\nexport const isProxyAvailable = typeof Proxy === 'function';\n","export const HOOK_SETUP = 'devtools-plugin:setup';\nexport const HOOK_PLUGIN_SETTINGS_SET = 'plugin:settings:set';\n","let supported;\nlet perf;\nexport function isPerformanceSupported() {\n var _a;\n if (supported !== undefined) {\n return supported;\n }\n if (typeof window !== 'undefined' && window.performance) {\n supported = true;\n perf = window.performance;\n }\n else if (typeof global !== 'undefined' && ((_a = global.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) {\n supported = true;\n perf = global.perf_hooks.performance;\n }\n else {\n supported = false;\n }\n return supported;\n}\nexport function now() {\n return isPerformanceSupported() ? perf.now() : Date.now();\n}\n","import { HOOK_PLUGIN_SETTINGS_SET } from './const.js';\nimport { now } from './time.js';\nexport class ApiProxy {\n constructor(plugin, hook) {\n this.target = null;\n this.targetQueue = [];\n this.onQueue = [];\n this.plugin = plugin;\n this.hook = hook;\n const defaultSettings = {};\n if (plugin.settings) {\n for (const id in plugin.settings) {\n const item = plugin.settings[id];\n defaultSettings[id] = item.defaultValue;\n }\n }\n const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`;\n let currentSettings = Object.assign({}, defaultSettings);\n try {\n const raw = localStorage.getItem(localSettingsSaveId);\n const data = JSON.parse(raw);\n Object.assign(currentSettings, data);\n }\n catch (e) {\n // noop\n }\n this.fallbacks = {\n getSettings() {\n return currentSettings;\n },\n setSettings(value) {\n try {\n localStorage.setItem(localSettingsSaveId, JSON.stringify(value));\n }\n catch (e) {\n // noop\n }\n currentSettings = value;\n },\n now() {\n return now();\n },\n };\n if (hook) {\n hook.on(HOOK_PLUGIN_SETTINGS_SET, (pluginId, value) => {\n if (pluginId === this.plugin.id) {\n this.fallbacks.setSettings(value);\n }\n });\n }\n this.proxiedOn = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target.on[prop];\n }\n else {\n return (...args) => {\n this.onQueue.push({\n method: prop,\n args,\n });\n };\n }\n },\n });\n this.proxiedTarget = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target[prop];\n }\n else if (prop === 'on') {\n return this.proxiedOn;\n }\n else if (Object.keys(this.fallbacks).includes(prop)) {\n return (...args) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve: () => { },\n });\n return this.fallbacks[prop](...args);\n };\n }\n else {\n return (...args) => {\n return new Promise(resolve => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve,\n });\n });\n };\n }\n },\n });\n }\n async setRealTarget(target) {\n this.target = target;\n for (const item of this.onQueue) {\n this.target.on[item.method](...item.args);\n }\n for (const item of this.targetQueue) {\n item.resolve(await this.target[item.method](...item.args));\n }\n }\n}\n","import { getTarget, getDevtoolsGlobalHook, isProxyAvailable } from './env.js';\nimport { HOOK_SETUP } from './const.js';\nimport { ApiProxy } from './proxy.js';\nexport * from './api/index.js';\nexport * from './plugin.js';\nexport * from './time.js';\nexport function setupDevtoolsPlugin(pluginDescriptor, setupFn) {\n const descriptor = pluginDescriptor;\n const target = getTarget();\n const hook = getDevtoolsGlobalHook();\n const enableProxy = isProxyAvailable && descriptor.enableEarlyProxy;\n if (hook && (target.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !enableProxy)) {\n hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);\n }\n else {\n const proxy = enableProxy ? new ApiProxy(descriptor, hook) : null;\n const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];\n list.push({\n pluginDescriptor: descriptor,\n setupFn,\n proxy,\n });\n if (proxy)\n setupFn(proxy.proxiedTarget);\n }\n}\n","/*!\n * pinia v2.1.6\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly = { readonly [P in keyof T]: DeepReadonly }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '🍍 ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n // No longer available :(\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n loadStoresState(pinia, JSON.parse(text));\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nfunction loadStoresState(pinia, state) {\n for (const key in state) {\n const storeState = pinia.state.value[key];\n if (storeState) {\n Object.assign(storeState, state[key]);\n }\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia 🍍`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia 🍍',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('🍍')) {\n const storeId = payload.type.replace(/^🍍\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages ⚡️',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛫 ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛬 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '💥 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n if (type === MutationType.patchFunction) {\n eventData.subtitle = '⤵️';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '🧩';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🔥 ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed 🆕`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = wrapWithProxy\n ? new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n })\n : store;\n // For Setup Stores we need https://github.com/tc39/proposal-async-context\n activeAction = _actionId;\n const retValue = actions[actionName].apply(trackedStore, arguments);\n // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n activeAction = undefined;\n return retValue;\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n store._isOptionsAPI = !!options.state;\n patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n // Upgrade the HMR to also update the new actions\n const originalHotUpdate = store._hotUpdate;\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n };\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = pinia._e.run(() => {\n scope = effectScope();\n return runWithContext(() => scope.run(setup));\n });\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Did you forget to install pinia?\\n` +\n `\\tconst pinia = createPinia()\\n` +\n `\\tapp.use(pinia)\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('ShareVariantIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2776780758)}):_vm._e(),_vm._v(\" \"),(_vm.currentFolder && _vm.canUpload)?_c('UploadPicker',{attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":\"t('files', 'Go to the previous folder')\",\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * natural-orderby v3.0.2\n *\n * Copyright (c) Olaf Ennen\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nvar compareNumbers = function compareNumbers(numberA, numberB) {\n if (numberA < numberB) {\n return -1;\n }\n if (numberA > numberB) {\n return 1;\n }\n return 0;\n};\n\nvar compareUnicode = function compareUnicode(stringA, stringB) {\n var result = stringA.localeCompare(stringB);\n return result ? result / Math.abs(result) : 0;\n};\n\nvar RE_NUMBERS = /(^0x[\\da-fA-F]+$|^([+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?(?!\\.\\d+)(?=\\D|\\s|$))|\\d+)/g;\nvar RE_LEADING_OR_TRAILING_WHITESPACES = /^\\s+|\\s+$/g; // trim pre-post whitespace\nvar RE_WHITESPACES = /\\s+/g; // normalize all whitespace to single ' ' character\nvar RE_INT_OR_FLOAT = /^[+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?$/; // identify integers and floats\nvar RE_DATE = /(^([\\w ]+,?[\\w ]+)?[\\w ]+,?[\\w ]+\\d+:\\d+(:\\d+)?[\\w ]?|^\\d{1,4}[/-]\\d{1,4}[/-]\\d{1,4}|^\\w+, \\w+ \\d+, \\d{4})/; // identify date strings\nvar RE_LEADING_ZERO = /^0+[1-9]{1}[0-9]*$/;\n// eslint-disable-next-line no-control-regex\nvar RE_UNICODE_CHARACTERS = /[^\\x00-\\x80]/;\n\nvar stringCompare = function stringCompare(stringA, stringB) {\n if (stringA < stringB) {\n return -1;\n }\n if (stringA > stringB) {\n return 1;\n }\n return 0;\n};\n\nvar compareChunks = function compareChunks(chunksA, chunksB) {\n var lengthA = chunksA.length;\n var lengthB = chunksB.length;\n var size = Math.min(lengthA, lengthB);\n for (var i = 0; i < size; i++) {\n var chunkA = chunksA[i];\n var chunkB = chunksB[i];\n if (chunkA.normalizedString !== chunkB.normalizedString) {\n if (chunkA.normalizedString === '' !== (chunkB.normalizedString === '')) {\n // empty strings have lowest value\n return chunkA.normalizedString === '' ? -1 : 1;\n }\n if (chunkA.parsedNumber !== undefined && chunkB.parsedNumber !== undefined) {\n // compare numbers\n var result = compareNumbers(chunkA.parsedNumber, chunkB.parsedNumber);\n if (result === 0) {\n // compare string value, if parsed numbers are equal\n // Example:\n // chunkA = { parsedNumber: 1, normalizedString: \"001\" }\n // chunkB = { parsedNumber: 1, normalizedString: \"01\" }\n // chunkA.parsedNumber === chunkB.parsedNumber\n // chunkA.normalizedString < chunkB.normalizedString\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n return result;\n } else if (chunkA.parsedNumber !== undefined || chunkB.parsedNumber !== undefined) {\n // number < string\n return chunkA.parsedNumber !== undefined ? -1 : 1;\n } else if (RE_UNICODE_CHARACTERS.test(chunkA.normalizedString + chunkB.normalizedString)) {\n // use locale comparison only if one of the chunks contains unicode characters\n return compareUnicode(chunkA.normalizedString, chunkB.normalizedString);\n } else {\n // use common string comparison for performance reason\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n }\n }\n // if the chunks are equal so far, the one which has more chunks is greater than the other one\n if (lengthA > size || lengthB > size) {\n return lengthA <= size ? -1 : 1;\n }\n return 0;\n};\n\nvar compareOtherTypes = function compareOtherTypes(valueA, valueB) {\n if (!valueA.chunks ? valueB.chunks : !valueB.chunks) {\n return !valueA.chunks ? 1 : -1;\n }\n if (valueA.isNaN ? !valueB.isNaN : valueB.isNaN) {\n return valueA.isNaN ? -1 : 1;\n }\n if (valueA.isSymbol ? !valueB.isSymbol : valueB.isSymbol) {\n return valueA.isSymbol ? -1 : 1;\n }\n if (valueA.isObject ? !valueB.isObject : valueB.isObject) {\n return valueA.isObject ? -1 : 1;\n }\n if (valueA.isArray ? !valueB.isArray : valueB.isArray) {\n return valueA.isArray ? -1 : 1;\n }\n if (valueA.isFunction ? !valueB.isFunction : valueB.isFunction) {\n return valueA.isFunction ? -1 : 1;\n }\n if (valueA.isNull ? !valueB.isNull : valueB.isNull) {\n return valueA.isNull ? -1 : 1;\n }\n return 0;\n};\n\nvar compareValues = function compareValues(valueA, valueB) {\n if (valueA.value === valueB.value) {\n return 0;\n }\n if (valueA.parsedNumber !== undefined && valueB.parsedNumber !== undefined) {\n return compareNumbers(valueA.parsedNumber, valueB.parsedNumber);\n }\n if (valueA.chunks && valueB.chunks) {\n return compareChunks(valueA.chunks, valueB.chunks);\n }\n return compareOtherTypes(valueA, valueB);\n};\n\nvar normalizeAlphaChunk = function normalizeAlphaChunk(chunk) {\n return chunk.replace(RE_WHITESPACES, ' ').replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n};\n\nvar parseNumber = function parseNumber(value) {\n if (value.length !== 0) {\n var parsedNumber = Number(value);\n if (!Number.isNaN(parsedNumber)) {\n return parsedNumber;\n }\n }\n return undefined;\n};\n\nvar normalizeNumericChunk = function normalizeNumericChunk(chunk, index, chunks) {\n if (RE_INT_OR_FLOAT.test(chunk)) {\n // don´t parse a number, if there´s a preceding decimal point\n // to keep significance\n // e.g. 1.0020, 1.020\n if (!RE_LEADING_ZERO.test(chunk) || index === 0 || chunks[index - 1] !== '.') {\n return parseNumber(chunk) || 0;\n }\n }\n return undefined;\n};\n\nvar createChunkMap = function createChunkMap(chunk, index, chunks) {\n return {\n parsedNumber: normalizeNumericChunk(chunk, index, chunks),\n normalizedString: normalizeAlphaChunk(chunk)\n };\n};\n\nvar createChunks = function createChunks(value) {\n return value.replace(RE_NUMBERS, '\\0$1\\0').replace(/\\0$/, '').replace(/^\\0/, '').split('\\0');\n};\n\nvar createChunkMaps = function createChunkMaps(value) {\n var chunksMaps = createChunks(value).map(createChunkMap);\n return chunksMaps;\n};\n\nvar isFunction = function isFunction(value) {\n return typeof value === 'function';\n};\n\nvar isNaN = function isNaN(value) {\n return Number.isNaN(value) || value instanceof Number && Number.isNaN(value.valueOf());\n};\n\nvar isNull = function isNull(value) {\n return value === null;\n};\n\nvar isObject = function isObject(value) {\n return value !== null && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Number) && !(value instanceof String) && !(value instanceof Boolean) && !(value instanceof Date);\n};\n\nvar isSymbol = function isSymbol(value) {\n return typeof value === 'symbol';\n};\n\nvar isUndefined = function isUndefined(value) {\n return value === undefined;\n};\n\nvar parseDate = function parseDate(value) {\n try {\n var parsedDate = Date.parse(value);\n if (!Number.isNaN(parsedDate)) {\n if (RE_DATE.test(value)) {\n return parsedDate;\n }\n }\n return undefined;\n } catch (_unused) {\n return undefined;\n }\n};\n\nvar numberify = function numberify(value) {\n var parsedNumber = parseNumber(value);\n if (parsedNumber !== undefined) {\n return parsedNumber;\n }\n return parseDate(value);\n};\n\nvar stringify = function stringify(value) {\n if (typeof value === 'boolean' || value instanceof Boolean) {\n return Number(value).toString();\n }\n if (typeof value === 'number' || value instanceof Number) {\n return value.toString();\n }\n if (value instanceof Date) {\n return value.getTime().toString();\n }\n if (typeof value === 'string' || value instanceof String) {\n return value.toLowerCase().replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n }\n return '';\n};\n\nvar getMappedValueRecord = function getMappedValueRecord(value) {\n if (typeof value === 'string' || value instanceof String || (typeof value === 'number' || value instanceof Number) && !isNaN(value) || typeof value === 'boolean' || value instanceof Boolean || value instanceof Date) {\n var stringValue = stringify(value);\n var parsedNumber = numberify(stringValue);\n var chunks = createChunkMaps(parsedNumber ? \"\" + parsedNumber : stringValue);\n return {\n parsedNumber: parsedNumber,\n chunks: chunks,\n value: value\n };\n }\n return {\n isArray: Array.isArray(value),\n isFunction: isFunction(value),\n isNaN: isNaN(value),\n isNull: isNull(value),\n isObject: isObject(value),\n isSymbol: isSymbol(value),\n isUndefined: isUndefined(value),\n value: value\n };\n};\n\nvar baseCompare = function baseCompare(options) {\n return function (valueA, valueB) {\n var a = getMappedValueRecord(valueA);\n var b = getMappedValueRecord(valueB);\n var result = compareValues(a, b);\n return result * (options.order === 'desc' ? -1 : 1);\n };\n};\n\nvar isValidOrder = function isValidOrder(value) {\n return typeof value === 'string' && (value === 'asc' || value === 'desc');\n};\nvar getOptions = function getOptions(customOptions) {\n var order = 'asc';\n if (typeof customOptions === 'string' && isValidOrder(customOptions)) {\n order = customOptions;\n } else if (customOptions && typeof customOptions === 'object' && customOptions.order && isValidOrder(customOptions.order)) {\n order = customOptions.order;\n }\n return {\n order: order\n };\n};\n\n/**\n * Creates a compare function that defines the natural sort order considering\n * the given `options` which may be passed to [`Array.prototype.sort()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort).\n */\nfunction compare(options) {\n var validatedOptions = getOptions(options);\n return baseCompare(validatedOptions);\n}\n\nvar compareMultiple = function compareMultiple(recordA, recordB, orders) {\n var indexA = recordA.index,\n valuesA = recordA.values;\n var indexB = recordB.index,\n valuesB = recordB.values;\n var length = valuesA.length;\n var ordersLength = orders.length;\n for (var i = 0; i < length; i++) {\n var order = i < ordersLength ? orders[i] : null;\n if (order && typeof order === 'function') {\n var result = order(valuesA[i].value, valuesB[i].value);\n if (result) {\n return result;\n }\n } else {\n var _result = compareValues(valuesA[i], valuesB[i]);\n if (_result) {\n return _result * (order === 'desc' ? -1 : 1);\n }\n }\n }\n return indexA - indexB;\n};\n\nvar createIdentifierFn = function createIdentifierFn(identifier) {\n if (typeof identifier === 'function') {\n // identifier is already a lookup function\n return identifier;\n }\n return function (value) {\n if (Array.isArray(value)) {\n var index = Number(identifier);\n if (Number.isInteger(index)) {\n return value[index];\n }\n } else if (value && typeof value === 'object') {\n var result = Object.getOwnPropertyDescriptor(value, identifier);\n return result == null ? void 0 : result.value;\n }\n return value;\n };\n};\n\nvar getElementByIndex = function getElementByIndex(collection, index) {\n return collection[index];\n};\n\nvar getValueByIdentifier = function getValueByIdentifier(value, getValue) {\n return getValue(value);\n};\n\nvar baseOrderBy = function baseOrderBy(collection, identifiers, orders) {\n var identifierFns = identifiers.length ? identifiers.map(createIdentifierFn) : [function (value) {\n return value;\n }];\n\n // temporary array holds elements with position and sort-values\n var mappedCollection = collection.map(function (element, index) {\n var values = identifierFns.map(function (identifier) {\n return getValueByIdentifier(element, identifier);\n }).map(getMappedValueRecord);\n return {\n index: index,\n values: values\n };\n });\n\n // iterate over values and compare values until a != b or last value reached\n mappedCollection.sort(function (recordA, recordB) {\n return compareMultiple(recordA, recordB, orders);\n });\n return mappedCollection.map(function (element) {\n return getElementByIndex(collection, element.index);\n });\n};\n\nvar getIdentifiers = function getIdentifiers(identifiers) {\n if (!identifiers) {\n return [];\n }\n var identifierList = !Array.isArray(identifiers) ? [identifiers] : [].concat(identifiers);\n if (identifierList.some(function (identifier) {\n return typeof identifier !== 'string' && typeof identifier !== 'number' && typeof identifier !== 'function';\n })) {\n return [];\n }\n return identifierList;\n};\n\nvar getOrders = function getOrders(orders) {\n if (!orders) {\n return [];\n }\n var orderList = !Array.isArray(orders) ? [orders] : [].concat(orders);\n if (orderList.some(function (order) {\n return order !== 'asc' && order !== 'desc' && typeof order !== 'function';\n })) {\n return [];\n }\n return orderList;\n};\n\n/**\n * Creates an array of elements, natural sorted by specified identifiers and\n * the corresponding sort orders. This method implements a stable sort\n * algorithm, which means the original sort order of equal elements is\n * preserved.\n */\nfunction orderBy(collection, identifiers, orders) {\n if (!collection || !Array.isArray(collection)) {\n return [];\n }\n var validatedIdentifiers = getIdentifiers(identifiers);\n var validatedOrders = getOrders(orders);\n return baseOrderBy(collection, validatedIdentifiers, validatedOrders);\n}\n\nexport { compare, orderBy };\n","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ShareVariant.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ShareVariant.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./ShareVariant.vue?vue&type=template&id=1f144a5c&\"\nimport script from \"./ShareVariant.vue?vue&type=script&lang=js&\"\nexport * from \"./ShareVariant.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon share-variant-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n const store = defineStore('files', {\n state: () => ({\n files: {},\n roots: {},\n }),\n getters: {\n /**\n * Get a file or folder by id\n */\n getNode: (state) => (id) => state.files[id],\n /**\n * Get a list of files or folders by their IDs\n * Does not return undefined values\n */\n getNodes: (state) => (ids) => ids\n .map(id => state.files[id])\n .filter(Boolean),\n /**\n * Get a file or folder by id\n */\n getRoot: (state) => (service) => state.roots[service],\n },\n actions: {\n updateNodes(nodes) {\n // Update the store all at once\n const files = nodes.reduce((acc, node) => {\n if (!node.fileid) {\n logger.error('Trying to update/set a node without fileid', node);\n return acc;\n }\n acc[node.fileid] = node;\n return acc;\n }, {});\n Vue.set(this, 'files', { ...this.files, ...files });\n },\n deleteNodes(nodes) {\n nodes.forEach(node => {\n if (node.fileid) {\n Vue.delete(this.files, node.fileid);\n }\n });\n },\n setRoot({ service, root }) {\n Vue.set(this.roots, service, root);\n },\n onDeletedNode(node) {\n this.deleteNodes([node]);\n },\n onCreatedNode(node) {\n this.updateNodes([node]);\n },\n },\n });\n const fileStore = store(...args);\n // Make sure we only register the listeners once\n if (!fileStore._initialized) {\n subscribe('files:node:created', fileStore.onCreatedNode);\n subscribe('files:node:deleted', fileStore.onDeletedNode);\n // subscribe('files:node:moved', fileStore.onMovedNode)\n // subscribe('files:node:updated', fileStore.onUpdatedNode)\n fileStore._initialized = true;\n }\n return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n // Only init on runtime\n uploader = getUploader();\n const store = defineStore('uploader', {\n state: () => ({\n queue: uploader.queue,\n }),\n });\n return store(...args);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Node, getNavigation } from '@nextcloud/files';\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const usePathsStore = function (...args) {\n const store = defineStore('paths', {\n state: () => ({\n paths: {},\n }),\n getters: {\n getPath: (state) => {\n return (service, path) => {\n if (!state.paths[service]) {\n return undefined;\n }\n return state.paths[service][path];\n };\n },\n },\n actions: {\n addPath(payload) {\n // If it doesn't exists, init the service state\n if (!this.paths[payload.service]) {\n Vue.set(this.paths, payload.service, {});\n }\n // Now we can set the provided path\n Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n },\n onCreatedNode(node) {\n const currentView = getNavigation().active;\n if (!node.fileid) {\n logger.error('Node has no fileid', { node });\n return;\n }\n this.addPath({\n service: currentView?.id || 'files',\n path: node.path,\n fileid: node.fileid,\n });\n },\n },\n });\n const pathsStore = store(...args);\n // Make sure we only register the listeners once\n if (!pathsStore._initialized) {\n // TODO: watch folders to update paths?\n subscribe('files:node:created', pathsStore.onCreatedNode);\n // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n // subscribe('files:node:moved', pathsStore.onMovedNode)\n pathsStore._initialized = true;\n }\n return pathsStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport { FileId, SelectionStore } from '../types';\nexport const useSelectionStore = defineStore('selection', {\n state: () => ({\n selected: [],\n lastSelection: [],\n lastSelectedIndex: null,\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'selected', selection);\n },\n /**\n * Set the last selected index\n */\n setLastIndex(lastSelectedIndex = null) {\n // Update the last selection if we provided a new selection starting point\n Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'selected', []);\n Vue.set(this, 'lastSelection', []);\n Vue.set(this, 'lastSelectedIndex', null);\n },\n },\n});\n","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n show_hidden: false,\n crop_image_previews: true,\n sort_favorites_first: true,\n});\nexport const useUserConfigStore = function (...args) {\n const store = defineStore('userconfig', {\n state: () => ({\n userConfig,\n }),\n actions: {\n /**\n * Update the user config local store\n */\n onUpdate(key, value) {\n Vue.set(this.userConfig, key, value);\n },\n /**\n * Update the user config local store AND on server side\n */\n async update(key, value) {\n await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n value,\n });\n emit('files:config:updated', { key, value });\n },\n },\n });\n const userConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!userConfigStore._initialized) {\n subscribe('files:config:updated', function ({ key, value }) {\n userConfigStore.onUpdate(key, value);\n });\n userConfigStore._initialized = true;\n }\n return userConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n const store = defineStore('viewconfig', {\n state: () => ({\n viewConfig,\n }),\n getters: {\n getConfig: (state) => (view) => state.viewConfig[view] || {},\n },\n actions: {\n /**\n * Update the view config local store\n */\n onUpdate(view, key, value) {\n if (!this.viewConfig[view]) {\n Vue.set(this.viewConfig, view, {});\n }\n Vue.set(this.viewConfig[view], key, value);\n },\n /**\n * Update the view config local store AND on server side\n */\n async update(view, key, value) {\n axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n value,\n });\n emit('files:viewconfig:updated', { view, key, value });\n },\n /**\n * Set the sorting key AND sort by ASC\n * The key param must be a valid key of a File object\n * If not found, will be searched within the File attributes\n */\n setSortingBy(key = 'basename', view = 'files') {\n // Save new config\n this.update(view, 'sorting_mode', key);\n this.update(view, 'sorting_direction', 'asc');\n },\n /**\n * Toggle the sorting direction\n */\n toggleSortingDirection(view = 'files') {\n const config = this.getConfig(view) || { sorting_direction: 'asc' };\n const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n // Save new config\n this.update(view, 'sorting_direction', newDirection);\n },\n },\n });\n const viewConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!viewConfigStore._initialized) {\n subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n viewConfigStore.onUpdate(view, key, value);\n });\n viewConfigStore._initialized = true;\n }\n return viewConfigStore;\n};\n","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=ec40407a&scoped=true&\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=js&\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=js&\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\"\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 \"ec40407a\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{attrs:{\"data-cy-files-content-breadcrumbs\":\"\"},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({key:section.dir,attrs:{\"aria-label\":_vm.ariaLabel(section),\"title\":_vm.ariaLabel(section)},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('Home',{attrs:{\"size\":20}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=aa295eae&\"\nimport script from \"./Key.vue?vue&type=script&lang=js&\"\nexport * from \"./Key.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=4d7171be&\"\nimport script from \"./Tag.vue?vue&type=script&lang=js&\"\nexport * from \"./Tag.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=7c7d2907&\"\nimport script from \"./Network.vue?vue&type=script&lang=js&\"\nexport * from \"./Network.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=98f97aee&\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js&\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n// The preview service worker cache name (see webpack config)\nconst SWCacheName = 'previews';\n/**\n * Check if the preview is already cached by the service worker\n */\nexport const isCachedPreview = function (previewUrl) {\n if (!window?.caches?.open) {\n return Promise.resolve(false);\n }\n return window?.caches?.open(SWCacheName)\n .then(function (cache) {\n return cache.match(previewUrl)\n .then(function (response) {\n return !!response;\n });\n });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n state: () => ({\n opened: null,\n }),\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6&\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts&\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts&\"\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\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./CustomSvgIconRender.vue?vue&type=template&id=93e9b2f4&scoped=true&\"\nimport script from \"./CustomSvgIconRender.vue?vue&type=script&lang=js&\"\nexport * from \"./CustomSvgIconRender.vue?vue&type=script&lang=js&\"\nimport style0 from \"./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\"\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 \"93e9b2f4\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',{staticClass:\"custom-svg-icon\"})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=324501a3&scoped=true&\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=js&\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=js&\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\"\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 \"324501a3\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('CustomSvgIconRender',{staticClass:\"favorite-marker-icon\",attrs:{\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--visible': _vm.visible, 'files-list__row--active': _vm.isActive},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename},on:{\"contextmenu\":_vm.onRightClick}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-checkbox\"},[(_vm.visible)?_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.t('files', 'Select the row for {displayName}', { displayName: _vm.displayName }),\"checked\":_vm.selectedFiles,\"value\":_vm.fileid,\"name\":\"selectedFiles\"},on:{\"update:checked\":_vm.onSelectionChange}}):_vm._e()],1),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('span',{staticClass:\"files-list__row-icon\",on:{\"click\":_vm.execDefaultAction}},[(_vm.source.type === 'folder')?[_c('FolderIcon'),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]:(_vm.previewUrl && !_vm.backgroundFailed)?_c('span',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",style:({ backgroundImage: _vm.backgroundImage })}):_c('FileIcon'),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\",attrs:{\"aria-label\":_vm.t('files', 'Favorite')}},[_c('FavoriteIcon',{attrs:{\"aria-hidden\":true}})],1):_vm._e()],2),_vm._v(\" \"),_c('form',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isRenaming),expression:\"isRenaming\"},{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-hidden\":!_vm.isRenaming,\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1),_vm._v(\" \"),_c('a',_vm._b({directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenaming),expression:\"!isRenaming\"}],ref:\"basename\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":_vm.execDefaultAction}},'a',_vm.linkTo,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])]),_vm._v(\" \"),_c('td',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],staticClass:\"files-list__row-actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),(_vm.visible)?_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement(),\"container\":_vm.getBoundariesElement(),\"disabled\":_vm.source._loading,\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-action-' + action.id,attrs:{\"close-after-click\":true,\"data-cy-files-list-row-action\":action.id},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('CustomSvgIconRender',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(action.displayName([_vm.source], _vm.currentView))+\"\\n\\t\\t\\t\")])}),1):_vm._e()],2),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:({ opacity: _vm.sizeOpacity }),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.mtime))])]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[(_vm.visible)?_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}}):_vm._e()],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n const store = defineStore('keyboard', {\n state: () => ({\n altKey: false,\n ctrlKey: false,\n metaKey: false,\n shiftKey: false,\n }),\n actions: {\n onEvent(event) {\n if (!event) {\n event = window.event;\n }\n Vue.set(this, 'altKey', !!event.altKey);\n Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n Vue.set(this, 'metaKey', !!event.metaKey);\n Vue.set(this, 'shiftKey', !!event.shiftKey);\n },\n },\n });\n const keyboardStore = store(...args);\n // Make sure we only register the listeners once\n if (!keyboardStore._initialized) {\n window.addEventListener('keydown', keyboardStore.onEvent);\n window.addEventListener('keyup', keyboardStore.onEvent);\n window.addEventListener('mousemove', keyboardStore.onEvent);\n keyboardStore._initialized = true;\n }\n return keyboardStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n const store = defineStore('renaming', {\n state: () => ({\n renamingNode: undefined,\n newName: '',\n }),\n });\n const renamingStore = store(...args);\n // Make sure we only register the listeners once\n if (!renamingStore._initialized) {\n subscribe('files:node:rename', function (node) {\n renamingStore.renamingNode = node;\n renamingStore.newName = node.basename;\n });\n renamingStore._initialized = true;\n }\n return renamingStore;\n};\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=10164d76&scoped=true&\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts&\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\"\nimport style1 from \"./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\"\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 \"10164d76\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153&\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts&\"\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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=5d5c2897&scoped=true&\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\"\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 \"5d5c2897\",\n null\n \n)\n\nexport default component.exports","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n data() {\n return {\n filesListWidth: null,\n };\n },\n created() {\n const fileListEl = document.querySelector('#app-content-vue');\n this.$resizeObserver = new ResizeObserver((entries) => {\n if (entries.length > 0 && entries[0].target === fileListEl) {\n this.filesListWidth = entries[0].contentRect.width;\n }\n });\n this.$resizeObserver.observe(fileListEl);\n },\n beforeDestroy() {\n this.$resizeObserver.disconnect();\n },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('th',{staticClass:\"files-list__column files-list__row-actions-batch\",attrs:{\"colspan\":\"2\"}},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('CustomSvgIconRender',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=0d9363a1&scoped=true&\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\"\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 \"0d9363a1\",\n null\n \n)\n\nexport default component.exports","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n computed: {\n ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n currentView() {\n return this.$navigation.active;\n },\n /**\n * Get the sorting mode for the current view\n */\n sortingMode() {\n return this.getConfig(this.currentView.id)?.sorting_mode\n || this.currentView?.defaultSortKey\n || 'basename';\n },\n /**\n * Get the sorting direction for the current view\n */\n isAscSorting() {\n const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n return sortingDirection === 'asc';\n },\n },\n methods: {\n toggleSortBy(key) {\n // If we're already sorting by this key, flip the direction\n if (this.sortingMode === key) {\n this.toggleSortingDirection(this.currentView.id);\n return;\n }\n // else sort ASC by this new key\n this.setSortingBy(key, this.currentView.id);\n },\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{staticClass:\"files-list__column-sort-button\",class:{'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode},attrs:{\"aria-label\":_vm.sortAriaLabel(_vm.name),\"type\":\"tertiary\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.toggleSortBy(_vm.mode)}}},[(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{attrs:{\"slot\":\"icon\"},slot:\"icon\"}):_c('MenuDown',{attrs:{\"slot\":\"icon\"},slot:\"icon\"}),_vm._v(\"\\n\\t\"+_vm._s(_vm.name)+\"\\n\")],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=99802676&\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\"\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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\"},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),(!_vm.isNoneSelected)?_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}}):[_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.toggleSortBy('basename')}}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{'files-list__column--sortable': _vm.isSizeAvailable}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{'files-list__column--sortable': _vm.isMtimeAvailable}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\\t\")])],1)})]],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=50439046&scoped=true&\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\"\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 \"50439046\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('table',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function(item,i){return _c(_vm.dataComponent,_vm._b({key:i,tag:\"component\",attrs:{\"visible\":(i >= _vm.bufferItems || _vm.index <= _vm.bufferItems) && (i < _vm.shownItems - _vm.bufferItems),\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],ref:\"tfoot\",staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=57877aea&scoped=true&\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts&\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts&\"\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 \"57877aea\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{attrs:{\"data-component\":_vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"item-height\":56,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex},scopedSlots:_vm._u([{key:\"before\",fn:function(){return [_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.currentView.caption || _vm.t('files', 'List of files and folders.'))+\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})]},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}])})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=18a212d2&scoped=true&\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\"\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 \"18a212d2\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=37471899&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=37471899&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=37471899&scoped=true&\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=37471899&prod&scoped=true&lang=scss&\"\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 \"37471899\",\n null\n \n)\n\nexport default component.exports","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n * are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n * as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.noTrailing] - Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n * while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n * one final time after the last throttled-function call. (After the throttled-function has not been called for\n * `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] - Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n * immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n * callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n * false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n var _ref = options || {},\n _ref$noTrailing = _ref.noTrailing,\n noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n _ref$noLeading = _ref.noLeading,\n noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n _ref$debounceMode = _ref.debounceMode,\n debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n /*\n * After wrapper has stopped being called, this timeout ensures that\n * `callback` is executed at the proper times in `throttle` and `end`\n * debounce modes.\n */\n\n\n var timeoutID;\n var cancelled = false; // Keep track of the last time `callback` was executed.\n\n var lastExec = 0; // Function to clear existing timeout\n\n function clearExistingTimeout() {\n if (timeoutID) {\n clearTimeout(timeoutID);\n }\n } // Function to cancel next exec\n\n\n function cancel(options) {\n var _ref2 = options || {},\n _ref2$upcomingOnly = _ref2.upcomingOnly,\n upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n clearExistingTimeout();\n cancelled = !upcomingOnly;\n }\n /*\n * The `wrapper` function encapsulates all of the throttling / debouncing\n * functionality and when executed will limit the rate at which `callback`\n * is executed.\n */\n\n\n function wrapper() {\n for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n arguments_[_key] = arguments[_key];\n }\n\n var self = this;\n var elapsed = Date.now() - lastExec;\n\n if (cancelled) {\n return;\n } // Execute `callback` and update the `lastExec` timestamp.\n\n\n function exec() {\n lastExec = Date.now();\n callback.apply(self, arguments_);\n }\n /*\n * If `debounceMode` is true (at begin) this is used to clear the flag\n * to allow future `callback` executions.\n */\n\n\n function clear() {\n timeoutID = undefined;\n }\n\n if (!noLeading && debounceMode && !timeoutID) {\n /*\n * Since `wrapper` is being called for the first time and\n * `debounceMode` is true (at begin), execute `callback`\n * and noLeading != true.\n */\n exec();\n }\n\n clearExistingTimeout();\n\n if (debounceMode === undefined && elapsed > delay) {\n if (noLeading) {\n /*\n * In throttle mode with noLeading, if `delay` time has\n * been exceeded, update `lastExec` and schedule `callback`\n * to execute after `delay` ms.\n */\n lastExec = Date.now();\n\n if (!noTrailing) {\n timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n }\n } else {\n /*\n * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n * `callback`.\n */\n exec();\n }\n } else if (noTrailing !== true) {\n /*\n * In trailing throttle mode, since `delay` time has not been\n * exceeded, schedule `callback` to execute `delay` ms after most\n * recent execution.\n *\n * If `debounceMode` is true (at begin), schedule `clear` to execute\n * after `delay` ms.\n *\n * If `debounceMode` is false (at end), schedule `callback` to\n * execute after `delay` ms.\n */\n timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n }\n }\n\n wrapper.cancel = cancel; // Return the wrapper function.\n\n return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n * to `callback` when the debounced-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.atBegin] - Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n * after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n * (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n var _ref = options || {},\n _ref$atBegin = _ref.atBegin,\n atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n return throttle(delay, callback, {\n debounceMode: atBegin !== false\n });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=44de6464&\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js&\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=0df392ce&scoped=true&\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js&\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js&\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\"\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 \"0df392ce\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0e008e34&\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js&\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js&\"","\n\n\n\n","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae&\"\nimport script from \"./Setting.vue?vue&type=script&lang=js&\"\nexport * from \"./Setting.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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=7aaa0c4e&scoped=true&\"\nimport script from \"./Settings.vue?vue&type=script&lang=js&\"\nexport * from \"./Settings.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\"\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 \"7aaa0c4e\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")])],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\"},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"icon\":view.iconClass,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"name\":view.name,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts&\"","/**\n * @copyright Copyright (c) 2022 Joas Schilling \n *\n * @author Joas Schilling \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { loadState } from '@nextcloud/initial-state'\n\n/**\n * Set the page heading\n *\n * @param {string} heading page title from the history api\n * @since 27.0.0\n */\nexport function setPageHeading(heading) {\n\tconst headingEl = document.getElementById('page-heading-level-1')\n\tif (headingEl) {\n\t\theadingEl.textContent = heading\n\t}\n}\nexport default {\n\t/**\n\t * @return {boolean} Whether the user opted-out of shortcuts so that they should not be registered\n\t */\n\tdisableKeyboardShortcuts() {\n\t\treturn loadState('theming', 'shortcutsDisabled', false)\n\t},\n\tsetPageHeading,\n}\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=5b025a97&scoped=true&\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts&\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\"\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 \"5b025a97\",\n null\n \n)\n\nexport default component.exports","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport logger from '../logger';\nconst defaultDavProperties = [\n 'd:getcontentlength',\n 'd:getcontenttype',\n 'd:getetag',\n 'd:getlastmodified',\n 'd:quota-available-bytes',\n 'd:resourcetype',\n 'nc:has-preview',\n 'nc:is-encrypted',\n 'nc:mount-type',\n 'nc:share-attributes',\n 'oc:comments-unread',\n 'oc:favorite',\n 'oc:fileid',\n 'oc:owner-display-name',\n 'oc:owner-id',\n 'oc:permissions',\n 'oc:share-types',\n 'oc:size',\n 'ocs:share-permissions',\n];\nconst defaultDavNamespaces = {\n d: 'DAV:',\n nc: 'http://nextcloud.org/ns',\n oc: 'http://owncloud.org/ns',\n ocs: 'http://open-collaboration-services.org/ns',\n};\n/**\n * TODO: remove and move to @nextcloud/files\n * @param prop\n * @param namespace\n */\nexport const registerDavProperty = function (prop, namespace = { nc: 'http://nextcloud.org/ns' }) {\n if (typeof window._nc_dav_properties === 'undefined') {\n window._nc_dav_properties = defaultDavProperties;\n window._nc_dav_namespaces = defaultDavNamespaces;\n }\n const namespaces = { ...window._nc_dav_namespaces, ...namespace };\n // Check duplicates\n if (window._nc_dav_properties.find(search => search === prop)) {\n logger.error(`${prop} already registered`, { prop });\n return;\n }\n if (prop.startsWith('<') || prop.split(':').length !== 2) {\n logger.error(`${prop} is not valid. See example: 'oc:fileid'`, { prop });\n return;\n }\n const ns = prop.split(':')[0];\n if (!namespaces[ns]) {\n logger.error(`${prop} namespace unknown`, { prop, namespaces });\n return;\n }\n window._nc_dav_properties.push(prop);\n window._nc_dav_namespaces = namespaces;\n};\n/**\n * Get the registered dav properties\n */\nexport const getDavProperties = function () {\n if (typeof window._nc_dav_properties === 'undefined') {\n window._nc_dav_properties = defaultDavProperties;\n }\n return window._nc_dav_properties.map(prop => `<${prop} />`).join(' ');\n};\n/**\n * Get the registered dav namespaces\n */\nexport const getDavNameSpaces = function () {\n if (typeof window._nc_dav_namespaces === 'undefined') {\n window._nc_dav_namespaces = defaultDavNamespaces;\n }\n return Object.keys(window._nc_dav_namespaces).map(ns => `xmlns:${ns}=\"${window._nc_dav_namespaces[ns]}\"`).join(' ');\n};\n/**\n * Get the default PROPFIND request payload\n */\nexport const getDefaultPropfind = function () {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${getDavProperties()}\n\t\t\t\n\t\t`;\n};\n","import { cancelable, CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDefaultPropfind } from './DavProperties';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = getCurrentUser()?.uid;\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime,\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = getDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","import { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDavNameSpaces, getDavProperties, getDefaultPropfind } from './DavProperties';\nimport { resultToNode } from './Files';\nconst client = getClient();\nconst reportPayload = `\n\n\t\n\t\t${getDavProperties()}\n\t\n\t\n\t\t1\n\t\n`;\nexport const getContents = async (path = '/') => {\n const propfindPayload = getDefaultPropfind();\n // Get root folder\n let rootResponse;\n if (path === '/') {\n rootResponse = await client.stat(path, {\n details: true,\n data: getDefaultPropfind(),\n });\n }\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n // Only filter favorites if we're at the root\n data: path === '/' ? reportPayload : propfindPayload,\n headers: {\n // Patched in WebdavClient.ts\n method: path === '/' ? 'REPORT' : 'PROPFIND',\n },\n includeSelf: true,\n });\n const root = rootResponse?.data || contentsResponse.data[0];\n const contents = contentsResponse.data.filter(node => node.filename !== path);\n return {\n folder: resultToNode(root),\n contents: contents.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { basename } from 'path';\nimport { getLanguage, translate as t } from '@nextcloud/l10n';\nimport { loadState } from '@nextcloud/initial-state';\nimport { Node, FileType, View, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nimport StarSvg from '@mdi/svg/svg/star.svg?raw';\nimport { getContents } from '../services/Favorites';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nexport const generateFolderView = function (folder, index = 0) {\n return new View({\n id: generateIdFromPath(folder),\n name: basename(folder),\n icon: FolderSvg,\n order: index,\n params: {\n dir: folder,\n view: 'favorites',\n },\n parent: 'favorites',\n columns: [],\n getContents,\n });\n};\nexport const generateIdFromPath = function (path) {\n return `favorite-${hashCode(path)}`;\n};\nexport default () => {\n // Load state in function for mock testing purposes\n const favoriteFolders = loadState('files', 'favoriteFolders', []);\n const favoriteFoldersViews = favoriteFolders.map((folder, index) => generateFolderView(folder, index));\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'favorites',\n name: t('files', 'Favorites'),\n caption: t('files', 'List of favorites files and folders.'),\n emptyTitle: t('files', 'No favorites yet'),\n emptyCaption: t('files', 'Files and folders you mark as favorite will show up here'),\n icon: StarSvg,\n order: 5,\n columns: [],\n getContents,\n }));\n favoriteFoldersViews.forEach(view => Navigation.register(view));\n /**\n * Update favourites navigation when a new folder is added\n */\n subscribe('files:favorites:added', (node) => {\n if (node.type !== FileType.Folder) {\n return;\n }\n // Sanity check\n if (node.path === null || !node.root?.startsWith('/files')) {\n logger.error('Favorite folder is not within user files root', { node });\n return;\n }\n addPathToFavorites(node.path);\n });\n /**\n * Remove favourites navigation when a folder is removed\n */\n subscribe('files:favorites:removed', (node) => {\n if (node.type !== FileType.Folder) {\n return;\n }\n // Sanity check\n if (node.path === null || !node.root?.startsWith('/files')) {\n logger.error('Favorite folder is not within user files root', { node });\n return;\n }\n removePathFromFavorites(node.path);\n });\n /**\n * Sort the favorites paths array and\n * update the order property of the existing views\n */\n const updateAndSortViews = function () {\n favoriteFolders.sort((a, b) => a.localeCompare(b, getLanguage(), { ignorePunctuation: true }));\n favoriteFolders.forEach((folder, index) => {\n const view = favoriteFoldersViews.find(view => view.id === generateIdFromPath(folder));\n if (view) {\n view.order = index;\n }\n });\n };\n // Add a folder to the favorites paths array and update the views\n const addPathToFavorites = function (path) {\n const view = generateFolderView(path);\n // Skip if already exists\n if (favoriteFolders.find(folder => folder === path)) {\n return;\n }\n // Update arrays\n favoriteFolders.push(path);\n favoriteFoldersViews.push(view);\n // Update and sort views\n updateAndSortViews();\n Navigation.register(view);\n };\n // Remove a folder from the favorites paths array and update the views\n const removePathFromFavorites = function (path) {\n const id = generateIdFromPath(path);\n const index = favoriteFolders.findIndex(folder => folder === path);\n // Skip if not exists\n if (index === -1) {\n return;\n }\n // Update arrays\n favoriteFolders.splice(index, 1);\n favoriteFoldersViews.splice(index, 1);\n // Update and sort views\n Navigation.remove(id);\n updateAndSortViews();\n };\n};\n","import { File, Folder, Permission, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDavNameSpaces, getDavProperties } from './DavProperties';\nimport { resultToNode } from './Files';\nconst client = getClient(generateRemoteUrl('dav'));\nconst lastTwoWeeksTimestamp = Math.round((Date.now() / 1000) - (60 * 60 * 24 * 14));\nconst searchPayload = `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${getDavProperties()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${getCurrentUser()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${lastTwoWeeksTimestamp}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\nexport const getContents = async (path = '/') => {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: searchPayload,\n headers: {\n // Patched in WebdavClient.ts\n method: 'SEARCH',\n // Somehow it's needed to get the correct response\n 'Content-Type': 'application/xml; charset=utf-8',\n },\n deep: true,\n });\n const contents = contentsResponse.data;\n return {\n folder: new Folder({\n id: 0,\n source: generateRemoteUrl('dav' + rootPath),\n root: rootPath,\n owner: getCurrentUser()?.uid || null,\n permissions: Permission.READ,\n }),\n contents: contents.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router'\nimport logger from '../logger.js'\n\nexport default () => {\n\tif ('serviceWorker' in navigator) {\n\t\t// Use the window load event to keep the page load performant\n\t\twindow.addEventListener('load', async () => {\n\t\t\ttry {\n\t\t\t\tconst url = generateUrl('/apps/files/preview-service-worker.js', {}, { noRewrite: true })\n\t\t\t\tconst registration = await navigator.serviceWorker.register(url, { scope: '/' })\n\t\t\t\tlogger.debug('SW registered: ', { registration })\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('SW registration failed: ', { error })\n\t\t\t}\n\t\t})\n\t} else {\n\t\tlogger.debug('Service Worker is not enabled on this browser.')\n\t}\n}\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSep = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSep, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replace(/\\+/g, ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tif (Boolean(value) && typeof value === 'object' && !Array.isArray(value)) {\n\t\t\t// Sort object keys, not values\n\t\t\tresult[key] = keysSorter(value);\n\t\t} else {\n\t\t\tresult[key] = value;\n\t\t}\n\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n * vue-router v3.6.5\n * (c) 2022 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if (process.env.NODE_ENV !== 'production' && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an element. Use the custom prop to remove this warning:\\n\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n (\" with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (process.env.NODE_ENV === 'development') {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if (process.env.NODE_ENV !== 'production' && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1$1.ensureURL();\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1$1.ready) {\n this$1$1.ready = true;\n this$1$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1$1.ready = true;\n this$1$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1$1.errorCbs.length) {\n this$1$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1$1.replace(to);\n } else {\n this$1$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1$1.pending = null;\n onComplete(route);\n if (this$1$1.router.app) {\n this$1$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1$1.base);\n if (this$1$1.current === START && location === this$1$1._startLocation) {\n return\n }\n\n this$1$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n this$1$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1$1.current;\n this$1$1.index = targetIndex;\n this$1$1.updateRoute(route);\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\n\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (process.env.NODE_ENV !== 'production') {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1$1 = this;\n\n process.env.NODE_ENV !== 'production' &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1$1.apps.indexOf(app);\n if (index > -1) { this$1$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n if (!this$1$1.app) { this$1$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router, { RawLocation, Route } from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n if (onComplete || onAbort)\n return originalPush.call(this, to, onComplete, onAbort);\n return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n mode: 'history',\n // if index.php is in the url AND we got this far, then it's working:\n // let's keep using index.php in the url\n base: generateUrl('/apps/files'),\n linkActiveClass: 'active',\n routes: [\n {\n path: '/',\n // Pretending we're using the default view\n redirect: { name: 'filelist' },\n },\n {\n path: '/:view/:fileid?',\n name: 'filelist',\n props: true,\n },\n ],\n // Custom stringifyQuery to prevent encoding of slashes in the url\n stringifyQuery(query) {\n const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n return result ? ('?' + result) : '';\n },\n});\nexport default router;\n","export default class RouterService {\n _router;\n constructor(router) {\n this._router = router;\n }\n get name() {\n return this._router.currentRoute.name;\n }\n get query() {\n return this._router.currentRoute.query || {};\n }\n get params() {\n return this._router.currentRoute.params || {};\n }\n /**\n * Trigger a route change on the files app\n *\n * @param path the url path, eg: '/trashbin?dir=/Deleted'\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goTo(path, replace = false) {\n return this._router.push({\n path,\n replace,\n });\n }\n /**\n * Trigger a route change on the files App\n *\n * @param name the route name\n * @param params the route parameters\n * @param query the url query parameters\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goToRoute(name, params, query, replace) {\n return this._router.push({\n name,\n query,\n params,\n replace,\n });\n }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","import './templates.js';\nimport './legacy/filelistSearch.js';\nimport './actions/deleteAction';\nimport './actions/downloadAction';\nimport './actions/editLocallyAction';\nimport './actions/favoriteAction';\nimport './actions/openFolderAction';\nimport './actions/openInFilesAction.js';\nimport './actions/renameAction';\nimport './actions/sidebarAction';\nimport './actions/viewInFolderAction';\nimport './newMenu/newFolder';\nimport Vue from 'vue';\nimport { createPinia, PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport FilesListView from './views/FilesList.vue';\nimport NavigationView from './views/Navigation.vue';\nimport registerFavoritesView from './views/favorites';\nimport registerRecentView from './views/recent';\nimport registerFilesView from './views/files';\nimport registerPreviewServiceWorker from './services/ServiceWorker.js';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\nconst pinia = createPinia();\n// Init Navigation Service\nconst Navigation = getNavigation();\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\n// Init Navigation View\nconst View = Vue.extend(NavigationView);\nconst FilesNavigationRoot = new View({\n name: 'FilesNavigationRoot',\n propsData: {\n Navigation,\n },\n router,\n pinia,\n});\nFilesNavigationRoot.$mount('#app-navigation-files');\n// Init content list view\nconst ListView = Vue.extend(FilesListView);\nconst FilesList = new ListView({\n name: 'FilesListRoot',\n router,\n pinia,\n});\nFilesList.$mount('#app-content-vue');\n// Init legacy and new files views\nregisterFavoritesView();\nregisterFilesView();\nregisterRecentView();\n// Register preview service worker\nregisterPreviewServiceWorker();\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nimport { getContents } from '../services/Files';\nimport { View, getNavigation } from '@nextcloud/files';\nexport default () => {\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'files',\n name: t('files', 'All files'),\n caption: t('files', 'List of your files and folders.'),\n icon: FolderSvg,\n order: 0,\n getContents,\n }));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport HistorySvg from '@mdi/svg/svg/history.svg?raw';\nimport { getContents } from '../services/Recent';\nimport { View, getNavigation } from '@nextcloud/files';\nexport default () => {\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'recent',\n name: t('files', 'Recent'),\n caption: t('files', 'List of recently modified files and folders.'),\n emptyTitle: t('files', 'No recently modified files'),\n emptyCaption: t('files', 'Files and folders you recently modified will show up here.'),\n icon: HistorySvg,\n order: 2,\n defaultSortKey: 'mtime',\n getContents,\n }));\n};\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".upload-picker[data-v-5f1bec03]{display:inline-flex;align-items:center;height:44px}.upload-picker__progress[data-v-5f1bec03]{width:200px;max-width:0;transition:max-width var(--animation-quick) ease-in-out;margin-top:8px}.upload-picker__progress p[data-v-5f1bec03]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.upload-picker--uploading .upload-picker__progress[data-v-5f1bec03]{max-width:200px;margin-right:20px;margin-left:8px}.upload-picker--paused .upload-picker__progress[data-v-5f1bec03]{animation:breathing-5f1bec03 3s ease-out infinite normal}@keyframes breathing-5f1bec03{0%{opacity:.5}25%{opacity:1}60%{opacity:.5}to{opacity:.5}}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index.css\"],\"names\":[],\"mappings\":\"AAAA,gCAAgC,mBAAmB,CAAC,kBAAkB,CAAC,WAAW,CAAC,0CAA0C,WAAW,CAAC,WAAW,CAAC,uDAAuD,CAAC,cAAc,CAAC,4CAA4C,eAAe,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,oEAAoE,eAAe,CAAC,iBAAiB,CAAC,eAAe,CAAC,iEAAiE,wDAAwD,CAAC,8BAA8B,GAAG,UAAU,CAAC,IAAI,SAAS,CAAC,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC\",\"sourcesContent\":[\".upload-picker[data-v-5f1bec03]{display:inline-flex;align-items:center;height:44px}.upload-picker__progress[data-v-5f1bec03]{width:200px;max-width:0;transition:max-width var(--animation-quick) ease-in-out;margin-top:8px}.upload-picker__progress p[data-v-5f1bec03]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.upload-picker--uploading .upload-picker__progress[data-v-5f1bec03]{max-width:200px;margin-right:20px;margin-left:8px}.upload-picker--paused .upload-picker__progress[data-v-5f1bec03]{animation:breathing-5f1bec03 3s ease-out infinite normal}@keyframes breathing-5f1bec03{0%{opacity:.5}25%{opacity:1}60%{opacity:.5}to{opacity:.5}}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".breadcrumb[data-v-ec40407a]{flex:1 1 100% !important;width:100%}.breadcrumb[data-v-ec40407a] a{cursor:pointer !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,6BAEC,wBAAA,CACA,UAAA,CAEA,+BACC,yBAAA\",\"sourcesContent\":[\"\\n.breadcrumb {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\n\\t::v-deep a {\\n\\t\\tcursor: pointer !important;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".custom-svg-icon[data-v-93e9b2f4]{display:flex;align-items:center;align-self:center;justify-content:center;justify-self:center;width:44px;height:44px;opacity:1}.custom-svg-icon[data-v-93e9b2f4] svg{height:22px;width:22px;fill:currentColor}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/CustomSvgIconRender.vue\"],\"names\":[],\"mappings\":\"AACA,kCACC,YAAA,CACA,kBAAA,CACA,iBAAA,CACA,sBAAA,CACA,mBAAA,CACA,UAAA,CACA,WAAA,CACA,SAAA,CAEA,sCAGC,WAAA,CACA,UAAA,CACA,iBAAA\",\"sourcesContent\":[\"\\n.custom-svg-icon {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\talign-self: center;\\n\\tjustify-content: center;\\n\\tjustify-self: center;\\n\\twidth: 44px;\\n\\theight: 44px;\\n\\topacity: 1;\\n\\n\\t::v-deep svg {\\n\\t\\t// mdi icons have a size of 24px\\n\\t\\t// 22px results in roughly 16px inner size\\n\\t\\theight: 22px;\\n\\t\\twidth: 22px;\\n\\t\\tfill: currentColor;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".favorite-marker-icon[data-v-324501a3]{color:#a08b00;width:fit-content;height:fit-content}.favorite-marker-icon[data-v-324501a3] svg{width:26px;height:26px}.favorite-marker-icon[data-v-324501a3] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,aAAA,CACA,iBAAA,CACA,kBAAA,CAGC,4CAEC,UAAA,CACA,WAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: #a08b00;\\n\\twidth: fit-content;\\n\\theight: fit-content;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px;\\n\\t\\t\\theight: 26px;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"tr[data-v-10164d76]:hover,tr[data-v-10164d76]:focus{background-color:var(--color-background-dark)}.files-list__row-icon-overlay[data-v-10164d76]{position:absolute;max-height:18px;max-width:18px;color:var(--color-main-background);margin-top:2px}.files-list__row-icon-preview[data-v-10164d76]:not([style*=background]){background:var(--color-loading-dark)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry.vue\"],\"names\":[],\"mappings\":\"AAGC,oDAEC,6CAAA,CAKF,+CACC,iBAAA,CACA,eAAA,CACA,cAAA,CACA,kCAAA,CAEA,cAAA,CAID,wEACI,oCAAA\",\"sourcesContent\":[\"\\n/* Hover effect on tbody lines only */\\ntr {\\n\\t&:hover,\\n\\t&:focus {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t}\\n}\\n\\n// Folder overlay\\n.files-list__row-icon-overlay {\\n\\tposition: absolute;\\n\\tmax-height: 18px;\\n\\tmax-width: 18px;\\n\\tcolor: var(--color-main-background);\\n\\t// better alignment with the folder icon\\n\\tmargin-top: 2px;\\n}\\n\\n/* Preview not loaded animation effect */\\n.files-list__row-icon-preview:not([style*='background']) {\\n background: var(--color-loading-dark);\\n\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"tr[data-v-5d5c2897]{padding-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}td[data-v-5d5c2897]{user-select:none;color:var(--color-text-maxcontrast) !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,oBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAGD,oBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tpadding-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n}\\n\\ntd {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__column[data-v-50439046]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-50439046]{cursor:pointer}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__row-actions-batch[data-v-0d9363a1]{flex:1 1 100% !important}.files-list__row-actions-batch[data-v-0d9363a1] .button-vue__wrapper{width:100%}.files-list__row-actions-batch[data-v-0d9363a1] .button-vue__wrapper span.button-vue__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CAGA,qEACC,UAAA,CACA,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\n\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t::v-deep .button-vue__wrapper {\\n\\t\\twidth: 100%;\\n\\t\\tspan.button-vue__text {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__column-sort-button{margin:0 calc(var(--cell-margin)*-1);padding:0 4px 0 16px !important}.files-list__column-sort-button .button-vue__wrapper{flex-direction:row-reverse;width:100%}.files-list__column-sort-button .button-vue__icon{transition-timing-function:linear;transition-duration:.1s;transition-property:opacity;opacity:0}.files-list__column-sort-button .button-vue__text{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list__column-sort-button--active .button-vue__icon,.files-list__column-sort-button:hover .button-vue__icon,.files-list__column-sort-button:focus .button-vue__icon,.files-list__column-sort-button:active .button-vue__icon{opacity:1 !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,gCAEC,oCAAA,CAEA,+BAAA,CAGA,qDACC,0BAAA,CAGA,UAAA,CAGD,kDACC,iCAAA,CACA,uBAAA,CACA,2BAAA,CACA,SAAA,CAID,kDACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAOA,mOACC,oBAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\t// Reverse padding\\n\\tpadding: 0 4px 0 16px !important;\\n\\n\\t// Icon after text\\n\\t.button-vue__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t\\t// Take max inner width for text overflow ellipsis\\n\\t\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t.button-vue__icon {\\n\\t\\ttransition-timing-function: linear;\\n\\t\\ttransition-duration: .1s;\\n\\t\\ttransition-property: opacity;\\n\\t\\topacity: 0;\\n\\t}\\n\\n\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t.button-vue__text {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n\\n\\t&--active,\\n\\t&:hover,\\n\\t&:focus,\\n\\t&:active {\\n\\t\\t.button-vue__icon {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list[data-v-18a212d2]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;display:block;overflow:auto;height:100%}.files-list[data-v-18a212d2] tbody{display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-18a212d2] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-18a212d2] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-18a212d2] .files-list__thead,.files-list[data-v-18a212d2] .files-list__tfoot{display:flex;width:100%;background-color:var(--color-main-background)}.files-list[data-v-18a212d2] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);user-select:none}.files-list[data-v-18a212d2] td,.files-list[data-v-18a212d2] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-18a212d2] td span,.files-list[data-v-18a212d2] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-18a212d2] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-18a212d2] .files-list__row-checkbox{justify-content:center}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-18a212d2] .files-list__row:hover,.files-list[data-v-18a212d2] .files-list__row:focus,.files-list[data-v-18a212d2] .files-list__row:active,.files-list[data-v-18a212d2] .files-list__row--active{background-color:var(--color-background-dark)}.files-list[data-v-18a212d2] .files-list__row:hover>*,.files-list[data-v-18a212d2] .files-list__row:focus>*,.files-list[data-v-18a212d2] .files-list__row:active>*,.files-list[data-v-18a212d2] .files-list__row--active>*{--color-border: var(--color-border-dark)}.files-list[data-v-18a212d2] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row--active .favorite-marker-icon svg path{stroke:var(--color-background-dark)}.files-list[data-v-18a212d2] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-18a212d2] .files-list__row-icon *{cursor:pointer}.files-list[data-v-18a212d2] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-18a212d2] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon{margin:-3px}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-18a212d2] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);background-repeat:no-repeat;background-position:center;background-size:contain}.files-list[data-v-18a212d2] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-18a212d2] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-18a212d2] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-18a212d2] .files-list__row-name a:focus .files-list__row-name-text,.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-18a212d2] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-18a212d2] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-18a212d2] .files-list__row-actions{width:auto}.files-list[data-v-18a212d2] .files-list__row-actions~td,.files-list[data-v-18a212d2] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-18a212d2] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-18a212d2] .files-list__row-actions button:not(:hover,:focus,:active) .button-vue__wrapper{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-mtime,.files-list[data-v-18a212d2] .files-list__row-size{justify-content:flex-end;width:calc(var(--row-height)*1.5);color:var(--color-main-text)}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button{padding:0 16px 0 4px !important}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button .button-vue__wrapper,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button .button-vue__wrapper{flex-direction:row}.files-list[data-v-18a212d2] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-18a212d2] .files-list__row-column-custom{width:calc(var(--row-height)*2)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,aAAA,CACA,WAAA,CAIC,mCACC,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAID,iDACC,YAAA,CACA,qBAAA,CAID,gDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAGD,gGAEC,YAAA,CACA,UAAA,CACA,6CAAA,CAID,gCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,gBAAA,CAGD,gEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,0EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,sDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,uDACC,sBAAA,CAEA,8EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,iHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,2GACC,mBAAA,CAMF,mNACC,6CAAA,CACA,2NACC,wCAAA,CAGD,+UACC,mCAAA,CAMH,mDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,qDACC,cAAA,CAGD,wDACC,0BAAA,CAEA,gGACC,8BAAA,CACA,+BAAA,CAID,oEACC,WAAA,CACA,wEACC,0CAAA,CACA,2CAAA,CAKH,2DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CACA,2BAAA,CAEA,0BAAA,CACA,uBAAA,CAGD,4DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAKF,mDAEC,eAAA,CAEA,aAAA,CAEA,qDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,mEACC,YAAA,CAID,oLAEC,mDAAA,CACA,kBAAA,CAIF,8EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,6EACC,mCAAA,CAKF,qDACC,UAAA,CACA,eAAA,CACA,2DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,mEAEC,+BAAA,CACA,SAAA,CAKH,sDACC,UAAA,CAGA,kHAEC,2BAAA,CAIA,+EAEC,kBAAA,CAED,6GAEC,mCAAA,CAKH,uGAGC,wBAAA,CACA,iCAAA,CAEA,4BAAA,CAGA,uKACC,+BAAA,CACA,iNACC,kBAAA,CAKH,oDACC,+BAAA,CAGD,4DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\tdisplay: block;\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\n\\t&::v-deep {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tuser-select: none;\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active {\\n\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tbackground-position: center;\\n\\t\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text,\\n\\t\\t\\t\\t&:focus-visible .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:not(:hover, :focus, :active) .button-vue__wrapper {\\n\\t\\t\\t\\t\\t// Also apply color-text-maxcontrast to non-active button\\n\\t\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\t// Right align text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// opacity varies with the size\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\n\\t\\t\\t// Icon is before text since size is right aligned\\n\\t\\t\\t.files-list__column-sort-button {\\n\\t\\t\\t\\tpadding: 0 16px 0 4px !important;\\n\\t\\t\\t\\t.button-vue__wrapper {\\n\\t\\t\\t\\t\\tflex-direction: row;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-navigation-entry__settings-quota--not-unlimited[data-v-0df392ce] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-0df392ce]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".template-picker__item[data-v-5b09ec60]{display:flex}.template-picker__label[data-v-5b09ec60]{display:flex;align-items:center;flex:1 1;flex-direction:column}.template-picker__label[data-v-5b09ec60],.template-picker__label *[data-v-5b09ec60]{cursor:pointer;user-select:none}.template-picker__label[data-v-5b09ec60]::before{display:none !important}.template-picker__preview[data-v-5b09ec60]{display:block;overflow:hidden;flex:1 1;width:var(--width);min-height:var(--height);max-height:var(--height);padding:0;border:var(--border) solid var(--color-border);border-radius:var(--border-radius-large)}input:checked+label>.template-picker__preview[data-v-5b09ec60]{border-color:var(--color-primary-element)}.template-picker__preview--failed[data-v-5b09ec60]{display:flex}.template-picker__image[data-v-5b09ec60]{max-width:100%;background-color:var(--color-main-background);object-fit:cover}.template-picker__preview--failed .template-picker__image[data-v-5b09ec60]{width:calc(var(--margin)*8);margin:auto;background-color:rgba(0,0,0,0) !important;object-fit:initial}.template-picker__title[data-v-5b09ec60]{overflow:hidden;max-width:calc(var(--width) + 4px);padding:var(--margin);white-space:nowrap;text-overflow:ellipsis}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/TemplatePreview.vue\"],\"names\":[],\"mappings\":\"AAGC,wCACC,YAAA,CAGD,yCACC,YAAA,CAEA,kBAAA,CACA,QAAA,CACA,qBAAA,CAEA,oFACC,cAAA,CACA,gBAAA,CAGD,iDACC,uBAAA,CAIF,2CACC,aAAA,CACA,eAAA,CAEA,QAAA,CACA,kBAAA,CACA,wBAAA,CACA,wBAAA,CACA,SAAA,CACA,8CAAA,CACA,wCAAA,CAEA,+DACC,yCAAA,CAGD,mDAEC,YAAA,CAIF,yCACC,cAAA,CACA,6CAAA,CAEA,gBAAA,CAID,2EACC,2BAAA,CAEA,WAAA,CACA,yCAAA,CAEA,kBAAA,CAGD,yCACC,eAAA,CAEA,kCAAA,CACA,qBAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n\\n.template-picker {\\n\\t&__item {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\n\\t&__label {\\n\\t\\tdisplay: flex;\\n\\t\\t// Align in the middle of the grid\\n\\t\\talign-items: center;\\n\\t\\tflex: 1 1;\\n\\t\\tflex-direction: column;\\n\\n\\t\\t&, * {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\tuser-select: none;\\n\\t\\t}\\n\\n\\t\\t&::before {\\n\\t\\t\\tdisplay: none !important;\\n\\t\\t}\\n\\t}\\n\\n\\t&__preview {\\n\\t\\tdisplay: block;\\n\\t\\toverflow: hidden;\\n\\t\\t// Stretch so all entries are the same width\\n\\t\\tflex: 1 1;\\n\\t\\twidth: var(--width);\\n\\t\\tmin-height: var(--height);\\n\\t\\tmax-height: var(--height);\\n\\t\\tpadding: 0;\\n\\t\\tborder: var(--border) solid var(--color-border);\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\n\\t\\tinput:checked + label > & {\\n\\t\\t\\tborder-color: var(--color-primary-element);\\n\\t\\t}\\n\\n\\t\\t&--failed {\\n\\t\\t\\t// Make sure to properly center fallback icon\\n\\t\\t\\tdisplay: flex;\\n\\t\\t}\\n\\t}\\n\\n\\t&__image {\\n\\t\\tmax-width: 100%;\\n\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\tobject-fit: cover;\\n\\t}\\n\\n\\t// Failed preview, fallback to mime icon\\n\\t&__preview--failed &__image {\\n\\t\\twidth: calc(var(--margin) * 8);\\n\\t\\t// Center mime icon\\n\\t\\tmargin: auto;\\n\\t\\tbackground-color: transparent !important;\\n\\n\\t\\tobject-fit: initial;\\n\\t}\\n\\n\\t&__title {\\n\\t\\toverflow: hidden;\\n\\t\\t// also count preview border\\n\\t\\tmax-width: calc(var(--width) + 2*2px);\\n\\t\\tpadding: var(--margin);\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-content[data-v-37471899]{display:flex;overflow:hidden;flex-direction:column;max-height:100%}.files-list__header[data-v-37471899]{display:flex;align-content:center;flex:0 0;margin:4px 4px 4px 50px}.files-list__header>*[data-v-37471899]{flex:0 0}.files-list__header-share-button[data-v-37471899]{opacity:.3}.files-list__header-share-button--shared[data-v-37471899]{opacity:1}.files-list__refresh-icon[data-v-37471899]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-37471899]{margin:auto}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CAOA,qCACC,YAAA,CACA,oBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,uCAGC,QAAA,CAGD,kDACC,UAAA,CACA,0DACC,SAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n}\\n\\n$margin: 4px;\\n$navigationToggleSize: 50px;\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-content: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin: $margin $margin $margin $navigationToggleSize;\\n\\t\\t> * {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\topacity: .3;\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\topacity: 1;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-navigation[data-v-5b025a97] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation>ul.app-navigation__list[data-v-5b025a97]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-5b025a97]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".setting-link[data-v-7aaa0c4e]:hover{text-decoration:underline}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".templates-picker__form[data-v-d46f1dc6]{padding:calc(var(--margin)*2);padding-bottom:0}.templates-picker__form h2[data-v-d46f1dc6]{text-align:center;font-weight:bold;margin:var(--margin) 0 calc(var(--margin)*2)}.templates-picker__list[data-v-d46f1dc6]{display:grid;grid-gap:calc(var(--margin)*2);grid-auto-columns:1fr;max-width:calc(var(--fullwidth)*6);grid-template-columns:repeat(auto-fit, var(--fullwidth));grid-auto-rows:1fr;justify-content:center}.templates-picker__buttons[data-v-d46f1dc6]{display:flex;justify-content:end;padding:calc(var(--margin)*2) var(--margin);position:sticky;bottom:0;background-image:linear-gradient(0, var(--gradient-main-background))}.templates-picker__buttons button[data-v-d46f1dc6],.templates-picker__buttons input[type=submit][data-v-d46f1dc6]{height:44px}.templates-picker[data-v-d46f1dc6] .modal-container{position:relative}.templates-picker__loading[data-v-d46f1dc6]{position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;margin:0;background-color:var(--color-main-background-translucent)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/TemplatePicker.vue\"],\"names\":[],\"mappings\":\"AAEC,yCACC,6BAAA,CAEA,gBAAA,CAEA,4CACC,iBAAA,CACA,gBAAA,CACA,4CAAA,CAIF,yCACC,YAAA,CACA,8BAAA,CACA,qBAAA,CAEA,kCAAA,CACA,wDAAA,CAEA,kBAAA,CAEA,sBAAA,CAGD,4CACC,YAAA,CACA,mBAAA,CACA,2CAAA,CACA,eAAA,CACA,QAAA,CACA,oEAAA,CAEA,kHACC,WAAA,CAKF,oDACC,iBAAA,CAGD,4CACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,yDAAA\",\"sourcesContent\":[\"\\n.templates-picker {\\n\\t&__form {\\n\\t\\tpadding: calc(var(--margin) * 2);\\n\\t\\t// Will be handled by the buttons\\n\\t\\tpadding-bottom: 0;\\n\\n\\t\\th2 {\\n\\t\\t\\ttext-align: center;\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\tmargin: var(--margin) 0 calc(var(--margin) * 2);\\n\\t\\t}\\n\\t}\\n\\n\\t&__list {\\n\\t\\tdisplay: grid;\\n\\t\\tgrid-gap: calc(var(--margin) * 2);\\n\\t\\tgrid-auto-columns: 1fr;\\n\\t\\t// We want maximum 5 columns. Putting 6 as we don't count the grid gap. So it will always be lower than 6\\n\\t\\tmax-width: calc(var(--fullwidth) * 6);\\n\\t\\tgrid-template-columns: repeat(auto-fit, var(--fullwidth));\\n\\t\\t// Make sure all rows are the same height\\n\\t\\tgrid-auto-rows: 1fr;\\n\\t\\t// Center the columns set\\n\\t\\tjustify-content: center;\\n\\t}\\n\\n\\t&__buttons {\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: end;\\n\\t\\tpadding: calc(var(--margin) * 2) var(--margin);\\n\\t\\tposition: sticky;\\n\\t\\tbottom: 0;\\n\\t\\tbackground-image: linear-gradient(0, var(--gradient-main-background));\\n\\n\\t\\tbutton, input[type='submit'] {\\n\\t\\t\\theight: 44px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Make sure we're relative for the loading emptycontent on top\\n\\t::v-deep .modal-container {\\n\\t\\tposition: relative;\\n\\t}\\n\\n\\t&__loading {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tmargin: 0;\\n\\t\\tbackground-color: var(--color-main-background-translucent);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\\n/* @keyframes preview-gradient-fade {\\n 0% {\\n opacity: 1;\\n }\\n 50% {\\n opacity: 0.5;\\n }\\n 100% {\\n opacity: 1;\\n }\\n} */\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry.vue\"],\"names\":[],\"mappings\":\";AAs7BA;;;;;;;;;;GAUA\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","var map = {\n\t\"./af\": 42786,\n\t\"./af.js\": 42786,\n\t\"./ar\": 30867,\n\t\"./ar-dz\": 14130,\n\t\"./ar-dz.js\": 14130,\n\t\"./ar-kw\": 96135,\n\t\"./ar-kw.js\": 96135,\n\t\"./ar-ly\": 56440,\n\t\"./ar-ly.js\": 56440,\n\t\"./ar-ma\": 47702,\n\t\"./ar-ma.js\": 47702,\n\t\"./ar-sa\": 16040,\n\t\"./ar-sa.js\": 16040,\n\t\"./ar-tn\": 37100,\n\t\"./ar-tn.js\": 37100,\n\t\"./ar.js\": 30867,\n\t\"./az\": 31083,\n\t\"./az.js\": 31083,\n\t\"./be\": 9808,\n\t\"./be.js\": 9808,\n\t\"./bg\": 68338,\n\t\"./bg.js\": 68338,\n\t\"./bm\": 67438,\n\t\"./bm.js\": 67438,\n\t\"./bn\": 8905,\n\t\"./bn-bd\": 76225,\n\t\"./bn-bd.js\": 76225,\n\t\"./bn.js\": 8905,\n\t\"./bo\": 11560,\n\t\"./bo.js\": 11560,\n\t\"./br\": 1278,\n\t\"./br.js\": 1278,\n\t\"./bs\": 80622,\n\t\"./bs.js\": 80622,\n\t\"./ca\": 2468,\n\t\"./ca.js\": 2468,\n\t\"./cs\": 5822,\n\t\"./cs.js\": 5822,\n\t\"./cv\": 50877,\n\t\"./cv.js\": 50877,\n\t\"./cy\": 47373,\n\t\"./cy.js\": 47373,\n\t\"./da\": 24780,\n\t\"./da.js\": 24780,\n\t\"./de\": 59740,\n\t\"./de-at\": 60217,\n\t\"./de-at.js\": 60217,\n\t\"./de-ch\": 60894,\n\t\"./de-ch.js\": 60894,\n\t\"./de.js\": 59740,\n\t\"./dv\": 5300,\n\t\"./dv.js\": 5300,\n\t\"./el\": 50837,\n\t\"./el.js\": 50837,\n\t\"./en-au\": 78348,\n\t\"./en-au.js\": 78348,\n\t\"./en-ca\": 77925,\n\t\"./en-ca.js\": 77925,\n\t\"./en-gb\": 22243,\n\t\"./en-gb.js\": 22243,\n\t\"./en-ie\": 46436,\n\t\"./en-ie.js\": 46436,\n\t\"./en-il\": 47207,\n\t\"./en-il.js\": 47207,\n\t\"./en-in\": 44175,\n\t\"./en-in.js\": 44175,\n\t\"./en-nz\": 76319,\n\t\"./en-nz.js\": 76319,\n\t\"./en-sg\": 31662,\n\t\"./en-sg.js\": 31662,\n\t\"./eo\": 92915,\n\t\"./eo.js\": 92915,\n\t\"./es\": 55655,\n\t\"./es-do\": 55251,\n\t\"./es-do.js\": 55251,\n\t\"./es-mx\": 96112,\n\t\"./es-mx.js\": 96112,\n\t\"./es-us\": 71146,\n\t\"./es-us.js\": 71146,\n\t\"./es.js\": 55655,\n\t\"./et\": 5603,\n\t\"./et.js\": 5603,\n\t\"./eu\": 77763,\n\t\"./eu.js\": 77763,\n\t\"./fa\": 76959,\n\t\"./fa.js\": 76959,\n\t\"./fi\": 11897,\n\t\"./fi.js\": 11897,\n\t\"./fil\": 42549,\n\t\"./fil.js\": 42549,\n\t\"./fo\": 94694,\n\t\"./fo.js\": 94694,\n\t\"./fr\": 94470,\n\t\"./fr-ca\": 63049,\n\t\"./fr-ca.js\": 63049,\n\t\"./fr-ch\": 52330,\n\t\"./fr-ch.js\": 52330,\n\t\"./fr.js\": 94470,\n\t\"./fy\": 5044,\n\t\"./fy.js\": 5044,\n\t\"./ga\": 29295,\n\t\"./ga.js\": 29295,\n\t\"./gd\": 2101,\n\t\"./gd.js\": 2101,\n\t\"./gl\": 38794,\n\t\"./gl.js\": 38794,\n\t\"./gom-deva\": 27884,\n\t\"./gom-deva.js\": 27884,\n\t\"./gom-latn\": 23168,\n\t\"./gom-latn.js\": 23168,\n\t\"./gu\": 95349,\n\t\"./gu.js\": 95349,\n\t\"./he\": 24206,\n\t\"./he.js\": 24206,\n\t\"./hi\": 30094,\n\t\"./hi.js\": 30094,\n\t\"./hr\": 30316,\n\t\"./hr.js\": 30316,\n\t\"./hu\": 22138,\n\t\"./hu.js\": 22138,\n\t\"./hy-am\": 11423,\n\t\"./hy-am.js\": 11423,\n\t\"./id\": 29218,\n\t\"./id.js\": 29218,\n\t\"./is\": 90135,\n\t\"./is.js\": 90135,\n\t\"./it\": 90626,\n\t\"./it-ch\": 10150,\n\t\"./it-ch.js\": 10150,\n\t\"./it.js\": 90626,\n\t\"./ja\": 39183,\n\t\"./ja.js\": 39183,\n\t\"./jv\": 24286,\n\t\"./jv.js\": 24286,\n\t\"./ka\": 12105,\n\t\"./ka.js\": 12105,\n\t\"./kk\": 47772,\n\t\"./kk.js\": 47772,\n\t\"./km\": 18758,\n\t\"./km.js\": 18758,\n\t\"./kn\": 79282,\n\t\"./kn.js\": 79282,\n\t\"./ko\": 33730,\n\t\"./ko.js\": 33730,\n\t\"./ku\": 1408,\n\t\"./ku.js\": 1408,\n\t\"./ky\": 33291,\n\t\"./ky.js\": 33291,\n\t\"./lb\": 36841,\n\t\"./lb.js\": 36841,\n\t\"./lo\": 55466,\n\t\"./lo.js\": 55466,\n\t\"./lt\": 57010,\n\t\"./lt.js\": 57010,\n\t\"./lv\": 37595,\n\t\"./lv.js\": 37595,\n\t\"./me\": 39861,\n\t\"./me.js\": 39861,\n\t\"./mi\": 35493,\n\t\"./mi.js\": 35493,\n\t\"./mk\": 95966,\n\t\"./mk.js\": 95966,\n\t\"./ml\": 87341,\n\t\"./ml.js\": 87341,\n\t\"./mn\": 5115,\n\t\"./mn.js\": 5115,\n\t\"./mr\": 10370,\n\t\"./mr.js\": 10370,\n\t\"./ms\": 9847,\n\t\"./ms-my\": 41237,\n\t\"./ms-my.js\": 41237,\n\t\"./ms.js\": 9847,\n\t\"./mt\": 72126,\n\t\"./mt.js\": 72126,\n\t\"./my\": 56165,\n\t\"./my.js\": 56165,\n\t\"./nb\": 64924,\n\t\"./nb.js\": 64924,\n\t\"./ne\": 16744,\n\t\"./ne.js\": 16744,\n\t\"./nl\": 93901,\n\t\"./nl-be\": 59814,\n\t\"./nl-be.js\": 59814,\n\t\"./nl.js\": 93901,\n\t\"./nn\": 83877,\n\t\"./nn.js\": 83877,\n\t\"./oc-lnc\": 92135,\n\t\"./oc-lnc.js\": 92135,\n\t\"./pa-in\": 15858,\n\t\"./pa-in.js\": 15858,\n\t\"./pl\": 64495,\n\t\"./pl.js\": 64495,\n\t\"./pt\": 89520,\n\t\"./pt-br\": 57971,\n\t\"./pt-br.js\": 57971,\n\t\"./pt.js\": 89520,\n\t\"./ro\": 96459,\n\t\"./ro.js\": 96459,\n\t\"./ru\": 21793,\n\t\"./ru.js\": 21793,\n\t\"./sd\": 40950,\n\t\"./sd.js\": 40950,\n\t\"./se\": 10490,\n\t\"./se.js\": 10490,\n\t\"./si\": 90124,\n\t\"./si.js\": 90124,\n\t\"./sk\": 64249,\n\t\"./sk.js\": 64249,\n\t\"./sl\": 14985,\n\t\"./sl.js\": 14985,\n\t\"./sq\": 51104,\n\t\"./sq.js\": 51104,\n\t\"./sr\": 49131,\n\t\"./sr-cyrl\": 79915,\n\t\"./sr-cyrl.js\": 79915,\n\t\"./sr.js\": 49131,\n\t\"./ss\": 85893,\n\t\"./ss.js\": 85893,\n\t\"./sv\": 98760,\n\t\"./sv.js\": 98760,\n\t\"./sw\": 91172,\n\t\"./sw.js\": 91172,\n\t\"./ta\": 27333,\n\t\"./ta.js\": 27333,\n\t\"./te\": 23110,\n\t\"./te.js\": 23110,\n\t\"./tet\": 52095,\n\t\"./tet.js\": 52095,\n\t\"./tg\": 27321,\n\t\"./tg.js\": 27321,\n\t\"./th\": 9041,\n\t\"./th.js\": 9041,\n\t\"./tk\": 19005,\n\t\"./tk.js\": 19005,\n\t\"./tl-ph\": 75768,\n\t\"./tl-ph.js\": 75768,\n\t\"./tlh\": 89444,\n\t\"./tlh.js\": 89444,\n\t\"./tr\": 72397,\n\t\"./tr.js\": 72397,\n\t\"./tzl\": 28254,\n\t\"./tzl.js\": 28254,\n\t\"./tzm\": 51106,\n\t\"./tzm-latn\": 30699,\n\t\"./tzm-latn.js\": 30699,\n\t\"./tzm.js\": 51106,\n\t\"./ug-cn\": 9288,\n\t\"./ug-cn.js\": 9288,\n\t\"./uk\": 67691,\n\t\"./uk.js\": 67691,\n\t\"./ur\": 13795,\n\t\"./ur.js\": 13795,\n\t\"./uz\": 6791,\n\t\"./uz-latn\": 60588,\n\t\"./uz-latn.js\": 60588,\n\t\"./uz.js\": 6791,\n\t\"./vi\": 65666,\n\t\"./vi.js\": 65666,\n\t\"./x-pseudo\": 14378,\n\t\"./x-pseudo.js\": 14378,\n\t\"./yo\": 75805,\n\t\"./yo.js\": 75805,\n\t\"./zh-cn\": 83839,\n\t\"./zh-cn.js\": 83839,\n\t\"./zh-hk\": 55726,\n\t\"./zh-hk.js\": 55726,\n\t\"./zh-mo\": 99807,\n\t\"./zh-mo.js\": 99807,\n\t\"./zh-tw\": 74152,\n\t\"./zh-tw.js\": 74152\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 46700;","// @flow\n\n/*::\ntype Options = {\n max?: number,\n min?: number,\n historyTimeConstant?: number,\n autostart?: boolean,\n ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n return function (previousOutput, input, dt) {\n const alpha = dt / (dt + RC);\n return previousOutput + alpha * (input - previousOutput);\n }\n}\n\nfunction def/*:: */(x/*: ?T*/, d/*: T*/)/*: T*/ {\n return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n options = options || {};\n var max = def(options.max, 1);\n var min = def(options.min, 0);\n var autostart = def(options.autostart, true);\n var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n var rate/*: number | null */ = null;\n var lastTimestamp/*: number | null */ = null;\n var lastProgress/*: number | null */ = null;\n\n var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n function start() {\n report(min);\n }\n\n function reset() {\n rate = null;\n lastTimestamp = null;\n lastProgress = null;\n if (autostart) {\n start();\n }\n }\n\n function report(progress /*: number */, timestamp/*::?: number */) {\n if (typeof timestamp !== 'number') {\n timestamp = Date.now();\n }\n\n if (lastTimestamp === timestamp) { return; }\n if (ignoreSameProgress && lastProgress === progress) { return; }\n\n if (lastTimestamp === null || lastProgress === null) {\n lastProgress = progress;\n lastTimestamp = timestamp;\n return;\n }\n\n var deltaProgress = progress - lastProgress;\n var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n var currentRate = deltaProgress / deltaTimestamp;\n\n rate = rate === null\n ? currentRate\n : filter(rate, currentRate, deltaTimestamp);\n lastProgress = progress;\n lastTimestamp = timestamp;\n }\n\n function estimate(timestamp/*::?: number*/) {\n if (lastProgress === null) { return Infinity; }\n if (lastProgress >= max) { return 0; }\n if (rate === null) { return Infinity; }\n\n var estimatedTime = (max - lastProgress) / rate;\n if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n }\n return Math.max(0, estimatedTime);\n }\n\n function getRate() {\n return rate === null ? 0 : rate;\n }\n\n return {\n start: start,\n reset: reset,\n report: report,\n estimate: estimate,\n rate: getRate,\n }\n}\n\nmodule.exports = makeEta;\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=5c8d96c6&\"\nimport script from \"./File.vue?vue&type=script&lang=js&\"\nexport * from \"./File.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon home-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Home.vue?vue&type=template&id=69a49b0f&\"\nimport script from \"./Home.vue?vue&type=script&lang=js&\"\nexport * from \"./Home.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index.css\";\n export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined ?\n\tnew AbortError(errorMessage) :\n\tnew DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined ?\n\t\tgetDOMException('This operation was aborted.') :\n\t\tsignal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, milliseconds, fallback, options) {\n\tlet timer;\n\n\tconst cancelablePromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tresolve(promise);\n\t\t\treturn;\n\t\t}\n\n\t\toptions = {\n\t\t\tcustomTimers: {setTimeout, clearTimeout},\n\t\t\t...options\n\t\t};\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\ttimer = options.customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (typeof fallback === 'function') {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst message = typeof fallback === 'string' ? fallback : `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\tconst timeoutError = fallback instanceof Error ? fallback : new TimeoutError(message);\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\treject(timeoutError);\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t} finally {\n\t\t\t\toptions.customTimers.clearTimeout.call(undefined, timer);\n\t\t\t}\n\t\t})();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tclearTimeout(timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _PriorityQueue_queue;\nimport lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n constructor() {\n _PriorityQueue_queue.set(this, []);\n }\n enqueue(run, options) {\n options = {\n priority: 0,\n ...options,\n };\n const element = {\n priority: options.priority,\n run,\n };\n if (this.size && __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\")[this.size - 1].priority >= options.priority) {\n __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").push(element);\n return;\n }\n const index = lowerBound(__classPrivateFieldGet(this, _PriorityQueue_queue, \"f\"), element, (a, b) => b.priority - a.priority);\n __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").splice(index, 0, element);\n }\n dequeue() {\n const item = __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").shift();\n return item === null || item === void 0 ? void 0 : item.run;\n }\n filter(options) {\n return __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").filter((element) => element.priority === options.priority).map((element) => element.run);\n }\n get size() {\n return __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").length;\n }\n}\n_PriorityQueue_queue = new WeakMap();\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n let first = 0;\n let count = array.length;\n while (count > 0) {\n const step = Math.trunc(count / 2);\n let it = first + step;\n if (comparator(array[it], value) <= 0) {\n first = ++it;\n count -= step + 1;\n }\n else {\n count = step;\n }\n }\n return first;\n}\n","var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n};\nvar __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _PQueue_instances, _PQueue_carryoverConcurrencyCount, _PQueue_isIntervalIgnored, _PQueue_intervalCount, _PQueue_intervalCap, _PQueue_interval, _PQueue_intervalEnd, _PQueue_intervalId, _PQueue_timeoutId, _PQueue_queue, _PQueue_queueClass, _PQueue_pending, _PQueue_concurrency, _PQueue_isPaused, _PQueue_throwOnTimeout, _PQueue_doesIntervalAllowAnother_get, _PQueue_doesConcurrentAllowAnother_get, _PQueue_next, _PQueue_onResumeInterval, _PQueue_isIntervalPaused_get, _PQueue_tryToStartAnother, _PQueue_initializeIntervalIfNeeded, _PQueue_onInterval, _PQueue_processQueue, _PQueue_throwOnAbort, _PQueue_onEvent;\nimport EventEmitter from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nThe error thrown by `queue.add()` when a job is aborted before it is run. See `signal`.\n*/\nexport class AbortError extends Error {\n}\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n constructor(options) {\n var _a, _b, _c, _d;\n super();\n _PQueue_instances.add(this);\n _PQueue_carryoverConcurrencyCount.set(this, void 0);\n _PQueue_isIntervalIgnored.set(this, void 0);\n _PQueue_intervalCount.set(this, 0);\n _PQueue_intervalCap.set(this, void 0);\n _PQueue_interval.set(this, void 0);\n _PQueue_intervalEnd.set(this, 0);\n _PQueue_intervalId.set(this, void 0);\n _PQueue_timeoutId.set(this, void 0);\n _PQueue_queue.set(this, void 0);\n _PQueue_queueClass.set(this, void 0);\n _PQueue_pending.set(this, 0);\n // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n _PQueue_concurrency.set(this, void 0);\n _PQueue_isPaused.set(this, void 0);\n _PQueue_throwOnTimeout.set(this, void 0);\n /**\n Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n \n Applies to each future operation.\n */\n Object.defineProperty(this, \"timeout\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: void 0\n });\n // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n options = {\n carryoverConcurrencyCount: false,\n intervalCap: Number.POSITIVE_INFINITY,\n interval: 0,\n concurrency: Number.POSITIVE_INFINITY,\n autoStart: true,\n queueClass: PriorityQueue,\n ...options,\n };\n if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${(_b = (_a = options.intervalCap) === null || _a === void 0 ? void 0 : _a.toString()) !== null && _b !== void 0 ? _b : ''}\\` (${typeof options.intervalCap})`);\n }\n if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${(_d = (_c = options.interval) === null || _c === void 0 ? void 0 : _c.toString()) !== null && _d !== void 0 ? _d : ''}\\` (${typeof options.interval})`);\n }\n __classPrivateFieldSet(this, _PQueue_carryoverConcurrencyCount, options.carryoverConcurrencyCount, \"f\");\n __classPrivateFieldSet(this, _PQueue_isIntervalIgnored, options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0, \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalCap, options.intervalCap, \"f\");\n __classPrivateFieldSet(this, _PQueue_interval, options.interval, \"f\");\n __classPrivateFieldSet(this, _PQueue_queue, new options.queueClass(), \"f\");\n __classPrivateFieldSet(this, _PQueue_queueClass, options.queueClass, \"f\");\n this.concurrency = options.concurrency;\n this.timeout = options.timeout;\n __classPrivateFieldSet(this, _PQueue_throwOnTimeout, options.throwOnTimeout === true, \"f\");\n __classPrivateFieldSet(this, _PQueue_isPaused, options.autoStart === false, \"f\");\n }\n get concurrency() {\n return __classPrivateFieldGet(this, _PQueue_concurrency, \"f\");\n }\n set concurrency(newConcurrency) {\n if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n }\n __classPrivateFieldSet(this, _PQueue_concurrency, newConcurrency, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n }\n async add(function_, options = {}) {\n options = {\n timeout: this.timeout,\n throwOnTimeout: __classPrivateFieldGet(this, _PQueue_throwOnTimeout, \"f\"),\n ...options,\n };\n return new Promise((resolve, reject) => {\n __classPrivateFieldGet(this, _PQueue_queue, \"f\").enqueue(async () => {\n var _a;\n var _b, _c;\n __classPrivateFieldSet(this, _PQueue_pending, (_b = __classPrivateFieldGet(this, _PQueue_pending, \"f\"), _b++, _b), \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalCount, (_c = __classPrivateFieldGet(this, _PQueue_intervalCount, \"f\"), _c++, _c), \"f\");\n try {\n // TODO: Use options.signal?.throwIfAborted() when targeting Node.js 18\n if ((_a = options.signal) === null || _a === void 0 ? void 0 : _a.aborted) {\n // TODO: Use ABORT_ERR code when targeting Node.js 16 (https://nodejs.org/docs/latest-v16.x/api/errors.html#abort_err)\n throw new AbortError('The task was aborted.');\n }\n let operation = function_({ signal: options.signal });\n if (options.timeout) {\n operation = pTimeout(Promise.resolve(operation), options.timeout);\n }\n if (options.signal) {\n operation = Promise.race([operation, __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_throwOnAbort).call(this, options.signal)]);\n }\n const result = await operation;\n resolve(result);\n this.emit('completed', result);\n }\n catch (error) {\n if (error instanceof TimeoutError && !options.throwOnTimeout) {\n resolve();\n return;\n }\n reject(error);\n this.emit('error', error);\n }\n finally {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_next).call(this);\n }\n }, options);\n this.emit('add');\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this);\n });\n }\n async addAll(functions, options) {\n return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n }\n /**\n Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n */\n start() {\n if (!__classPrivateFieldGet(this, _PQueue_isPaused, \"f\")) {\n return this;\n }\n __classPrivateFieldSet(this, _PQueue_isPaused, false, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n return this;\n }\n /**\n Put queue execution on hold.\n */\n pause() {\n __classPrivateFieldSet(this, _PQueue_isPaused, true, \"f\");\n }\n /**\n Clear the queue.\n */\n clear() {\n __classPrivateFieldSet(this, _PQueue_queue, new (__classPrivateFieldGet(this, _PQueue_queueClass, \"f\"))(), \"f\");\n }\n /**\n Can be called multiple times. Useful if you for example add additional items at a later time.\n\n @returns A promise that settles when the queue becomes empty.\n */\n async onEmpty() {\n // Instantly resolve if the queue is empty\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'empty');\n }\n /**\n @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n */\n async onSizeLessThan(limit) {\n // Instantly resolve if the queue is empty.\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size < limit) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'next', () => __classPrivateFieldGet(this, _PQueue_queue, \"f\").size < limit);\n }\n /**\n The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n */\n async onIdle() {\n // Instantly resolve if none pending and if nothing else is queued\n if (__classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'idle');\n }\n /**\n Size of the queue, the number of queued items waiting to run.\n */\n get size() {\n return __classPrivateFieldGet(this, _PQueue_queue, \"f\").size;\n }\n /**\n Size of the queue, filtered by the given options.\n\n For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n */\n sizeBy(options) {\n // eslint-disable-next-line unicorn/no-array-callback-reference\n return __classPrivateFieldGet(this, _PQueue_queue, \"f\").filter(options).length;\n }\n /**\n Number of running items (no longer in the queue).\n */\n get pending() {\n return __classPrivateFieldGet(this, _PQueue_pending, \"f\");\n }\n /**\n Whether the queue is currently paused.\n */\n get isPaused() {\n return __classPrivateFieldGet(this, _PQueue_isPaused, \"f\");\n }\n}\n_PQueue_carryoverConcurrencyCount = new WeakMap(), _PQueue_isIntervalIgnored = new WeakMap(), _PQueue_intervalCount = new WeakMap(), _PQueue_intervalCap = new WeakMap(), _PQueue_interval = new WeakMap(), _PQueue_intervalEnd = new WeakMap(), _PQueue_intervalId = new WeakMap(), _PQueue_timeoutId = new WeakMap(), _PQueue_queue = new WeakMap(), _PQueue_queueClass = new WeakMap(), _PQueue_pending = new WeakMap(), _PQueue_concurrency = new WeakMap(), _PQueue_isPaused = new WeakMap(), _PQueue_throwOnTimeout = new WeakMap(), _PQueue_instances = new WeakSet(), _PQueue_doesIntervalAllowAnother_get = function _PQueue_doesIntervalAllowAnother_get() {\n return __classPrivateFieldGet(this, _PQueue_isIntervalIgnored, \"f\") || __classPrivateFieldGet(this, _PQueue_intervalCount, \"f\") < __classPrivateFieldGet(this, _PQueue_intervalCap, \"f\");\n}, _PQueue_doesConcurrentAllowAnother_get = function _PQueue_doesConcurrentAllowAnother_get() {\n return __classPrivateFieldGet(this, _PQueue_pending, \"f\") < __classPrivateFieldGet(this, _PQueue_concurrency, \"f\");\n}, _PQueue_next = function _PQueue_next() {\n var _a;\n __classPrivateFieldSet(this, _PQueue_pending, (_a = __classPrivateFieldGet(this, _PQueue_pending, \"f\"), _a--, _a), \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this);\n this.emit('next');\n}, _PQueue_onResumeInterval = function _PQueue_onResumeInterval() {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onInterval).call(this);\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_initializeIntervalIfNeeded).call(this);\n __classPrivateFieldSet(this, _PQueue_timeoutId, undefined, \"f\");\n}, _PQueue_isIntervalPaused_get = function _PQueue_isIntervalPaused_get() {\n const now = Date.now();\n if (__classPrivateFieldGet(this, _PQueue_intervalId, \"f\") === undefined) {\n const delay = __classPrivateFieldGet(this, _PQueue_intervalEnd, \"f\") - now;\n if (delay < 0) {\n // Act as the interval was done\n // We don't need to resume it here because it will be resumed on line 160\n __classPrivateFieldSet(this, _PQueue_intervalCount, (__classPrivateFieldGet(this, _PQueue_carryoverConcurrencyCount, \"f\")) ? __classPrivateFieldGet(this, _PQueue_pending, \"f\") : 0, \"f\");\n }\n else {\n // Act as the interval is pending\n if (__classPrivateFieldGet(this, _PQueue_timeoutId, \"f\") === undefined) {\n __classPrivateFieldSet(this, _PQueue_timeoutId, setTimeout(() => {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onResumeInterval).call(this);\n }, delay), \"f\");\n }\n return true;\n }\n }\n return false;\n}, _PQueue_tryToStartAnother = function _PQueue_tryToStartAnother() {\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n // We can clear the interval (\"pause\")\n // Because we can redo it later (\"resume\")\n if (__classPrivateFieldGet(this, _PQueue_intervalId, \"f\")) {\n clearInterval(__classPrivateFieldGet(this, _PQueue_intervalId, \"f\"));\n }\n __classPrivateFieldSet(this, _PQueue_intervalId, undefined, \"f\");\n this.emit('empty');\n if (__classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0) {\n this.emit('idle');\n }\n return false;\n }\n if (!__classPrivateFieldGet(this, _PQueue_isPaused, \"f\")) {\n const canInitializeInterval = !__classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_isIntervalPaused_get);\n if (__classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_doesIntervalAllowAnother_get) && __classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_doesConcurrentAllowAnother_get)) {\n const job = __classPrivateFieldGet(this, _PQueue_queue, \"f\").dequeue();\n if (!job) {\n return false;\n }\n this.emit('active');\n job();\n if (canInitializeInterval) {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_initializeIntervalIfNeeded).call(this);\n }\n return true;\n }\n }\n return false;\n}, _PQueue_initializeIntervalIfNeeded = function _PQueue_initializeIntervalIfNeeded() {\n if (__classPrivateFieldGet(this, _PQueue_isIntervalIgnored, \"f\") || __classPrivateFieldGet(this, _PQueue_intervalId, \"f\") !== undefined) {\n return;\n }\n __classPrivateFieldSet(this, _PQueue_intervalId, setInterval(() => {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onInterval).call(this);\n }, __classPrivateFieldGet(this, _PQueue_interval, \"f\")), \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalEnd, Date.now() + __classPrivateFieldGet(this, _PQueue_interval, \"f\"), \"f\");\n}, _PQueue_onInterval = function _PQueue_onInterval() {\n if (__classPrivateFieldGet(this, _PQueue_intervalCount, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_intervalId, \"f\")) {\n clearInterval(__classPrivateFieldGet(this, _PQueue_intervalId, \"f\"));\n __classPrivateFieldSet(this, _PQueue_intervalId, undefined, \"f\");\n }\n __classPrivateFieldSet(this, _PQueue_intervalCount, __classPrivateFieldGet(this, _PQueue_carryoverConcurrencyCount, \"f\") ? __classPrivateFieldGet(this, _PQueue_pending, \"f\") : 0, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n}, _PQueue_processQueue = function _PQueue_processQueue() {\n // eslint-disable-next-line no-empty\n while (__classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this)) { }\n}, _PQueue_throwOnAbort = async function _PQueue_throwOnAbort(signal) {\n return new Promise((_resolve, reject) => {\n signal.addEventListener('abort', () => {\n // TODO: Reject with signal.throwIfAborted() when targeting Node.js 18\n // TODO: Use ABORT_ERR code when targeting Node.js 16 (https://nodejs.org/docs/latest-v16.x/api/errors.html#abort_err)\n reject(new AbortError('The task was aborted.'));\n }, { once: true });\n });\n}, _PQueue_onEvent = async function _PQueue_onEvent(event, filter) {\n return new Promise(resolve => {\n const listener = () => {\n if (filter && !filter()) {\n return;\n }\n this.off(event, listener);\n resolve();\n };\n this.on(event, listener);\n });\n};\n","import \"../assets/index.css\";\nimport { generateRemoteUrl as xl } from \"@nextcloud/router\";\nimport { getCurrentUser as mr } from \"@nextcloud/auth\";\nimport { Folder as kl, Permission as Vm, getNewFileMenuEntries as Wm } from \"@nextcloud/files\";\nimport Wn from \"@nextcloud/axios\";\nimport Zm from \"p-cancelable\";\nimport Km from \"p-queue\";\nimport Jm from \"p-limit\";\nimport { getLoggerBuilder as hi } from \"@nextcloud/logger\";\nimport { showError as Ym } from \"@nextcloud/dialogs\";\nimport Xm from \"simple-eta\";\nimport Qm from \"buffer\";\nfunction El(e, t) {\n return function() {\n return e.apply(t, arguments);\n };\n}\nconst { toString: e0 } = Object.prototype, { getPrototypeOf: dr } = Object, vs = ((e) => (t) => {\n const a = e0.call(t);\n return e[a] || (e[a] = a.slice(8, -1).toLowerCase());\n})(/* @__PURE__ */ Object.create(null)), vt = (e) => (e = e.toLowerCase(), (t) => vs(t) === e), Cs = (e) => (t) => typeof t === e, { isArray: Ta } = Array, Ka = Cs(\"undefined\");\nfunction t0(e) {\n return e !== null && !Ka(e) && e.constructor !== null && !Ka(e.constructor) && ot(e.constructor.isBuffer) && e.constructor.isBuffer(e);\n}\nconst Pl = vt(\"ArrayBuffer\");\nfunction a0(e) {\n let t;\n return typeof ArrayBuffer < \"u\" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && Pl(e.buffer), t;\n}\nconst n0 = Cs(\"string\"), ot = Cs(\"function\"), Sl = Cs(\"number\"), ys = (e) => e !== null && typeof e == \"object\", s0 = (e) => e === !0 || e === !1, Ln = (e) => {\n if (vs(e) !== \"object\")\n return !1;\n const t = dr(e);\n return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);\n}, o0 = vt(\"Date\"), r0 = vt(\"File\"), i0 = vt(\"Blob\"), u0 = vt(\"FileList\"), l0 = (e) => ys(e) && ot(e.pipe), c0 = (e) => {\n let t;\n return e && (typeof FormData == \"function\" && e instanceof FormData || ot(e.append) && ((t = vs(e)) === \"formdata\" || t === \"object\" && ot(e.toString) && e.toString() === \"[object FormData]\"));\n}, m0 = vt(\"URLSearchParams\"), d0 = (e) => e.trim ? e.trim() : e.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, \"\");\nfunction nn(e, t, { allOwnKeys: a = !1 } = {}) {\n if (e === null || typeof e > \"u\")\n return;\n let n, s;\n if (typeof e != \"object\" && (e = [e]), Ta(e))\n for (n = 0, s = e.length; n < s; n++)\n t.call(null, e[n], n, e);\n else {\n const r = a ? Object.getOwnPropertyNames(e) : Object.keys(e), o = r.length;\n let i;\n for (n = 0; n < o; n++)\n i = r[n], t.call(null, e[i], i, e);\n }\n}\nfunction Tl(e, t) {\n t = t.toLowerCase();\n const a = Object.keys(e);\n let n = a.length, s;\n for (; n-- > 0; )\n if (s = a[n], t === s.toLowerCase())\n return s;\n return null;\n}\nconst Fl = (() => typeof globalThis < \"u\" ? globalThis : typeof self < \"u\" ? self : typeof window < \"u\" ? window : global)(), Dl = (e) => !Ka(e) && e !== Fl;\nfunction Po() {\n const { caseless: e } = Dl(this) && this || {}, t = {}, a = (n, s) => {\n const r = e && Tl(t, s) || s;\n Ln(t[r]) && Ln(n) ? t[r] = Po(t[r], n) : Ln(n) ? t[r] = Po({}, n) : Ta(n) ? t[r] = n.slice() : t[r] = n;\n };\n for (let n = 0, s = arguments.length; n < s; n++)\n arguments[n] && nn(arguments[n], a);\n return t;\n}\nconst p0 = (e, t, a, { allOwnKeys: n } = {}) => (nn(t, (s, r) => {\n a && ot(s) ? e[r] = El(s, a) : e[r] = s;\n}, { allOwnKeys: n }), e), g0 = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), h0 = (e, t, a, n) => {\n e.prototype = Object.create(t.prototype, n), e.prototype.constructor = e, Object.defineProperty(e, \"super\", { value: t.prototype }), a && Object.assign(e.prototype, a);\n}, f0 = (e, t, a, n) => {\n let s, r, o;\n const i = {};\n if (t = t || {}, e == null)\n return t;\n do {\n for (s = Object.getOwnPropertyNames(e), r = s.length; r-- > 0; )\n o = s[r], (!n || n(o, e, t)) && !i[o] && (t[o] = e[o], i[o] = !0);\n e = a !== !1 && dr(e);\n } while (e && (!a || a(e, t)) && e !== Object.prototype);\n return t;\n}, v0 = (e, t, a) => {\n e = String(e), (a === void 0 || a > e.length) && (a = e.length), a -= t.length;\n const n = e.indexOf(t, a);\n return n !== -1 && n === a;\n}, C0 = (e) => {\n if (!e)\n return null;\n if (Ta(e))\n return e;\n let t = e.length;\n if (!Sl(t))\n return null;\n const a = new Array(t);\n for (; t-- > 0; )\n a[t] = e[t];\n return a;\n}, y0 = ((e) => (t) => e && t instanceof e)(typeof Uint8Array < \"u\" && dr(Uint8Array)), A0 = (e, t) => {\n const a = (e && e[Symbol.iterator]).call(e);\n let n;\n for (; (n = a.next()) && !n.done; ) {\n const s = n.value;\n t.call(e, s[0], s[1]);\n }\n}, w0 = (e, t) => {\n let a;\n const n = [];\n for (; (a = e.exec(t)) !== null; )\n n.push(a);\n return n;\n}, b0 = vt(\"HTMLFormElement\"), x0 = (e) => e.toLowerCase().replace(/[-_\\s]([a-z\\d])(\\w*)/g, function(t, a, n) {\n return a.toUpperCase() + n;\n}), fi = (({ hasOwnProperty: e }) => (t, a) => e.call(t, a))(Object.prototype), k0 = vt(\"RegExp\"), Bl = (e, t) => {\n const a = Object.getOwnPropertyDescriptors(e), n = {};\n nn(a, (s, r) => {\n t(s, r, e) !== !1 && (n[r] = s);\n }), Object.defineProperties(e, n);\n}, E0 = (e) => {\n Bl(e, (t, a) => {\n if (ot(e) && [\"arguments\", \"caller\", \"callee\"].indexOf(a) !== -1)\n return !1;\n const n = e[a];\n if (ot(n)) {\n if (t.enumerable = !1, \"writable\" in t) {\n t.writable = !1;\n return;\n }\n t.set || (t.set = () => {\n throw Error(\"Can not rewrite read-only method '\" + a + \"'\");\n });\n }\n });\n}, P0 = (e, t) => {\n const a = {}, n = (s) => {\n s.forEach((r) => {\n a[r] = !0;\n });\n };\n return Ta(e) ? n(e) : n(String(e).split(t)), a;\n}, S0 = () => {\n}, T0 = (e, t) => (e = +e, Number.isFinite(e) ? e : t), Ks = \"abcdefghijklmnopqrstuvwxyz\", vi = \"0123456789\", _l = { DIGIT: vi, ALPHA: Ks, ALPHA_DIGIT: Ks + Ks.toUpperCase() + vi }, F0 = (e = 16, t = _l.ALPHA_DIGIT) => {\n let a = \"\";\n const { length: n } = t;\n for (; e--; )\n a += t[Math.random() * n | 0];\n return a;\n};\nfunction D0(e) {\n return !!(e && ot(e.append) && e[Symbol.toStringTag] === \"FormData\" && e[Symbol.iterator]);\n}\nconst B0 = (e) => {\n const t = new Array(10), a = (n, s) => {\n if (ys(n)) {\n if (t.indexOf(n) >= 0)\n return;\n if (!(\"toJSON\" in n)) {\n t[s] = n;\n const r = Ta(n) ? [] : {};\n return nn(n, (o, i) => {\n const u = a(o, s + 1);\n !Ka(u) && (r[i] = u);\n }), t[s] = void 0, r;\n }\n }\n return n;\n };\n return a(e, 0);\n}, _0 = vt(\"AsyncFunction\"), N0 = (e) => e && (ys(e) || ot(e)) && ot(e.then) && ot(e.catch), G = { isArray: Ta, isArrayBuffer: Pl, isBuffer: t0, isFormData: c0, isArrayBufferView: a0, isString: n0, isNumber: Sl, isBoolean: s0, isObject: ys, isPlainObject: Ln, isUndefined: Ka, isDate: o0, isFile: r0, isBlob: i0, isRegExp: k0, isFunction: ot, isStream: l0, isURLSearchParams: m0, isTypedArray: y0, isFileList: u0, forEach: nn, merge: Po, extend: p0, trim: d0, stripBOM: g0, inherits: h0, toFlatObject: f0, kindOf: vs, kindOfTest: vt, endsWith: v0, toArray: C0, forEachEntry: A0, matchAll: w0, isHTMLForm: b0, hasOwnProperty: fi, hasOwnProp: fi, reduceDescriptors: Bl, freezeMethods: E0, toObjectSet: P0, toCamelCase: x0, noop: S0, toFiniteNumber: T0, findKey: Tl, global: Fl, isContextDefined: Dl, ALPHABET: _l, generateString: F0, isSpecCompliantForm: D0, toJSONObject: B0, isAsyncFn: _0, isThenable: N0 };\nfunction be(e, t, a, n, s) {\n Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = \"AxiosError\", t && (this.code = t), a && (this.config = a), n && (this.request = n), s && (this.response = s);\n}\nG.inherits(be, Error, { toJSON: function() {\n return { message: this.message, name: this.name, description: this.description, number: this.number, fileName: this.fileName, lineNumber: this.lineNumber, columnNumber: this.columnNumber, stack: this.stack, config: G.toJSONObject(this.config), code: this.code, status: this.response && this.response.status ? this.response.status : null };\n} });\nconst Ci = be.prototype, yi = {};\n[\"ERR_BAD_OPTION_VALUE\", \"ERR_BAD_OPTION\", \"ECONNABORTED\", \"ETIMEDOUT\", \"ERR_NETWORK\", \"ERR_FR_TOO_MANY_REDIRECTS\", \"ERR_DEPRECATED\", \"ERR_BAD_RESPONSE\", \"ERR_BAD_REQUEST\", \"ERR_CANCELED\", \"ERR_NOT_SUPPORT\", \"ERR_INVALID_URL\"].forEach((e) => {\n yi[e] = { value: e };\n}), Object.defineProperties(be, yi), Object.defineProperty(Ci, \"isAxiosError\", { value: !0 }), be.from = (e, t, a, n, s, r) => {\n const o = Object.create(Ci);\n return G.toFlatObject(e, o, function(i) {\n return i !== Error.prototype;\n }, (i) => i !== \"isAxiosError\"), be.call(o, e.message, t, a, n, s), o.cause = e, o.name = e.name, r && Object.assign(o, r), o;\n};\nconst O0 = null;\nfunction So(e) {\n return G.isPlainObject(e) || G.isArray(e);\n}\nfunction Nl(e) {\n return G.endsWith(e, \"[]\") ? e.slice(0, -2) : e;\n}\nfunction Ai(e, t, a) {\n return e ? e.concat(t).map(function(n, s) {\n return n = Nl(n), !a && s ? \"[\" + n + \"]\" : n;\n }).join(a ? \".\" : \"\") : t;\n}\nfunction j0(e) {\n return G.isArray(e) && !e.some(So);\n}\nconst L0 = G.toFlatObject(G, {}, null, function(e) {\n return /^is[A-Z]/.test(e);\n});\nfunction As(e, t, a) {\n if (!G.isObject(e))\n throw new TypeError(\"target must be an object\");\n t = t || new FormData(), a = G.toFlatObject(a, { metaTokens: !0, dots: !1, indexes: !1 }, !1, function(p, h) {\n return !G.isUndefined(h[p]);\n });\n const n = a.metaTokens, s = a.visitor || l, r = a.dots, o = a.indexes, i = (a.Blob || typeof Blob < \"u\" && Blob) && G.isSpecCompliantForm(t);\n if (!G.isFunction(s))\n throw new TypeError(\"visitor must be a function\");\n function u(p) {\n if (p === null)\n return \"\";\n if (G.isDate(p))\n return p.toISOString();\n if (!i && G.isBlob(p))\n throw new be(\"Blob is not supported. Use a Buffer instead.\");\n return G.isArrayBuffer(p) || G.isTypedArray(p) ? i && typeof Blob == \"function\" ? new Blob([p]) : Buffer.from(p) : p;\n }\n function l(p, h, y) {\n let P = p;\n if (p && !y && typeof p == \"object\") {\n if (G.endsWith(h, \"{}\"))\n h = n ? h : h.slice(0, -2), p = JSON.stringify(p);\n else if (G.isArray(p) && j0(p) || (G.isFileList(p) || G.endsWith(h, \"[]\")) && (P = G.toArray(p)))\n return h = Nl(h), P.forEach(function(v, g) {\n !(G.isUndefined(v) || v === null) && t.append(o === !0 ? Ai([h], g, r) : o === null ? h : h + \"[]\", u(v));\n }), !1;\n }\n return So(p) ? !0 : (t.append(Ai(y, h, r), u(p)), !1);\n }\n const c = [], d = Object.assign(L0, { defaultVisitor: l, convertValue: u, isVisitable: So });\n function m(p, h) {\n if (!G.isUndefined(p)) {\n if (c.indexOf(p) !== -1)\n throw Error(\"Circular reference detected in \" + h.join(\".\"));\n c.push(p), G.forEach(p, function(y, P) {\n (!(G.isUndefined(y) || y === null) && s.call(t, y, G.isString(P) ? P.trim() : P, h, d)) === !0 && m(y, h ? h.concat(P) : [P]);\n }), c.pop();\n }\n }\n if (!G.isObject(e))\n throw new TypeError(\"data must be an object\");\n return m(e), t;\n}\nfunction wi(e) {\n const t = { \"!\": \"%21\", \"'\": \"%27\", \"(\": \"%28\", \")\": \"%29\", \"~\": \"%7E\", \"%20\": \"+\", \"%00\": \"\\0\" };\n return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g, function(a) {\n return t[a];\n });\n}\nfunction pr(e, t) {\n this._pairs = [], e && As(e, this, t);\n}\nconst bi = pr.prototype;\nbi.append = function(e, t) {\n this._pairs.push([e, t]);\n}, bi.toString = function(e) {\n const t = e ? function(a) {\n return e.call(this, a, wi);\n } : wi;\n return this._pairs.map(function(a) {\n return t(a[0]) + \"=\" + t(a[1]);\n }, \"\").join(\"&\");\n};\nfunction z0(e) {\n return encodeURIComponent(e).replace(/%3A/gi, \":\").replace(/%24/g, \"$\").replace(/%2C/gi, \",\").replace(/%20/g, \"+\").replace(/%5B/gi, \"[\").replace(/%5D/gi, \"]\");\n}\nfunction Ol(e, t, a) {\n if (!t)\n return e;\n const n = a && a.encode || z0, s = a && a.serialize;\n let r;\n if (s ? r = s(t, a) : r = G.isURLSearchParams(t) ? t.toString() : new pr(t, a).toString(n), r) {\n const o = e.indexOf(\"#\");\n o !== -1 && (e = e.slice(0, o)), e += (e.indexOf(\"?\") === -1 ? \"?\" : \"&\") + r;\n }\n return e;\n}\nclass U0 {\n constructor() {\n this.handlers = [];\n }\n use(t, a, n) {\n return this.handlers.push({ fulfilled: t, rejected: a, synchronous: n ? n.synchronous : !1, runWhen: n ? n.runWhen : null }), this.handlers.length - 1;\n }\n eject(t) {\n this.handlers[t] && (this.handlers[t] = null);\n }\n clear() {\n this.handlers && (this.handlers = []);\n }\n forEach(t) {\n G.forEach(this.handlers, function(a) {\n a !== null && t(a);\n });\n }\n}\nconst xi = U0, jl = { silentJSONParsing: !0, forcedJSONParsing: !0, clarifyTimeoutError: !1 }, M0 = typeof URLSearchParams < \"u\" ? URLSearchParams : pr, R0 = typeof FormData < \"u\" ? FormData : null, $0 = typeof Blob < \"u\" ? Blob : null, I0 = (() => {\n let e;\n return typeof navigator < \"u\" && ((e = navigator.product) === \"ReactNative\" || e === \"NativeScript\" || e === \"NS\") ? !1 : typeof window < \"u\" && typeof document < \"u\";\n})(), G0 = (() => typeof WorkerGlobalScope < \"u\" && self instanceof WorkerGlobalScope && typeof self.importScripts == \"function\")(), gt = { isBrowser: !0, classes: { URLSearchParams: M0, FormData: R0, Blob: $0 }, isStandardBrowserEnv: I0, isStandardBrowserWebWorkerEnv: G0, protocols: [\"http\", \"https\", \"file\", \"blob\", \"url\", \"data\"] };\nfunction H0(e, t) {\n return As(e, new gt.classes.URLSearchParams(), Object.assign({ visitor: function(a, n, s, r) {\n return gt.isNode && G.isBuffer(a) ? (this.append(n, a.toString(\"base64\")), !1) : r.defaultVisitor.apply(this, arguments);\n } }, t));\n}\nfunction q0(e) {\n return G.matchAll(/\\w+|\\[(\\w*)]/g, e).map((t) => t[0] === \"[]\" ? \"\" : t[1] || t[0]);\n}\nfunction V0(e) {\n const t = {}, a = Object.keys(e);\n let n;\n const s = a.length;\n let r;\n for (n = 0; n < s; n++)\n r = a[n], t[r] = e[r];\n return t;\n}\nfunction Ll(e) {\n function t(a, n, s, r) {\n let o = a[r++];\n const i = Number.isFinite(+o), u = r >= a.length;\n return o = !o && G.isArray(s) ? s.length : o, u ? (G.hasOwnProp(s, o) ? s[o] = [s[o], n] : s[o] = n, !i) : ((!s[o] || !G.isObject(s[o])) && (s[o] = []), t(a, n, s[o], r) && G.isArray(s[o]) && (s[o] = V0(s[o])), !i);\n }\n if (G.isFormData(e) && G.isFunction(e.entries)) {\n const a = {};\n return G.forEachEntry(e, (n, s) => {\n t(q0(n), s, a, 0);\n }), a;\n }\n return null;\n}\nconst W0 = { \"Content-Type\": void 0 };\nfunction Z0(e, t, a) {\n if (G.isString(e))\n try {\n return (t || JSON.parse)(e), G.trim(e);\n } catch (n) {\n if (n.name !== \"SyntaxError\")\n throw n;\n }\n return (a || JSON.stringify)(e);\n}\nconst Zn = { transitional: jl, adapter: [\"xhr\", \"http\"], transformRequest: [function(e, t) {\n const a = t.getContentType() || \"\", n = a.indexOf(\"application/json\") > -1, s = G.isObject(e);\n if (s && G.isHTMLForm(e) && (e = new FormData(e)), G.isFormData(e))\n return n && n ? JSON.stringify(Ll(e)) : e;\n if (G.isArrayBuffer(e) || G.isBuffer(e) || G.isStream(e) || G.isFile(e) || G.isBlob(e))\n return e;\n if (G.isArrayBufferView(e))\n return e.buffer;\n if (G.isURLSearchParams(e))\n return t.setContentType(\"application/x-www-form-urlencoded;charset=utf-8\", !1), e.toString();\n let r;\n if (s) {\n if (a.indexOf(\"application/x-www-form-urlencoded\") > -1)\n return H0(e, this.formSerializer).toString();\n if ((r = G.isFileList(e)) || a.indexOf(\"multipart/form-data\") > -1) {\n const o = this.env && this.env.FormData;\n return As(r ? { \"files[]\": e } : e, o && new o(), this.formSerializer);\n }\n }\n return s || n ? (t.setContentType(\"application/json\", !1), Z0(e)) : e;\n}], transformResponse: [function(e) {\n const t = this.transitional || Zn.transitional, a = t && t.forcedJSONParsing, n = this.responseType === \"json\";\n if (e && G.isString(e) && (a && !this.responseType || n)) {\n const s = !(t && t.silentJSONParsing) && n;\n try {\n return JSON.parse(e);\n } catch (r) {\n if (s)\n throw r.name === \"SyntaxError\" ? be.from(r, be.ERR_BAD_RESPONSE, this, null, this.response) : r;\n }\n }\n return e;\n}], timeout: 0, xsrfCookieName: \"XSRF-TOKEN\", xsrfHeaderName: \"X-XSRF-TOKEN\", maxContentLength: -1, maxBodyLength: -1, env: { FormData: gt.classes.FormData, Blob: gt.classes.Blob }, validateStatus: function(e) {\n return e >= 200 && e < 300;\n}, headers: { common: { Accept: \"application/json, text/plain, */*\" } } };\nG.forEach([\"delete\", \"get\", \"head\"], function(e) {\n Zn.headers[e] = {};\n}), G.forEach([\"post\", \"put\", \"patch\"], function(e) {\n Zn.headers[e] = G.merge(W0);\n});\nconst gr = Zn, K0 = G.toObjectSet([\"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\"]), J0 = (e) => {\n const t = {};\n let a, n, s;\n return e && e.split(`\n`).forEach(function(r) {\n s = r.indexOf(\":\"), a = r.substring(0, s).trim().toLowerCase(), n = r.substring(s + 1).trim(), !(!a || t[a] && K0[a]) && (a === \"set-cookie\" ? t[a] ? t[a].push(n) : t[a] = [n] : t[a] = t[a] ? t[a] + \", \" + n : n);\n }), t;\n}, ki = Symbol(\"internals\");\nfunction La(e) {\n return e && String(e).trim().toLowerCase();\n}\nfunction zn(e) {\n return e === !1 || e == null ? e : G.isArray(e) ? e.map(zn) : String(e);\n}\nfunction Y0(e) {\n const t = /* @__PURE__ */ Object.create(null), a = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let n;\n for (; n = a.exec(e); )\n t[n[1]] = n[2];\n return t;\n}\nconst X0 = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());\nfunction Js(e, t, a, n, s) {\n if (G.isFunction(n))\n return n.call(this, t, a);\n if (s && (t = a), !!G.isString(t)) {\n if (G.isString(n))\n return t.indexOf(n) !== -1;\n if (G.isRegExp(n))\n return n.test(t);\n }\n}\nfunction Q0(e) {\n return e.trim().toLowerCase().replace(/([a-z\\d])(\\w*)/g, (t, a, n) => a.toUpperCase() + n);\n}\nfunction ed(e, t) {\n const a = G.toCamelCase(\" \" + t);\n [\"get\", \"set\", \"has\"].forEach((n) => {\n Object.defineProperty(e, n + a, { value: function(s, r, o) {\n return this[n].call(this, t, s, r, o);\n }, configurable: !0 });\n });\n}\nlet Un = class {\n constructor(e) {\n e && this.set(e);\n }\n set(e, t, a) {\n const n = this;\n function s(o, i, u) {\n const l = La(i);\n if (!l)\n throw new Error(\"header name must be a non-empty string\");\n const c = G.findKey(n, l);\n (!c || n[c] === void 0 || u === !0 || u === void 0 && n[c] !== !1) && (n[c || i] = zn(o));\n }\n const r = (o, i) => G.forEach(o, (u, l) => s(u, l, i));\n return G.isPlainObject(e) || e instanceof this.constructor ? r(e, t) : G.isString(e) && (e = e.trim()) && !X0(e) ? r(J0(e), t) : e != null && s(t, e, a), this;\n }\n get(e, t) {\n if (e = La(e), e) {\n const a = G.findKey(this, e);\n if (a) {\n const n = this[a];\n if (!t)\n return n;\n if (t === !0)\n return Y0(n);\n if (G.isFunction(t))\n return t.call(this, n, a);\n if (G.isRegExp(t))\n return t.exec(n);\n throw new TypeError(\"parser must be boolean|regexp|function\");\n }\n }\n }\n has(e, t) {\n if (e = La(e), e) {\n const a = G.findKey(this, e);\n return !!(a && this[a] !== void 0 && (!t || Js(this, this[a], a, t)));\n }\n return !1;\n }\n delete(e, t) {\n const a = this;\n let n = !1;\n function s(r) {\n if (r = La(r), r) {\n const o = G.findKey(a, r);\n o && (!t || Js(a, a[o], o, t)) && (delete a[o], n = !0);\n }\n }\n return G.isArray(e) ? e.forEach(s) : s(e), n;\n }\n clear(e) {\n const t = Object.keys(this);\n let a = t.length, n = !1;\n for (; a--; ) {\n const s = t[a];\n (!e || Js(this, this[s], s, e, !0)) && (delete this[s], n = !0);\n }\n return n;\n }\n normalize(e) {\n const t = this, a = {};\n return G.forEach(this, (n, s) => {\n const r = G.findKey(a, s);\n if (r) {\n t[r] = zn(n), delete t[s];\n return;\n }\n const o = e ? Q0(s) : String(s).trim();\n o !== s && delete t[s], t[o] = zn(n), a[o] = !0;\n }), this;\n }\n concat(...e) {\n return this.constructor.concat(this, ...e);\n }\n toJSON(e) {\n const t = /* @__PURE__ */ Object.create(null);\n return G.forEach(this, (a, n) => {\n a != null && a !== !1 && (t[n] = e && G.isArray(a) ? a.join(\", \") : a);\n }), t;\n }\n [Symbol.iterator]() {\n return Object.entries(this.toJSON())[Symbol.iterator]();\n }\n toString() {\n return Object.entries(this.toJSON()).map(([e, t]) => e + \": \" + t).join(`\n`);\n }\n get [Symbol.toStringTag]() {\n return \"AxiosHeaders\";\n }\n static from(e) {\n return e instanceof this ? e : new this(e);\n }\n static concat(e, ...t) {\n const a = new this(e);\n return t.forEach((n) => a.set(n)), a;\n }\n static accessor(e) {\n const t = (this[ki] = this[ki] = { accessors: {} }).accessors, a = this.prototype;\n function n(s) {\n const r = La(s);\n t[r] || (ed(a, s), t[r] = !0);\n }\n return G.isArray(e) ? e.forEach(n) : n(e), this;\n }\n};\nUn.accessor([\"Content-Type\", \"Content-Length\", \"Accept\", \"Accept-Encoding\", \"User-Agent\", \"Authorization\"]), G.freezeMethods(Un.prototype), G.freezeMethods(Un);\nconst xt = Un;\nfunction Ys(e, t) {\n const a = this || gr, n = t || a, s = xt.from(n.headers);\n let r = n.data;\n return G.forEach(e, function(o) {\n r = o.call(a, r, s.normalize(), t ? t.status : void 0);\n }), s.normalize(), r;\n}\nfunction zl(e) {\n return !!(e && e.__CANCEL__);\n}\nfunction sn(e, t, a) {\n be.call(this, e ?? \"canceled\", be.ERR_CANCELED, t, a), this.name = \"CanceledError\";\n}\nG.inherits(sn, be, { __CANCEL__: !0 });\nfunction td(e, t, a) {\n const n = a.config.validateStatus;\n !a.status || !n || n(a.status) ? e(a) : t(new be(\"Request failed with status code \" + a.status, [be.ERR_BAD_REQUEST, be.ERR_BAD_RESPONSE][Math.floor(a.status / 100) - 4], a.config, a.request, a));\n}\nconst ad = gt.isStandardBrowserEnv ? function() {\n return { write: function(e, t, a, n, s, r) {\n const o = [];\n o.push(e + \"=\" + encodeURIComponent(t)), G.isNumber(a) && o.push(\"expires=\" + new Date(a).toGMTString()), G.isString(n) && o.push(\"path=\" + n), G.isString(s) && o.push(\"domain=\" + s), r === !0 && o.push(\"secure\"), document.cookie = o.join(\"; \");\n }, read: function(e) {\n const t = document.cookie.match(new RegExp(\"(^|;\\\\s*)(\" + e + \")=([^;]*)\"));\n return t ? decodeURIComponent(t[3]) : null;\n }, remove: function(e) {\n this.write(e, \"\", Date.now() - 864e5);\n } };\n}() : function() {\n return { write: function() {\n }, read: function() {\n return null;\n }, remove: function() {\n } };\n}();\nfunction nd(e) {\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(e);\n}\nfunction sd(e, t) {\n return t ? e.replace(/\\/+$/, \"\") + \"/\" + t.replace(/^\\/+/, \"\") : e;\n}\nfunction Ul(e, t) {\n return e && !nd(t) ? sd(e, t) : t;\n}\nconst od = gt.isStandardBrowserEnv ? function() {\n const e = /(msie|trident)/i.test(navigator.userAgent), t = document.createElement(\"a\");\n let a;\n function n(s) {\n let r = s;\n return e && (t.setAttribute(\"href\", r), r = t.href), t.setAttribute(\"href\", r), { href: t.href, protocol: t.protocol ? t.protocol.replace(/:$/, \"\") : \"\", host: t.host, search: t.search ? t.search.replace(/^\\?/, \"\") : \"\", hash: t.hash ? t.hash.replace(/^#/, \"\") : \"\", hostname: t.hostname, port: t.port, pathname: t.pathname.charAt(0) === \"/\" ? t.pathname : \"/\" + t.pathname };\n }\n return a = n(window.location.href), function(s) {\n const r = G.isString(s) ? n(s) : s;\n return r.protocol === a.protocol && r.host === a.host;\n };\n}() : function() {\n return function() {\n return !0;\n };\n}();\nfunction rd(e) {\n const t = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(e);\n return t && t[1] || \"\";\n}\nfunction id(e, t) {\n e = e || 10;\n const a = new Array(e), n = new Array(e);\n let s = 0, r = 0, o;\n return t = t !== void 0 ? t : 1e3, function(i) {\n const u = Date.now(), l = n[r];\n o || (o = u), a[s] = i, n[s] = u;\n let c = r, d = 0;\n for (; c !== s; )\n d += a[c++], c = c % e;\n if (s = (s + 1) % e, s === r && (r = (r + 1) % e), u - o < t)\n return;\n const m = l && u - l;\n return m ? Math.round(d * 1e3 / m) : void 0;\n };\n}\nfunction Ei(e, t) {\n let a = 0;\n const n = id(50, 250);\n return (s) => {\n const r = s.loaded, o = s.lengthComputable ? s.total : void 0, i = r - a, u = n(i), l = r <= o;\n a = r;\n const c = { loaded: r, total: o, progress: o ? r / o : void 0, bytes: i, rate: u || void 0, estimated: u && o && l ? (o - r) / u : void 0, event: s };\n c[t ? \"download\" : \"upload\"] = !0, e(c);\n };\n}\nconst ud = typeof XMLHttpRequest < \"u\", ld = ud && function(e) {\n return new Promise(function(t, a) {\n let n = e.data;\n const s = xt.from(e.headers).normalize(), r = e.responseType;\n let o;\n function i() {\n e.cancelToken && e.cancelToken.unsubscribe(o), e.signal && e.signal.removeEventListener(\"abort\", o);\n }\n G.isFormData(n) && (gt.isStandardBrowserEnv || gt.isStandardBrowserWebWorkerEnv ? s.setContentType(!1) : s.setContentType(\"multipart/form-data;\", !1));\n let u = new XMLHttpRequest();\n if (e.auth) {\n const m = e.auth.username || \"\", p = e.auth.password ? unescape(encodeURIComponent(e.auth.password)) : \"\";\n s.set(\"Authorization\", \"Basic \" + btoa(m + \":\" + p));\n }\n const l = Ul(e.baseURL, e.url);\n u.open(e.method.toUpperCase(), Ol(l, e.params, e.paramsSerializer), !0), u.timeout = e.timeout;\n function c() {\n if (!u)\n return;\n const m = xt.from(\"getAllResponseHeaders\" in u && u.getAllResponseHeaders()), p = { data: !r || r === \"text\" || r === \"json\" ? u.responseText : u.response, status: u.status, statusText: u.statusText, headers: m, config: e, request: u };\n td(function(h) {\n t(h), i();\n }, function(h) {\n a(h), i();\n }, p), u = null;\n }\n if (\"onloadend\" in u ? u.onloadend = c : u.onreadystatechange = function() {\n !u || u.readyState !== 4 || u.status === 0 && !(u.responseURL && u.responseURL.indexOf(\"file:\") === 0) || setTimeout(c);\n }, u.onabort = function() {\n u && (a(new be(\"Request aborted\", be.ECONNABORTED, e, u)), u = null);\n }, u.onerror = function() {\n a(new be(\"Network Error\", be.ERR_NETWORK, e, u)), u = null;\n }, u.ontimeout = function() {\n let m = e.timeout ? \"timeout of \" + e.timeout + \"ms exceeded\" : \"timeout exceeded\";\n const p = e.transitional || jl;\n e.timeoutErrorMessage && (m = e.timeoutErrorMessage), a(new be(m, p.clarifyTimeoutError ? be.ETIMEDOUT : be.ECONNABORTED, e, u)), u = null;\n }, gt.isStandardBrowserEnv) {\n const m = (e.withCredentials || od(l)) && e.xsrfCookieName && ad.read(e.xsrfCookieName);\n m && s.set(e.xsrfHeaderName, m);\n }\n n === void 0 && s.setContentType(null), \"setRequestHeader\" in u && G.forEach(s.toJSON(), function(m, p) {\n u.setRequestHeader(p, m);\n }), G.isUndefined(e.withCredentials) || (u.withCredentials = !!e.withCredentials), r && r !== \"json\" && (u.responseType = e.responseType), typeof e.onDownloadProgress == \"function\" && u.addEventListener(\"progress\", Ei(e.onDownloadProgress, !0)), typeof e.onUploadProgress == \"function\" && u.upload && u.upload.addEventListener(\"progress\", Ei(e.onUploadProgress)), (e.cancelToken || e.signal) && (o = (m) => {\n u && (a(!m || m.type ? new sn(null, e, u) : m), u.abort(), u = null);\n }, e.cancelToken && e.cancelToken.subscribe(o), e.signal && (e.signal.aborted ? o() : e.signal.addEventListener(\"abort\", o)));\n const d = rd(l);\n if (d && gt.protocols.indexOf(d) === -1) {\n a(new be(\"Unsupported protocol \" + d + \":\", be.ERR_BAD_REQUEST, e));\n return;\n }\n u.send(n || null);\n });\n}, Mn = { http: O0, xhr: ld };\nG.forEach(Mn, (e, t) => {\n if (e) {\n try {\n Object.defineProperty(e, \"name\", { value: t });\n } catch {\n }\n Object.defineProperty(e, \"adapterName\", { value: t });\n }\n});\nconst cd = { getAdapter: (e) => {\n e = G.isArray(e) ? e : [e];\n const { length: t } = e;\n let a, n;\n for (let s = 0; s < t && (a = e[s], !(n = G.isString(a) ? Mn[a.toLowerCase()] : a)); s++)\n ;\n if (!n)\n throw n === !1 ? new be(`Adapter ${a} is not supported by the environment`, \"ERR_NOT_SUPPORT\") : new Error(G.hasOwnProp(Mn, a) ? `Adapter '${a}' is not available in the build` : `Unknown adapter '${a}'`);\n if (!G.isFunction(n))\n throw new TypeError(\"adapter is not a function\");\n return n;\n}, adapters: Mn };\nfunction Xs(e) {\n if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)\n throw new sn(null, e);\n}\nfunction Pi(e) {\n return Xs(e), e.headers = xt.from(e.headers), e.data = Ys.call(e, e.transformRequest), [\"post\", \"put\", \"patch\"].indexOf(e.method) !== -1 && e.headers.setContentType(\"application/x-www-form-urlencoded\", !1), cd.getAdapter(e.adapter || gr.adapter)(e).then(function(t) {\n return Xs(e), t.data = Ys.call(e, e.transformResponse, t), t.headers = xt.from(t.headers), t;\n }, function(t) {\n return zl(t) || (Xs(e), t && t.response && (t.response.data = Ys.call(e, e.transformResponse, t.response), t.response.headers = xt.from(t.response.headers))), Promise.reject(t);\n });\n}\nconst Si = (e) => e instanceof xt ? e.toJSON() : e;\nfunction xa(e, t) {\n t = t || {};\n const a = {};\n function n(l, c, d) {\n return G.isPlainObject(l) && G.isPlainObject(c) ? G.merge.call({ caseless: d }, l, c) : G.isPlainObject(c) ? G.merge({}, c) : G.isArray(c) ? c.slice() : c;\n }\n function s(l, c, d) {\n if (G.isUndefined(c)) {\n if (!G.isUndefined(l))\n return n(void 0, l, d);\n } else\n return n(l, c, d);\n }\n function r(l, c) {\n if (!G.isUndefined(c))\n return n(void 0, c);\n }\n function o(l, c) {\n if (G.isUndefined(c)) {\n if (!G.isUndefined(l))\n return n(void 0, l);\n } else\n return n(void 0, c);\n }\n function i(l, c, d) {\n if (d in t)\n return n(l, c);\n if (d in e)\n return n(void 0, l);\n }\n const u = { url: r, method: r, data: r, baseURL: o, transformRequest: o, transformResponse: o, paramsSerializer: o, timeout: o, timeoutMessage: o, withCredentials: o, adapter: o, responseType: o, xsrfCookieName: o, xsrfHeaderName: o, onUploadProgress: o, onDownloadProgress: o, decompress: o, maxContentLength: o, maxBodyLength: o, beforeRedirect: o, transport: o, httpAgent: o, httpsAgent: o, cancelToken: o, socketPath: o, responseEncoding: o, validateStatus: i, headers: (l, c) => s(Si(l), Si(c), !0) };\n return G.forEach(Object.keys(Object.assign({}, e, t)), function(l) {\n const c = u[l] || s, d = c(e[l], t[l], l);\n G.isUndefined(d) && c !== i || (a[l] = d);\n }), a;\n}\nconst Ml = \"1.4.0\", hr = {};\n[\"object\", \"boolean\", \"number\", \"function\", \"string\", \"symbol\"].forEach((e, t) => {\n hr[e] = function(a) {\n return typeof a === e || \"a\" + (t < 1 ? \"n \" : \" \") + e;\n };\n});\nconst Ti = {};\nhr.transitional = function(e, t, a) {\n function n(s, r) {\n return \"[Axios v\" + Ml + \"] Transitional option '\" + s + \"'\" + r + (a ? \". \" + a : \"\");\n }\n return (s, r, o) => {\n if (e === !1)\n throw new be(n(r, \" has been removed\" + (t ? \" in \" + t : \"\")), be.ERR_DEPRECATED);\n return t && !Ti[r] && (Ti[r] = !0, console.warn(n(r, \" has been deprecated since v\" + t + \" and will be removed in the near future\"))), e ? e(s, r, o) : !0;\n };\n};\nfunction md(e, t, a) {\n if (typeof e != \"object\")\n throw new be(\"options must be an object\", be.ERR_BAD_OPTION_VALUE);\n const n = Object.keys(e);\n let s = n.length;\n for (; s-- > 0; ) {\n const r = n[s], o = t[r];\n if (o) {\n const i = e[r], u = i === void 0 || o(i, r, e);\n if (u !== !0)\n throw new be(\"option \" + r + \" must be \" + u, be.ERR_BAD_OPTION_VALUE);\n continue;\n }\n if (a !== !0)\n throw new be(\"Unknown option \" + r, be.ERR_BAD_OPTION);\n }\n}\nconst To = { assertOptions: md, validators: hr }, Ft = To.validators;\nlet Rn = class {\n constructor(e) {\n this.defaults = e, this.interceptors = { request: new xi(), response: new xi() };\n }\n request(e, t) {\n typeof e == \"string\" ? (t = t || {}, t.url = e) : t = e || {}, t = xa(this.defaults, t);\n const { transitional: a, paramsSerializer: n, headers: s } = t;\n a !== void 0 && To.assertOptions(a, { silentJSONParsing: Ft.transitional(Ft.boolean), forcedJSONParsing: Ft.transitional(Ft.boolean), clarifyTimeoutError: Ft.transitional(Ft.boolean) }, !1), n != null && (G.isFunction(n) ? t.paramsSerializer = { serialize: n } : To.assertOptions(n, { encode: Ft.function, serialize: Ft.function }, !0)), t.method = (t.method || this.defaults.method || \"get\").toLowerCase();\n let r;\n r = s && G.merge(s.common, s[t.method]), r && G.forEach([\"delete\", \"get\", \"head\", \"post\", \"put\", \"patch\", \"common\"], (p) => {\n delete s[p];\n }), t.headers = xt.concat(r, s);\n const o = [];\n let i = !0;\n this.interceptors.request.forEach(function(p) {\n typeof p.runWhen == \"function\" && p.runWhen(t) === !1 || (i = i && p.synchronous, o.unshift(p.fulfilled, p.rejected));\n });\n const u = [];\n this.interceptors.response.forEach(function(p) {\n u.push(p.fulfilled, p.rejected);\n });\n let l, c = 0, d;\n if (!i) {\n const p = [Pi.bind(this), void 0];\n for (p.unshift.apply(p, o), p.push.apply(p, u), d = p.length, l = Promise.resolve(t); c < d; )\n l = l.then(p[c++], p[c++]);\n return l;\n }\n d = o.length;\n let m = t;\n for (c = 0; c < d; ) {\n const p = o[c++], h = o[c++];\n try {\n m = p(m);\n } catch (y) {\n h.call(this, y);\n break;\n }\n }\n try {\n l = Pi.call(this, m);\n } catch (p) {\n return Promise.reject(p);\n }\n for (c = 0, d = u.length; c < d; )\n l = l.then(u[c++], u[c++]);\n return l;\n }\n getUri(e) {\n e = xa(this.defaults, e);\n const t = Ul(e.baseURL, e.url);\n return Ol(t, e.params, e.paramsSerializer);\n }\n};\nG.forEach([\"delete\", \"get\", \"head\", \"options\"], function(e) {\n Rn.prototype[e] = function(t, a) {\n return this.request(xa(a || {}, { method: e, url: t, data: (a || {}).data }));\n };\n}), G.forEach([\"post\", \"put\", \"patch\"], function(e) {\n function t(a) {\n return function(n, s, r) {\n return this.request(xa(r || {}, { method: e, headers: a ? { \"Content-Type\": \"multipart/form-data\" } : {}, url: n, data: s }));\n };\n }\n Rn.prototype[e] = t(), Rn.prototype[e + \"Form\"] = t(!0);\n});\nconst $n = Rn;\nlet dd = class Rl {\n constructor(t) {\n if (typeof t != \"function\")\n throw new TypeError(\"executor must be a function.\");\n let a;\n this.promise = new Promise(function(s) {\n a = s;\n });\n const n = this;\n this.promise.then((s) => {\n if (!n._listeners)\n return;\n let r = n._listeners.length;\n for (; r-- > 0; )\n n._listeners[r](s);\n n._listeners = null;\n }), this.promise.then = (s) => {\n let r;\n const o = new Promise((i) => {\n n.subscribe(i), r = i;\n }).then(s);\n return o.cancel = function() {\n n.unsubscribe(r);\n }, o;\n }, t(function(s, r, o) {\n n.reason || (n.reason = new sn(s, r, o), a(n.reason));\n });\n }\n throwIfRequested() {\n if (this.reason)\n throw this.reason;\n }\n subscribe(t) {\n if (this.reason) {\n t(this.reason);\n return;\n }\n this._listeners ? this._listeners.push(t) : this._listeners = [t];\n }\n unsubscribe(t) {\n if (!this._listeners)\n return;\n const a = this._listeners.indexOf(t);\n a !== -1 && this._listeners.splice(a, 1);\n }\n static source() {\n let t;\n return { token: new Rl(function(a) {\n t = a;\n }), cancel: t };\n }\n};\nconst pd = dd;\nfunction gd(e) {\n return function(t) {\n return e.apply(null, t);\n };\n}\nfunction hd(e) {\n return G.isObject(e) && e.isAxiosError === !0;\n}\nconst Fo = { Continue: 100, SwitchingProtocols: 101, Processing: 102, EarlyHints: 103, Ok: 200, Created: 201, Accepted: 202, NonAuthoritativeInformation: 203, NoContent: 204, ResetContent: 205, PartialContent: 206, MultiStatus: 207, AlreadyReported: 208, ImUsed: 226, MultipleChoices: 300, MovedPermanently: 301, Found: 302, SeeOther: 303, NotModified: 304, UseProxy: 305, Unused: 306, TemporaryRedirect: 307, PermanentRedirect: 308, BadRequest: 400, Unauthorized: 401, PaymentRequired: 402, Forbidden: 403, NotFound: 404, MethodNotAllowed: 405, NotAcceptable: 406, ProxyAuthenticationRequired: 407, RequestTimeout: 408, Conflict: 409, Gone: 410, LengthRequired: 411, PreconditionFailed: 412, PayloadTooLarge: 413, UriTooLong: 414, UnsupportedMediaType: 415, RangeNotSatisfiable: 416, ExpectationFailed: 417, ImATeapot: 418, MisdirectedRequest: 421, UnprocessableEntity: 422, Locked: 423, FailedDependency: 424, TooEarly: 425, UpgradeRequired: 426, PreconditionRequired: 428, TooManyRequests: 429, RequestHeaderFieldsTooLarge: 431, UnavailableForLegalReasons: 451, InternalServerError: 500, NotImplemented: 501, BadGateway: 502, ServiceUnavailable: 503, GatewayTimeout: 504, HttpVersionNotSupported: 505, VariantAlsoNegotiates: 506, InsufficientStorage: 507, LoopDetected: 508, NotExtended: 510, NetworkAuthenticationRequired: 511 };\nObject.entries(Fo).forEach(([e, t]) => {\n Fo[t] = e;\n});\nconst fd = Fo;\nfunction $l(e) {\n const t = new $n(e), a = El($n.prototype.request, t);\n return G.extend(a, $n.prototype, t, { allOwnKeys: !0 }), G.extend(a, t, null, { allOwnKeys: !0 }), a.create = function(n) {\n return $l(xa(e, n));\n }, a;\n}\nconst Ie = $l(gr);\nIe.Axios = $n, Ie.CanceledError = sn, Ie.CancelToken = pd, Ie.isCancel = zl, Ie.VERSION = Ml, Ie.toFormData = As, Ie.AxiosError = be, Ie.Cancel = Ie.CanceledError, Ie.all = function(e) {\n return Promise.all(e);\n}, Ie.spread = gd, Ie.isAxiosError = hd, Ie.mergeConfig = xa, Ie.AxiosHeaders = xt, Ie.formToJSON = (e) => Ll(G.isHTMLForm(e) ? new FormData(e) : e), Ie.HttpStatusCode = fd, Ie.default = Ie;\nconst vd = Ie, { Axios: o3, AxiosError: r3, CanceledError: Qs, isCancel: i3, CancelToken: u3, VERSION: l3, all: c3, Cancel: m3, isAxiosError: d3, spread: p3, toFormData: g3, AxiosHeaders: h3, HttpStatusCode: f3, formToJSON: v3, mergeConfig: C3 } = vd, Cd = Jm(1), An = new FileReader(), Fi = async function(e, t, a, n = () => {\n}) {\n let s;\n return t instanceof Blob ? s = t : s = await t(), await Wn.request({ method: \"PUT\", url: e, data: s, signal: a, onUploadProgress: n });\n}, Di = function(e, t, a) {\n return e.type ? Cd(() => new Promise((n, s) => {\n An.onload = () => {\n An.result !== null && n(new Blob([An.result], { type: \"application/octet-stream\" })), s(new Error(\"Error while reading the file\"));\n }, An.readAsArrayBuffer(e.slice(t, t + a));\n })) : Promise.reject(new Error(\"Unknown file type\"));\n}, yd = async function() {\n const e = xl(`dav/uploads/${mr()?.uid}`), t = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, a = `${e}/${t}`;\n return await Wn.request({ method: \"MKCOL\", url: a }), a;\n}, Ga = function() {\n const e = window.OC?.appConfig?.files?.max_chunk_size;\n return e <= 0 ? 0 : Number(e) ? Number(e) : 10 * 1024 * 1024;\n};\nvar pt = ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(pt || {});\nlet Ad = class {\n _source;\n _file;\n _isChunked;\n _chunks;\n _size;\n _uploaded = 0;\n _startTime = 0;\n _status = 0;\n _controller;\n _response = null;\n constructor(e, t = !1, a, n) {\n const s = Ga() > 0 ? Math.ceil(a / Ga()) : 1;\n this._source = e, this._isChunked = t && Ga() > 0 && s > 1, this._chunks = this._isChunked ? s : 1, this._size = a, this._file = n, this._controller = new AbortController();\n }\n get source() {\n return this._source;\n }\n get file() {\n return this._file;\n }\n get isChunked() {\n return this._isChunked;\n }\n get chunks() {\n return this._chunks;\n }\n get size() {\n return this._size;\n }\n get startTime() {\n return this._startTime;\n }\n set response(e) {\n this._response = e;\n }\n get response() {\n return this._response;\n }\n get uploaded() {\n return this._uploaded;\n }\n set uploaded(e) {\n if (e >= this._size) {\n this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n return;\n }\n this._status = 1, this._uploaded = e, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n }\n get status() {\n return this._status;\n }\n set status(e) {\n this._status = e;\n }\n get signal() {\n return this._controller.signal;\n }\n cancel() {\n this._controller.abort(), this._status = 4;\n }\n};\nconst wd = (e) => e === null ? hi().setApp(\"uploader\").build() : hi().setApp(\"uploader\").setUid(e.uid).build(), lt = wd(mr());\nvar Il = ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(Il || {});\nclass Bi {\n _destinationFolder;\n _isPublic;\n _uploadQueue = [];\n _jobQueue = new Km({ concurrency: 3 });\n _queueSize = 0;\n _queueProgress = 0;\n _queueStatus = 0;\n _notifiers = [];\n constructor(t = !1, a) {\n if (this._isPublic = t, !a) {\n const n = mr()?.uid, s = xl(`dav/files/${n}`);\n if (!n)\n throw new Error(\"User is not logged in\");\n a = new kl({ id: 0, owner: n, permissions: Vm.ALL, root: `/files/${n}`, source: s });\n }\n this.destination = a, lt.debug(\"Upload workspace initialized\", { destination: this.destination, root: this.root, isPublic: t, maxChunksSize: Ga() });\n }\n get destination() {\n return this._destinationFolder;\n }\n set destination(t) {\n if (!t)\n throw new Error(\"Invalid destination folder\");\n this._destinationFolder = t;\n }\n get root() {\n return this._destinationFolder.source;\n }\n get queue() {\n return this._uploadQueue;\n }\n reset() {\n this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n }\n pause() {\n this._jobQueue.pause(), this._queueStatus = 2;\n }\n start() {\n this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n }\n get info() {\n return { size: this._queueSize, progress: this._queueProgress, status: this._queueStatus };\n }\n updateStats() {\n const t = this._uploadQueue.map((n) => n.size).reduce((n, s) => n + s, 0), a = this._uploadQueue.map((n) => n.uploaded).reduce((n, s) => n + s, 0);\n this._queueSize = t, this._queueProgress = a, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n }\n addNotifier(t) {\n this._notifiers.push(t);\n }\n upload(t, a) {\n const n = `${this.root}/${t.replace(/^\\//, \"\")}`;\n lt.debug(`Uploading ${a.name} to ${n}`);\n const s = Ga(), r = s === 0 || a.size < s || this._isPublic, o = new Ad(n, !r, a.size, a);\n return this._uploadQueue.push(o), this.updateStats(), new Zm(async (i, u, l) => {\n if (l(o.cancel), r) {\n lt.debug(\"Initializing regular upload\", { file: a, upload: o });\n const c = await Di(a, 0, o.size), d = async () => {\n try {\n o.response = await Fi(n, c, o.signal, () => this.updateStats()), o.uploaded = o.size, this.updateStats(), lt.debug(`Successfully uploaded ${a.name}`, { file: a, upload: o }), i(o);\n } catch (m) {\n if (m instanceof Qs) {\n o.status = pt.FAILED, u(\"Upload has been cancelled\");\n return;\n }\n o.status = pt.FAILED, lt.error(`Failed uploading ${a.name}`, { error: m, file: a, upload: o }), u(\"Failed uploading the file\");\n }\n this._notifiers.forEach((m) => {\n try {\n m(o);\n } catch {\n }\n });\n };\n this._jobQueue.add(d), this.updateStats();\n } else {\n lt.debug(\"Initializing chunked upload\", { file: a, upload: o });\n const c = await yd(), d = [];\n for (let m = 0; m < o.chunks; m++) {\n const p = m * s, h = Math.min(p + s, o.size), y = () => Di(a, p, s), P = () => Fi(`${c}/${h}`, y, o.signal, () => this.updateStats()).then(() => {\n o.uploaded = o.uploaded + s;\n }).catch((v) => {\n throw v instanceof Qs || (lt.error(`Chunk ${p} - ${h} uploading failed`), o.status = pt.FAILED), v;\n });\n d.push(this._jobQueue.add(P));\n }\n try {\n await Promise.all(d), this.updateStats(), o.response = await Wn.request({ method: \"MOVE\", url: `${c}/.file`, headers: { Destination: n } }), this.updateStats(), o.status = pt.FINISHED, lt.debug(`Successfully uploaded ${a.name}`, { file: a, upload: o }), i(o);\n } catch (m) {\n m instanceof Qs ? (o.status = pt.FAILED, u(\"Upload has been cancelled\")) : (o.status = pt.FAILED, u(\"Failed assembling the chunks together\")), Wn.request({ method: \"DELETE\", url: `${c}` });\n }\n this._notifiers.forEach((m) => {\n try {\n m(o);\n } catch {\n }\n });\n }\n return this._jobQueue.onIdle().then(() => this.reset()), o;\n });\n }\n}\nvar Ke = Object.freeze({}), ve = Array.isArray;\nfunction pe(e) {\n return e == null;\n}\nfunction O(e) {\n return e != null;\n}\nfunction _e(e) {\n return e === !0;\n}\nfunction bd(e) {\n return e === !1;\n}\nfunction on(e) {\n return typeof e == \"string\" || typeof e == \"number\" || typeof e == \"symbol\" || typeof e == \"boolean\";\n}\nfunction Pe(e) {\n return typeof e == \"function\";\n}\nfunction Je(e) {\n return e !== null && typeof e == \"object\";\n}\nvar fr = Object.prototype.toString;\nfunction Qe(e) {\n return fr.call(e) === \"[object Object]\";\n}\nfunction xd(e) {\n return fr.call(e) === \"[object RegExp]\";\n}\nfunction Gl(e) {\n var t = parseFloat(String(e));\n return t >= 0 && Math.floor(t) === t && isFinite(e);\n}\nfunction Do(e) {\n return O(e) && typeof e.then == \"function\" && typeof e.catch == \"function\";\n}\nfunction kd(e) {\n return e == null ? \"\" : Array.isArray(e) || Qe(e) && e.toString === fr ? JSON.stringify(e, null, 2) : String(e);\n}\nfunction Ja(e) {\n var t = parseFloat(e);\n return isNaN(t) ? e : t;\n}\nfunction mt(e, t) {\n for (var a = /* @__PURE__ */ Object.create(null), n = e.split(\",\"), s = 0; s < n.length; s++)\n a[n[s]] = !0;\n return t ? function(r) {\n return a[r.toLowerCase()];\n } : function(r) {\n return a[r];\n };\n}\nmt(\"slot,component\", !0);\nvar Ed = mt(\"key,ref,slot,slot-scope,is\");\nfunction Mt(e, t) {\n var a = e.length;\n if (a) {\n if (t === e[a - 1]) {\n e.length = a - 1;\n return;\n }\n var n = e.indexOf(t);\n if (n > -1)\n return e.splice(n, 1);\n }\n}\nvar Pd = Object.prototype.hasOwnProperty;\nfunction Xe(e, t) {\n return Pd.call(e, t);\n}\nfunction ra(e) {\n var t = /* @__PURE__ */ Object.create(null);\n return function(a) {\n var n = t[a];\n return n || (t[a] = e(a));\n };\n}\nvar Sd = /-(\\w)/g, ea = ra(function(e) {\n return e.replace(Sd, function(t, a) {\n return a ? a.toUpperCase() : \"\";\n });\n}), Td = ra(function(e) {\n return e.charAt(0).toUpperCase() + e.slice(1);\n}), Fd = /\\B([A-Z])/g, rn = ra(function(e) {\n return e.replace(Fd, \"-$1\").toLowerCase();\n});\nfunction Dd(e, t) {\n function a(n) {\n var s = arguments.length;\n return s ? s > 1 ? e.apply(t, arguments) : e.call(t, n) : e.call(t);\n }\n return a._length = e.length, a;\n}\nfunction Bd(e, t) {\n return e.bind(t);\n}\nvar Hl = Function.prototype.bind ? Bd : Dd;\nfunction Bo(e, t) {\n t = t || 0;\n for (var a = e.length - t, n = new Array(a); a--; )\n n[a] = e[a + t];\n return n;\n}\nfunction Fe(e, t) {\n for (var a in t)\n e[a] = t[a];\n return e;\n}\nfunction ql(e) {\n for (var t = {}, a = 0; a < e.length; a++)\n e[a] && Fe(t, e[a]);\n return t;\n}\nfunction De(e, t, a) {\n}\nvar wn = function(e, t, a) {\n return !1;\n}, Vl = function(e) {\n return e;\n};\nfunction ta(e, t) {\n if (e === t)\n return !0;\n var a = Je(e), n = Je(t);\n if (a && n)\n try {\n var s = Array.isArray(e), r = Array.isArray(t);\n if (s && r)\n return e.length === t.length && e.every(function(u, l) {\n return ta(u, t[l]);\n });\n if (e instanceof Date && t instanceof Date)\n return e.getTime() === t.getTime();\n if (!s && !r) {\n var o = Object.keys(e), i = Object.keys(t);\n return o.length === i.length && o.every(function(u) {\n return ta(e[u], t[u]);\n });\n } else\n return !1;\n } catch {\n return !1;\n }\n else\n return !a && !n ? String(e) === String(t) : !1;\n}\nfunction Wl(e, t) {\n for (var a = 0; a < e.length; a++)\n if (ta(e[a], t))\n return a;\n return -1;\n}\nfunction Kn(e) {\n var t = !1;\n return function() {\n t || (t = !0, e.apply(this, arguments));\n };\n}\nfunction _o(e, t) {\n return e === t ? e === 0 && 1 / e !== 1 / t : e === e || t === t;\n}\nvar _i = \"data-server-rendered\", ws = [\"component\", \"directive\", \"filter\"], Zl = [\"beforeCreate\", \"created\", \"beforeMount\", \"mounted\", \"beforeUpdate\", \"updated\", \"beforeDestroy\", \"destroyed\", \"activated\", \"deactivated\", \"errorCaptured\", \"serverPrefetch\", \"renderTracked\", \"renderTriggered\"], rt = { optionMergeStrategies: /* @__PURE__ */ Object.create(null), silent: !1, productionTip: !1, devtools: !1, performance: !1, errorHandler: null, warnHandler: null, ignoredElements: [], keyCodes: /* @__PURE__ */ Object.create(null), isReservedTag: wn, isReservedAttr: wn, isUnknownElement: wn, getTagNamespace: De, parsePlatformTagName: Vl, mustUseProp: wn, async: !0, _lifecycleHooks: Zl }, _d = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\nfunction Kl(e) {\n var t = (e + \"\").charCodeAt(0);\n return t === 36 || t === 95;\n}\nfunction Ue(e, t, a, n) {\n Object.defineProperty(e, t, { value: a, enumerable: !!n, writable: !0, configurable: !0 });\n}\nvar Nd = new RegExp(\"[^\".concat(_d.source, \".$_\\\\d]\"));\nfunction Od(e) {\n if (!Nd.test(e)) {\n var t = e.split(\".\");\n return function(a) {\n for (var n = 0; n < t.length; n++) {\n if (!a)\n return;\n a = a[t[n]];\n }\n return a;\n };\n }\n}\nvar jd = \"__proto__\" in {}, tt = typeof window < \"u\", it = tt && window.navigator.userAgent.toLowerCase(), Fa = it && /msie|trident/.test(it), Da = it && it.indexOf(\"msie 9.0\") > 0, Jl = it && it.indexOf(\"edge/\") > 0;\nit && it.indexOf(\"android\") > 0;\nvar Ld = it && /iphone|ipad|ipod|ios/.test(it), Ni = it && it.match(/firefox\\/(\\d+)/), No = {}.watch, Yl = !1;\nif (tt)\n try {\n var Oi = {};\n Object.defineProperty(Oi, \"passive\", { get: function() {\n Yl = !0;\n } }), window.addEventListener(\"test-passive\", null, Oi);\n } catch {\n }\nvar bn, Rt = function() {\n return bn === void 0 && (!tt && typeof global < \"u\" ? bn = global.process && global.process.env.VUE_ENV === \"server\" : bn = !1), bn;\n}, Jn = tt && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\nfunction wa(e) {\n return typeof e == \"function\" && /native code/.test(e.toString());\n}\nvar un = typeof Symbol < \"u\" && wa(Symbol) && typeof Reflect < \"u\" && wa(Reflect.ownKeys), Ya;\ntypeof Set < \"u\" && wa(Set) ? Ya = Set : Ya = function() {\n function e() {\n this.set = /* @__PURE__ */ Object.create(null);\n }\n return e.prototype.has = function(t) {\n return this.set[t] === !0;\n }, e.prototype.add = function(t) {\n this.set[t] = !0;\n }, e.prototype.clear = function() {\n this.set = /* @__PURE__ */ Object.create(null);\n }, e;\n}();\nvar Me = null;\nfunction zd() {\n return Me && { proxy: Me };\n}\nfunction Lt(e) {\n e === void 0 && (e = null), e || Me && Me._scope.off(), Me = e, e && e._scope.on();\n}\nvar st = function() {\n function e(t, a, n, s, r, o, i, u) {\n this.tag = t, this.data = a, this.children = n, this.text = s, this.elm = r, this.ns = void 0, this.context = o, this.fnContext = void 0, this.fnOptions = void 0, this.fnScopeId = void 0, this.key = a && a.key, this.componentOptions = i, 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 = u, this.asyncMeta = void 0, this.isAsyncPlaceholder = !1;\n }\n return Object.defineProperty(e.prototype, \"child\", { get: function() {\n return this.componentInstance;\n }, enumerable: !1, configurable: !0 }), e;\n}(), ka = function(e) {\n e === void 0 && (e = \"\");\n var t = new st();\n return t.text = e, t.isComment = !0, t;\n};\nfunction Ca(e) {\n return new st(void 0, void 0, void 0, String(e));\n}\nfunction Oo(e) {\n var t = new st(e.tag, e.data, e.children && e.children.slice(), e.text, e.elm, e.context, e.componentOptions, e.asyncFactory);\n 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.asyncMeta = e.asyncMeta, t.isCloned = !0, t;\n}\nvar Ud = 0, In = [], Md = function() {\n for (var e = 0; e < In.length; e++) {\n var t = In[e];\n t.subs = t.subs.filter(function(a) {\n return a;\n }), t._pending = !1;\n }\n In.length = 0;\n}, ft = function() {\n function e() {\n this._pending = !1, this.id = Ud++, this.subs = [];\n }\n return e.prototype.addSub = function(t) {\n this.subs.push(t);\n }, e.prototype.removeSub = function(t) {\n this.subs[this.subs.indexOf(t)] = null, this._pending || (this._pending = !0, In.push(this));\n }, e.prototype.depend = function(t) {\n e.target && e.target.addDep(this);\n }, e.prototype.notify = function(t) {\n for (var a = this.subs.filter(function(o) {\n return o;\n }), n = 0, s = a.length; n < s; n++) {\n var r = a[n];\n r.update();\n }\n }, e;\n}();\nft.target = null;\nvar Gn = [];\nfunction Ba(e) {\n Gn.push(e), ft.target = e;\n}\nfunction _a() {\n Gn.pop(), ft.target = Gn[Gn.length - 1];\n}\nvar Xl = Array.prototype, Yn = Object.create(Xl), Rd = [\"push\", \"pop\", \"shift\", \"unshift\", \"splice\", \"sort\", \"reverse\"];\nRd.forEach(function(e) {\n var t = Xl[e];\n Ue(Yn, e, function() {\n for (var a = [], n = 0; n < arguments.length; n++)\n a[n] = arguments[n];\n var s = t.apply(this, a), r = this.__ob__, o;\n switch (e) {\n case \"push\":\n case \"unshift\":\n o = a;\n break;\n case \"splice\":\n o = a.slice(2);\n break;\n }\n return o && r.observeArray(o), r.dep.notify(), s;\n });\n});\nvar ji = Object.getOwnPropertyNames(Yn), Ql = {}, vr = !0;\nfunction zt(e) {\n vr = e;\n}\nvar $d = { notify: De, depend: De, addSub: De, removeSub: De }, Li = function() {\n function e(t, a, n) {\n if (a === void 0 && (a = !1), n === void 0 && (n = !1), this.value = t, this.shallow = a, this.mock = n, this.dep = n ? $d : new ft(), this.vmCount = 0, Ue(t, \"__ob__\", this), ve(t)) {\n if (!n)\n if (jd)\n t.__proto__ = Yn;\n else\n for (var s = 0, r = ji.length; s < r; s++) {\n var o = ji[s];\n Ue(t, o, Yn[o]);\n }\n a || this.observeArray(t);\n } else\n for (var i = Object.keys(t), s = 0; s < i.length; s++) {\n var o = i[s];\n Ut(t, o, Ql, void 0, a, n);\n }\n }\n return e.prototype.observeArray = function(t) {\n for (var a = 0, n = t.length; a < n; a++)\n kt(t[a], !1, this.mock);\n }, e;\n}();\nfunction kt(e, t, a) {\n if (e && Xe(e, \"__ob__\") && e.__ob__ instanceof Li)\n return e.__ob__;\n if (vr && (a || !Rt()) && (ve(e) || Qe(e)) && Object.isExtensible(e) && !e.__v_skip && !We(e) && !(e instanceof st))\n return new Li(e, t, a);\n}\nfunction Ut(e, t, a, n, s, r) {\n var o = new ft(), i = Object.getOwnPropertyDescriptor(e, t);\n if (!(i && i.configurable === !1)) {\n var u = i && i.get, l = i && i.set;\n (!u || l) && (a === Ql || arguments.length === 2) && (a = e[t]);\n var c = !s && kt(a, !1, r);\n return Object.defineProperty(e, t, { enumerable: !0, configurable: !0, get: function() {\n var d = u ? u.call(e) : a;\n return ft.target && (o.depend(), c && (c.dep.depend(), ve(d) && ec(d))), We(d) && !s ? d.value : d;\n }, set: function(d) {\n var m = u ? u.call(e) : a;\n if (_o(m, d)) {\n if (l)\n l.call(e, d);\n else {\n if (u)\n return;\n if (!s && We(m) && !We(d)) {\n m.value = d;\n return;\n } else\n a = d;\n }\n c = !s && kt(d, !1, r), o.notify();\n }\n } }), o;\n }\n}\nfunction bs(e, t, a) {\n if (!ia(e)) {\n var n = e.__ob__;\n return ve(e) && Gl(t) ? (e.length = Math.max(e.length, t), e.splice(t, 1, a), n && !n.shallow && n.mock && kt(a, !1, !0), a) : t in e && !(t in Object.prototype) ? (e[t] = a, a) : e._isVue || n && n.vmCount ? a : n ? (Ut(n.value, t, a, void 0, n.shallow, n.mock), n.dep.notify(), a) : (e[t] = a, a);\n }\n}\nfunction Cr(e, t) {\n if (ve(e) && Gl(t)) {\n e.splice(t, 1);\n return;\n }\n var a = e.__ob__;\n e._isVue || a && a.vmCount || ia(e) || Xe(e, t) && (delete e[t], a && a.dep.notify());\n}\nfunction ec(e) {\n for (var t = void 0, a = 0, n = e.length; a < n; a++)\n t = e[a], t && t.__ob__ && t.__ob__.dep.depend(), ve(t) && ec(t);\n}\nfunction Id(e) {\n return tc(e, !1), e;\n}\nfunction yr(e) {\n return tc(e, !0), Ue(e, \"__v_isShallow\", !0), e;\n}\nfunction tc(e, t) {\n ia(e) || kt(e, t, Rt());\n}\nfunction Yt(e) {\n return ia(e) ? Yt(e.__v_raw) : !!(e && e.__ob__);\n}\nfunction Xn(e) {\n return !!(e && e.__v_isShallow);\n}\nfunction ia(e) {\n return !!(e && e.__v_isReadonly);\n}\nfunction Gd(e) {\n return Yt(e) || ia(e);\n}\nfunction ac(e) {\n var t = e && e.__v_raw;\n return t ? ac(t) : e;\n}\nfunction Hd(e) {\n return Object.isExtensible(e) && Ue(e, \"__v_skip\", !0), e;\n}\nvar ln = \"__v_isRef\";\nfunction We(e) {\n return !!(e && e.__v_isRef === !0);\n}\nfunction qd(e) {\n return nc(e, !1);\n}\nfunction Vd(e) {\n return nc(e, !0);\n}\nfunction nc(e, t) {\n if (We(e))\n return e;\n var a = {};\n return Ue(a, ln, !0), Ue(a, \"__v_isShallow\", t), Ue(a, \"dep\", Ut(a, \"value\", e, null, t, Rt())), a;\n}\nfunction Wd(e) {\n e.dep && e.dep.notify();\n}\nfunction Zd(e) {\n return We(e) ? e.value : e;\n}\nfunction Kd(e) {\n if (Yt(e))\n return e;\n for (var t = {}, a = Object.keys(e), n = 0; n < a.length; n++)\n Qn(t, e, a[n]);\n return t;\n}\nfunction Qn(e, t, a) {\n Object.defineProperty(e, a, { enumerable: !0, configurable: !0, get: function() {\n var n = t[a];\n if (We(n))\n return n.value;\n var s = n && n.__ob__;\n return s && s.dep.depend(), n;\n }, set: function(n) {\n var s = t[a];\n We(s) && !We(n) ? s.value = n : t[a] = n;\n } });\n}\nfunction Jd(e) {\n var t = new ft(), a = e(function() {\n t.depend();\n }, function() {\n t.notify();\n }), n = a.get, s = a.set, r = { get value() {\n return n();\n }, set value(o) {\n s(o);\n } };\n return Ue(r, ln, !0), r;\n}\nfunction Yd(e) {\n var t = ve(e) ? new Array(e.length) : {};\n for (var a in e)\n t[a] = sc(e, a);\n return t;\n}\nfunction sc(e, t, a) {\n var n = e[t];\n if (We(n))\n return n;\n var s = { get value() {\n var r = e[t];\n return r === void 0 ? a : r;\n }, set value(r) {\n e[t] = r;\n } };\n return Ue(s, ln, !0), s;\n}\nvar Xd = \"__v_rawToReadonly\", Qd = \"__v_rawToShallowReadonly\";\nfunction oc(e) {\n return rc(e, !1);\n}\nfunction rc(e, t) {\n if (!Qe(e) || ia(e))\n return e;\n var a = t ? Qd : Xd, n = e[a];\n if (n)\n return n;\n var s = Object.create(Object.getPrototypeOf(e));\n Ue(e, a, s), Ue(s, \"__v_isReadonly\", !0), Ue(s, \"__v_raw\", e), We(e) && Ue(s, ln, !0), (t || Xn(e)) && Ue(s, \"__v_isShallow\", !0);\n for (var r = Object.keys(e), o = 0; o < r.length; o++)\n ep(s, e, r[o], t);\n return s;\n}\nfunction ep(e, t, a, n) {\n Object.defineProperty(e, a, { enumerable: !0, configurable: !0, get: function() {\n var s = t[a];\n return n || !Qe(s) ? s : oc(s);\n }, set: function() {\n } });\n}\nfunction tp(e) {\n return rc(e, !0);\n}\nfunction ap(e, t) {\n var a, n, s = Pe(e);\n s ? (a = e, n = De) : (a = e.get, n = e.set);\n var r = Rt() ? null : new cn(Me, a, De, { lazy: !0 }), o = { effect: r, get value() {\n return r ? (r.dirty && r.evaluate(), ft.target && r.depend(), r.value) : a();\n }, set value(i) {\n n(i);\n } };\n return Ue(o, ln, !0), Ue(o, \"__v_isReadonly\", s), o;\n}\nvar xs = \"watcher\", zi = \"\".concat(xs, \" callback\"), Ui = \"\".concat(xs, \" getter\"), np = \"\".concat(xs, \" cleanup\");\nfunction sp(e, t) {\n return ks(e, null, t);\n}\nfunction ic(e, t) {\n return ks(e, null, { flush: \"post\" });\n}\nfunction op(e, t) {\n return ks(e, null, { flush: \"sync\" });\n}\nvar Mi = {};\nfunction rp(e, t, a) {\n return ks(e, t, a);\n}\nfunction ks(e, t, a) {\n var n = a === void 0 ? Ke : a, s = n.immediate, r = n.deep, o = n.flush, i = o === void 0 ? \"pre\" : o;\n n.onTrack, n.onTrigger;\n var u = Me, l = function(g, b, x) {\n return x === void 0 && (x = null), Et(g, null, x, u, b);\n }, c, d = !1, m = !1;\n if (We(e) ? (c = function() {\n return e.value;\n }, d = Xn(e)) : Yt(e) ? (c = function() {\n return e.__ob__.dep.depend(), e;\n }, r = !0) : ve(e) ? (m = !0, d = e.some(function(g) {\n return Yt(g) || Xn(g);\n }), c = function() {\n return e.map(function(g) {\n if (We(g))\n return g.value;\n if (Yt(g))\n return Ea(g);\n if (Pe(g))\n return l(g, Ui);\n });\n }) : Pe(e) ? t ? c = function() {\n return l(e, Ui);\n } : c = function() {\n if (!(u && u._isDestroyed))\n return h && h(), l(e, xs, [y]);\n } : c = De, t && r) {\n var p = c;\n c = function() {\n return Ea(p());\n };\n }\n var h, y = function(g) {\n h = P.onStop = function() {\n l(g, np);\n };\n };\n if (Rt())\n return y = De, t ? s && l(t, zi, [c(), m ? [] : void 0, y]) : c(), De;\n var P = new cn(Me, c, De, { lazy: !0 });\n P.noRecurse = !t;\n var v = m ? [] : Mi;\n return P.run = function() {\n if (P.active)\n if (t) {\n var g = P.get();\n (r || d || (m ? g.some(function(b, x) {\n return _o(b, v[x]);\n }) : _o(g, v))) && (h && h(), l(t, zi, [g, v === Mi ? void 0 : v, y]), v = g);\n } else\n P.get();\n }, i === \"sync\" ? P.update = P.run : i === \"post\" ? (P.post = !0, P.update = function() {\n return Io(P);\n }) : P.update = function() {\n if (u && u === Me && !u._isMounted) {\n var g = u._preWatchers || (u._preWatchers = []);\n g.indexOf(P) < 0 && g.push(P);\n } else\n Io(P);\n }, t ? s ? P.run() : v = P.get() : i === \"post\" && u ? u.$once(\"hook:mounted\", function() {\n return P.get();\n }) : P.get(), function() {\n P.teardown();\n };\n}\nvar Ze, Ar = function() {\n function e(t) {\n t === void 0 && (t = !1), this.detached = t, this.active = !0, this.effects = [], this.cleanups = [], this.parent = Ze, !t && Ze && (this.index = (Ze.scopes || (Ze.scopes = [])).push(this) - 1);\n }\n return e.prototype.run = function(t) {\n if (this.active) {\n var a = Ze;\n try {\n return Ze = this, t();\n } finally {\n Ze = a;\n }\n }\n }, e.prototype.on = function() {\n Ze = this;\n }, e.prototype.off = function() {\n Ze = this.parent;\n }, e.prototype.stop = function(t) {\n if (this.active) {\n var a = void 0, n = void 0;\n for (a = 0, n = this.effects.length; a < n; a++)\n this.effects[a].teardown();\n for (a = 0, n = this.cleanups.length; a < n; a++)\n this.cleanups[a]();\n if (this.scopes)\n for (a = 0, n = this.scopes.length; a < n; a++)\n this.scopes[a].stop(!0);\n if (!this.detached && this.parent && !t) {\n var s = this.parent.scopes.pop();\n s && s !== this && (this.parent.scopes[this.index] = s, s.index = this.index);\n }\n this.parent = void 0, this.active = !1;\n }\n }, e;\n}();\nfunction ip(e) {\n return new Ar(e);\n}\nfunction up(e, t) {\n t === void 0 && (t = Ze), t && t.active && t.effects.push(e);\n}\nfunction lp() {\n return Ze;\n}\nfunction cp(e) {\n Ze && Ze.cleanups.push(e);\n}\nfunction mp(e, t) {\n Me && (uc(Me)[e] = t);\n}\nfunction uc(e) {\n var t = e._provided, a = e.$parent && e.$parent._provided;\n return a === t ? e._provided = Object.create(a) : t;\n}\nfunction dp(e, t, a) {\n a === void 0 && (a = !1);\n var n = Me;\n if (n) {\n var s = n.$parent && n.$parent._provided;\n if (s && e in s)\n return s[e];\n if (arguments.length > 1)\n return a && Pe(t) ? t.call(n) : t;\n }\n}\nvar Ri = ra(function(e) {\n var t = e.charAt(0) === \"&\";\n e = t ? e.slice(1) : e;\n var a = e.charAt(0) === \"~\";\n e = a ? e.slice(1) : e;\n var n = e.charAt(0) === \"!\";\n return e = n ? e.slice(1) : e, { name: e, once: a, capture: n, passive: t };\n});\nfunction jo(e, t) {\n function a() {\n var n = a.fns;\n if (ve(n))\n for (var s = n.slice(), r = 0; r < s.length; r++)\n Et(s[r], null, arguments, t, \"v-on handler\");\n else\n return Et(n, null, arguments, t, \"v-on handler\");\n }\n return a.fns = e, a;\n}\nfunction lc(e, t, a, n, s, r) {\n var o, i, u, l;\n for (o in e)\n i = e[o], u = t[o], l = Ri(o), pe(i) || (pe(u) ? (pe(i.fns) && (i = e[o] = jo(i, r)), _e(l.once) && (i = e[o] = s(l.name, i, l.capture)), a(l.name, i, l.capture, l.passive, l.params)) : i !== u && (u.fns = i, e[o] = u));\n for (o in t)\n pe(e[o]) && (l = Ri(o), n(l.name, t[o], l.capture));\n}\nfunction Ot(e, t, a) {\n e instanceof st && (e = e.data.hook || (e.data.hook = {}));\n var n, s = e[t];\n function r() {\n a.apply(this, arguments), Mt(n.fns, r);\n }\n pe(s) ? n = jo([r]) : O(s.fns) && _e(s.merged) ? (n = s, n.fns.push(r)) : n = jo([s, r]), n.merged = !0, e[t] = n;\n}\nfunction pp(e, t, a) {\n var n = t.options.props;\n if (!pe(n)) {\n var s = {}, r = e.attrs, o = e.props;\n if (O(r) || O(o))\n for (var i in n) {\n var u = rn(i);\n $i(s, o, i, u, !0) || $i(s, r, i, u, !1);\n }\n return s;\n }\n}\nfunction $i(e, t, a, n, s) {\n if (O(t)) {\n if (Xe(t, a))\n return e[a] = t[a], s || delete t[a], !0;\n if (Xe(t, n))\n return e[a] = t[n], s || delete t[n], !0;\n }\n return !1;\n}\nfunction gp(e) {\n for (var t = 0; t < e.length; t++)\n if (ve(e[t]))\n return Array.prototype.concat.apply([], e);\n return e;\n}\nfunction wr(e) {\n return on(e) ? [Ca(e)] : ve(e) ? cc(e) : void 0;\n}\nfunction za(e) {\n return O(e) && O(e.text) && bd(e.isComment);\n}\nfunction cc(e, t) {\n var a = [], n, s, r, o;\n for (n = 0; n < e.length; n++)\n s = e[n], !(pe(s) || typeof s == \"boolean\") && (r = a.length - 1, o = a[r], ve(s) ? s.length > 0 && (s = cc(s, \"\".concat(t || \"\", \"_\").concat(n)), za(s[0]) && za(o) && (a[r] = Ca(o.text + s[0].text), s.shift()), a.push.apply(a, s)) : on(s) ? za(o) ? a[r] = Ca(o.text + s) : s !== \"\" && a.push(Ca(s)) : za(s) && za(o) ? a[r] = Ca(o.text + s.text) : (_e(e._isVList) && O(s.tag) && pe(s.key) && O(t) && (s.key = \"__vlist\".concat(t, \"_\").concat(n, \"__\")), a.push(s)));\n return a;\n}\nfunction hp(e, t) {\n var a = null, n, s, r, o;\n if (ve(e) || typeof e == \"string\")\n for (a = new Array(e.length), n = 0, s = e.length; n < s; n++)\n a[n] = t(e[n], n);\n else if (typeof e == \"number\")\n for (a = new Array(e), n = 0; n < e; n++)\n a[n] = t(n + 1, n);\n else if (Je(e))\n if (un && e[Symbol.iterator]) {\n a = [];\n for (var i = e[Symbol.iterator](), u = i.next(); !u.done; )\n a.push(t(u.value, a.length)), u = i.next();\n } else\n for (r = Object.keys(e), a = new Array(r.length), n = 0, s = r.length; n < s; n++)\n o = r[n], a[n] = t(e[o], o, n);\n return O(a) || (a = []), a._isVList = !0, a;\n}\nfunction fp(e, t, a, n) {\n var s = this.$scopedSlots[e], r;\n s ? (a = a || {}, n && (a = Fe(Fe({}, n), a)), r = s(a) || (Pe(t) ? t() : t)) : r = this.$slots[e] || (Pe(t) ? t() : t);\n var o = a && a.slot;\n return o ? this.$createElement(\"template\", { slot: o }, r) : r;\n}\nfunction vp(e) {\n return ns(this.$options, \"filters\", e) || Vl;\n}\nfunction Ii(e, t) {\n return ve(e) ? e.indexOf(t) === -1 : e !== t;\n}\nfunction Cp(e, t, a, n, s) {\n var r = rt.keyCodes[t] || a;\n return s && n && !rt.keyCodes[t] ? Ii(s, n) : r ? Ii(r, e) : n ? rn(n) !== t : e === void 0;\n}\nfunction yp(e, t, a, n, s) {\n if (a && Je(a)) {\n ve(a) && (a = ql(a));\n var r = void 0, o = function(u) {\n if (u === \"class\" || u === \"style\" || Ed(u))\n r = e;\n else {\n var l = e.attrs && e.attrs.type;\n r = n || rt.mustUseProp(t, l, u) ? e.domProps || (e.domProps = {}) : e.attrs || (e.attrs = {});\n }\n var c = ea(u), d = rn(u);\n if (!(c in r) && !(d in r) && (r[u] = a[u], s)) {\n var m = e.on || (e.on = {});\n m[\"update:\".concat(u)] = function(p) {\n a[u] = p;\n };\n }\n };\n for (var i in a)\n o(i);\n }\n return e;\n}\nfunction Ap(e, t) {\n var a = this._staticTrees || (this._staticTrees = []), n = a[e];\n return n && !t || (n = a[e] = this.$options.staticRenderFns[e].call(this._renderProxy, this._c, this), mc(n, \"__static__\".concat(e), !1)), n;\n}\nfunction wp(e, t, a) {\n return mc(e, \"__once__\".concat(t).concat(a ? \"_\".concat(a) : \"\"), !0), e;\n}\nfunction mc(e, t, a) {\n if (ve(e))\n for (var n = 0; n < e.length; n++)\n e[n] && typeof e[n] != \"string\" && Gi(e[n], \"\".concat(t, \"_\").concat(n), a);\n else\n Gi(e, t, a);\n}\nfunction Gi(e, t, a) {\n e.isStatic = !0, e.key = t, e.isOnce = a;\n}\nfunction bp(e, t) {\n if (t && Qe(t)) {\n var a = e.on = e.on ? Fe({}, e.on) : {};\n for (var n in t) {\n var s = a[n], r = t[n];\n a[n] = s ? [].concat(s, r) : r;\n }\n }\n return e;\n}\nfunction dc(e, t, a, n) {\n t = t || { $stable: !a };\n for (var s = 0; s < e.length; s++) {\n var r = e[s];\n ve(r) ? dc(r, t, a) : r && (r.proxy && (r.fn.proxy = !0), t[r.key] = r.fn);\n }\n return n && (t.$key = n), t;\n}\nfunction xp(e, t) {\n for (var a = 0; a < t.length; a += 2) {\n var n = t[a];\n typeof n == \"string\" && n && (e[t[a]] = t[a + 1]);\n }\n return e;\n}\nfunction kp(e, t) {\n return typeof e == \"string\" ? t + e : e;\n}\nfunction pc(e) {\n e._o = wp, e._n = Ja, e._s = kd, e._l = hp, e._t = fp, e._q = ta, e._i = Wl, e._m = Ap, e._f = vp, e._k = Cp, e._b = yp, e._v = Ca, e._e = ka, e._u = dc, e._g = bp, e._d = xp, e._p = kp;\n}\nfunction br(e, t) {\n if (!e || !e.length)\n return {};\n for (var a = {}, n = 0, s = e.length; n < s; n++) {\n var r = e[n], o = r.data;\n if (o && o.attrs && o.attrs.slot && delete o.attrs.slot, (r.context === t || r.fnContext === t) && o && o.slot != null) {\n var i = o.slot, u = a[i] || (a[i] = []);\n r.tag === \"template\" ? u.push.apply(u, r.children || []) : u.push(r);\n } else\n (a.default || (a.default = [])).push(r);\n }\n for (var l in a)\n a[l].every(Ep) && delete a[l];\n return a;\n}\nfunction Ep(e) {\n return e.isComment && !e.asyncFactory || e.text === \" \";\n}\nfunction Xa(e) {\n return e.isComment && e.asyncFactory;\n}\nfunction Ha(e, t, a, n) {\n var s, r = Object.keys(a).length > 0, o = t ? !!t.$stable : !r, i = t && t.$key;\n if (!t)\n s = {};\n else {\n if (t._normalized)\n return t._normalized;\n if (o && n && n !== Ke && i === n.$key && !r && !n.$hasNormal)\n return n;\n s = {};\n for (var u in t)\n t[u] && u[0] !== \"$\" && (s[u] = Pp(e, a, u, t[u]));\n }\n for (var l in a)\n l in s || (s[l] = Sp(a, l));\n return t && Object.isExtensible(t) && (t._normalized = s), Ue(s, \"$stable\", o), Ue(s, \"$key\", i), Ue(s, \"$hasNormal\", r), s;\n}\nfunction Pp(e, t, a, n) {\n var s = function() {\n var r = Me;\n Lt(e);\n var o = arguments.length ? n.apply(null, arguments) : n({});\n o = o && typeof o == \"object\" && !ve(o) ? [o] : wr(o);\n var i = o && o[0];\n return Lt(r), o && (!i || o.length === 1 && i.isComment && !Xa(i)) ? void 0 : o;\n };\n return n.proxy && Object.defineProperty(t, a, { get: s, enumerable: !0, configurable: !0 }), s;\n}\nfunction Sp(e, t) {\n return function() {\n return e[t];\n };\n}\nfunction Tp(e) {\n var t = e.$options, a = t.setup;\n if (a) {\n var n = e._setupContext = gc(e);\n Lt(e), Ba();\n var s = Et(a, null, [e._props || yr({}), n], e, \"setup\");\n if (_a(), Lt(), Pe(s))\n t.render = s;\n else if (Je(s))\n if (e._setupState = s, s.__sfc) {\n var r = e._setupProxy = {};\n for (var o in s)\n o !== \"__sfc\" && Qn(r, s, o);\n } else\n for (var o in s)\n Kl(o) || Qn(e, s, o);\n }\n}\nfunction gc(e) {\n return { get attrs() {\n if (!e._attrsProxy) {\n var t = e._attrsProxy = {};\n Ue(t, \"_v_attr_proxy\", !0), es(t, e.$attrs, Ke, e, \"$attrs\");\n }\n return e._attrsProxy;\n }, get listeners() {\n if (!e._listenersProxy) {\n var t = e._listenersProxy = {};\n es(t, e.$listeners, Ke, e, \"$listeners\");\n }\n return e._listenersProxy;\n }, get slots() {\n return Dp(e);\n }, emit: Hl(e.$emit, e), expose: function(t) {\n t && Object.keys(t).forEach(function(a) {\n return Qn(e, t, a);\n });\n } };\n}\nfunction es(e, t, a, n, s) {\n var r = !1;\n for (var o in t)\n o in e ? t[o] !== a[o] && (r = !0) : (r = !0, Fp(e, o, n, s));\n for (var o in e)\n o in t || (r = !0, delete e[o]);\n return r;\n}\nfunction Fp(e, t, a, n) {\n Object.defineProperty(e, t, { enumerable: !0, configurable: !0, get: function() {\n return a[n][t];\n } });\n}\nfunction Dp(e) {\n return e._slotsProxy || hc(e._slotsProxy = {}, e.$scopedSlots), e._slotsProxy;\n}\nfunction hc(e, t) {\n for (var a in t)\n e[a] = t[a];\n for (var a in e)\n a in t || delete e[a];\n}\nfunction Bp() {\n return xr().slots;\n}\nfunction _p() {\n return xr().attrs;\n}\nfunction Np() {\n return xr().listeners;\n}\nfunction xr() {\n var e = Me;\n return e._setupContext || (e._setupContext = gc(e));\n}\nfunction Op(e, t) {\n var a = ve(e) ? e.reduce(function(r, o) {\n return r[o] = {}, r;\n }, {}) : e;\n for (var n in t) {\n var s = a[n];\n s ? ve(s) || Pe(s) ? a[n] = { type: s, default: t[n] } : s.default = t[n] : s === null && (a[n] = { default: t[n] });\n }\n return a;\n}\nfunction jp(e) {\n e._vnode = null, e._staticTrees = null;\n var t = e.$options, a = e.$vnode = t._parentVnode, n = a && a.context;\n e.$slots = br(t._renderChildren, n), e.$scopedSlots = a ? Ha(e.$parent, a.data.scopedSlots, e.$slots) : Ke, e._c = function(r, o, i, u) {\n return Qa(e, r, o, i, u, !1);\n }, e.$createElement = function(r, o, i, u) {\n return Qa(e, r, o, i, u, !0);\n };\n var s = a && a.data;\n Ut(e, \"$attrs\", s && s.attrs || Ke, null, !0), Ut(e, \"$listeners\", t._parentListeners || Ke, null, !0);\n}\nvar Lo = null;\nfunction Lp(e) {\n pc(e.prototype), e.prototype.$nextTick = function(t) {\n return Es(t, this);\n }, e.prototype._render = function() {\n var t = this, a = t.$options, n = a.render, s = a._parentVnode;\n s && t._isMounted && (t.$scopedSlots = Ha(t.$parent, s.data.scopedSlots, t.$slots, t.$scopedSlots), t._slotsProxy && hc(t._slotsProxy, t.$scopedSlots)), t.$vnode = s;\n var r;\n try {\n Lt(t), Lo = t, r = n.call(t._renderProxy, t.$createElement);\n } catch (o) {\n aa(o, t, \"render\"), r = t._vnode;\n } finally {\n Lo = null, Lt();\n }\n return ve(r) && r.length === 1 && (r = r[0]), r instanceof st || (r = ka()), r.parent = s, r;\n };\n}\nfunction eo(e, t) {\n return (e.__esModule || un && e[Symbol.toStringTag] === \"Module\") && (e = e.default), Je(e) ? t.extend(e) : e;\n}\nfunction zp(e, t, a, n, s) {\n var r = ka();\n return r.asyncFactory = e, r.asyncMeta = { data: t, context: a, children: n, tag: s }, r;\n}\nfunction Up(e, t) {\n if (_e(e.error) && O(e.errorComp))\n return e.errorComp;\n if (O(e.resolved))\n return e.resolved;\n var a = Lo;\n if (a && O(e.owners) && e.owners.indexOf(a) === -1 && e.owners.push(a), _e(e.loading) && O(e.loadingComp))\n return e.loadingComp;\n if (a && !O(e.owners)) {\n var n = e.owners = [a], s = !0, r = null, o = null;\n a.$on(\"hook:destroyed\", function() {\n return Mt(n, a);\n });\n var i = function(d) {\n for (var m = 0, p = n.length; m < p; m++)\n n[m].$forceUpdate();\n d && (n.length = 0, r !== null && (clearTimeout(r), r = null), o !== null && (clearTimeout(o), o = null));\n }, u = Kn(function(d) {\n e.resolved = eo(d, t), s ? n.length = 0 : i(!0);\n }), l = Kn(function(d) {\n O(e.errorComp) && (e.error = !0, i(!0));\n }), c = e(u, l);\n return Je(c) && (Do(c) ? pe(e.resolved) && c.then(u, l) : Do(c.component) && (c.component.then(u, l), O(c.error) && (e.errorComp = eo(c.error, t)), O(c.loading) && (e.loadingComp = eo(c.loading, t), c.delay === 0 ? e.loading = !0 : r = setTimeout(function() {\n r = null, pe(e.resolved) && pe(e.error) && (e.loading = !0, i(!1));\n }, c.delay || 200)), O(c.timeout) && (o = setTimeout(function() {\n o = null, pe(e.resolved) && l(null);\n }, c.timeout)))), s = !1, e.loading ? e.loadingComp : e.resolved;\n }\n}\nfunction fc(e) {\n if (ve(e))\n for (var t = 0; t < e.length; t++) {\n var a = e[t];\n if (O(a) && (O(a.componentOptions) || Xa(a)))\n return a;\n }\n}\nvar Mp = 1, vc = 2;\nfunction Qa(e, t, a, n, s, r) {\n return (ve(a) || on(a)) && (s = n, n = a, a = void 0), _e(r) && (s = vc), Rp(e, t, a, n, s);\n}\nfunction Rp(e, t, a, n, s) {\n if (O(a) && O(a.__ob__) || (O(a) && O(a.is) && (t = a.is), !t))\n return ka();\n ve(n) && Pe(n[0]) && (a = a || {}, a.scopedSlots = { default: n[0] }, n.length = 0), s === vc ? n = wr(n) : s === Mp && (n = gp(n));\n var r, o;\n if (typeof t == \"string\") {\n var i = void 0;\n o = e.$vnode && e.$vnode.ns || rt.getTagNamespace(t), rt.isReservedTag(t) ? r = new st(rt.parsePlatformTagName(t), a, n, void 0, void 0, e) : (!a || !a.pre) && O(i = ns(e.$options, \"components\", t)) ? r = Yi(i, a, e, n, t) : r = new st(t, a, n, void 0, void 0, e);\n } else\n r = Yi(t, a, e, n);\n return ve(r) ? r : O(r) ? (O(o) && Cc(r, o), O(a) && $p(a), r) : ka();\n}\nfunction Cc(e, t, a) {\n if (e.ns = t, e.tag === \"foreignObject\" && (t = void 0, a = !0), O(e.children))\n for (var n = 0, s = e.children.length; n < s; n++) {\n var r = e.children[n];\n O(r.tag) && (pe(r.ns) || _e(a) && r.tag !== \"svg\") && Cc(r, t, a);\n }\n}\nfunction $p(e) {\n Je(e.style) && Ea(e.style), Je(e.class) && Ea(e.class);\n}\nfunction Ip(e, t, a) {\n return Qa(Me, e, t, a, 2, !0);\n}\nfunction aa(e, t, a) {\n Ba();\n try {\n if (t)\n for (var n = t; n = n.$parent; ) {\n var s = n.$options.errorCaptured;\n if (s)\n for (var r = 0; r < s.length; r++)\n try {\n var o = s[r].call(n, e, t, a) === !1;\n if (o)\n return;\n } catch (i) {\n Hi(i, n, \"errorCaptured hook\");\n }\n }\n Hi(e, t, a);\n } finally {\n _a();\n }\n}\nfunction Et(e, t, a, n, s) {\n var r;\n try {\n r = a ? e.apply(t, a) : e.call(t), r && !r._isVue && Do(r) && !r._handled && (r.catch(function(o) {\n return aa(o, n, s + \" (Promise/async)\");\n }), r._handled = !0);\n } catch (o) {\n aa(o, n, s);\n }\n return r;\n}\nfunction Hi(e, t, a) {\n if (rt.errorHandler)\n try {\n return rt.errorHandler.call(null, e, t, a);\n } catch (n) {\n n !== e && qi(n);\n }\n qi(e);\n}\nfunction qi(e, t, a) {\n if (tt && typeof console < \"u\")\n console.error(e);\n else\n throw e;\n}\nvar zo = !1, Uo = [], Mo = !1;\nfunction xn() {\n Mo = !1;\n var e = Uo.slice(0);\n Uo.length = 0;\n for (var t = 0; t < e.length; t++)\n e[t]();\n}\nvar $a;\nif (typeof Promise < \"u\" && wa(Promise)) {\n var Gp = Promise.resolve();\n $a = function() {\n Gp.then(xn), Ld && setTimeout(De);\n }, zo = !0;\n} else if (!Fa && typeof MutationObserver < \"u\" && (wa(MutationObserver) || MutationObserver.toString() === \"[object MutationObserverConstructor]\")) {\n var kn = 1, Hp = new MutationObserver(xn), Vi = document.createTextNode(String(kn));\n Hp.observe(Vi, { characterData: !0 }), $a = function() {\n kn = (kn + 1) % 2, Vi.data = String(kn);\n }, zo = !0;\n} else\n typeof setImmediate < \"u\" && wa(setImmediate) ? $a = function() {\n setImmediate(xn);\n } : $a = function() {\n setTimeout(xn, 0);\n };\nfunction Es(e, t) {\n var a;\n if (Uo.push(function() {\n if (e)\n try {\n e.call(t);\n } catch (n) {\n aa(n, t, \"nextTick\");\n }\n else\n a && a(t);\n }), Mo || (Mo = !0, $a()), !e && typeof Promise < \"u\")\n return new Promise(function(n) {\n a = n;\n });\n}\nfunction qp(e) {\n e === void 0 && (e = \"$style\");\n {\n if (!Me)\n return Ke;\n var t = Me[e];\n return t || Ke;\n }\n}\nfunction Vp(e) {\n if (tt) {\n var t = Me;\n t && ic(function() {\n var a = t.$el, n = e(t, t._setupProxy);\n if (a && a.nodeType === 1) {\n var s = a.style;\n for (var r in n)\n s.setProperty(\"--\".concat(r), n[r]);\n }\n });\n }\n}\nfunction Wp(e) {\n Pe(e) && (e = { loader: e });\n var t = e.loader, a = e.loadingComponent, n = e.errorComponent, s = e.delay, r = s === void 0 ? 200 : s, o = e.timeout;\n e.suspensible;\n var i = e.onError, u = null, l = 0, c = function() {\n return l++, u = null, d();\n }, d = function() {\n var m;\n return u || (m = u = t().catch(function(p) {\n if (p = p instanceof Error ? p : new Error(String(p)), i)\n return new Promise(function(h, y) {\n var P = function() {\n return h(c());\n }, v = function() {\n return y(p);\n };\n i(p, P, v, l + 1);\n });\n throw p;\n }).then(function(p) {\n return m !== u && u ? u : (p && (p.__esModule || p[Symbol.toStringTag] === \"Module\") && (p = p.default), p);\n }));\n };\n return function() {\n var m = d();\n return { component: m, delay: r, timeout: o, error: n, loading: a };\n };\n}\nfunction ut(e) {\n return function(t, a) {\n if (a === void 0 && (a = Me), !!a)\n return Zp(a, e, t);\n };\n}\nfunction Zp(e, t, a) {\n var n = e.$options;\n n[t] = Pc(n[t], a);\n}\nvar Kp = ut(\"beforeMount\"), Jp = ut(\"mounted\"), Yp = ut(\"beforeUpdate\"), Xp = ut(\"updated\"), Qp = ut(\"beforeDestroy\"), eg = ut(\"destroyed\"), tg = ut(\"activated\"), ag = ut(\"deactivated\"), ng = ut(\"serverPrefetch\"), sg = ut(\"renderTracked\"), og = ut(\"renderTriggered\"), rg = ut(\"errorCaptured\");\nfunction ig(e, t) {\n t === void 0 && (t = Me), rg(e, t);\n}\nvar yc = \"2.7.14\";\nfunction ug(e) {\n return e;\n}\nvar Wi = new Ya();\nfunction Ea(e) {\n return Hn(e, Wi), Wi.clear(), e;\n}\nfunction Hn(e, t) {\n var a, n, s = ve(e);\n if (!(!s && !Je(e) || e.__v_skip || Object.isFrozen(e) || e instanceof st)) {\n if (e.__ob__) {\n var r = e.__ob__.dep.id;\n if (t.has(r))\n return;\n t.add(r);\n }\n if (s)\n for (a = e.length; a--; )\n Hn(e[a], t);\n else if (We(e))\n Hn(e.value, t);\n else\n for (n = Object.keys(e), a = n.length; a--; )\n Hn(e[n[a]], t);\n }\n}\nvar lg = 0, cn = function() {\n function e(t, a, n, s, r) {\n up(this, Ze && !Ze._vm ? Ze : t ? t._scope : void 0), (this.vm = t) && r && (t._watcher = this), s ? (this.deep = !!s.deep, this.user = !!s.user, this.lazy = !!s.lazy, this.sync = !!s.sync, this.before = s.before) : this.deep = this.user = this.lazy = this.sync = !1, this.cb = n, this.id = ++lg, this.active = !0, this.post = !1, this.dirty = this.lazy, this.deps = [], this.newDeps = [], this.depIds = new Ya(), this.newDepIds = new Ya(), this.expression = \"\", Pe(a) ? this.getter = a : (this.getter = Od(a), this.getter || (this.getter = De)), this.value = this.lazy ? void 0 : this.get();\n }\n return e.prototype.get = function() {\n Ba(this);\n var t, a = this.vm;\n try {\n t = this.getter.call(a, a);\n } catch (n) {\n if (this.user)\n aa(n, a, 'getter for watcher \"'.concat(this.expression, '\"'));\n else\n throw n;\n } finally {\n this.deep && Ea(t), _a(), this.cleanupDeps();\n }\n return t;\n }, e.prototype.addDep = function(t) {\n var a = t.id;\n this.newDepIds.has(a) || (this.newDepIds.add(a), this.newDeps.push(t), this.depIds.has(a) || t.addSub(this));\n }, e.prototype.cleanupDeps = function() {\n for (var t = this.deps.length; t--; ) {\n var a = this.deps[t];\n this.newDepIds.has(a.id) || a.removeSub(this);\n }\n var n = this.depIds;\n this.depIds = this.newDepIds, this.newDepIds = n, this.newDepIds.clear(), n = this.deps, this.deps = this.newDeps, this.newDeps = n, this.newDeps.length = 0;\n }, e.prototype.update = function() {\n this.lazy ? this.dirty = !0 : this.sync ? this.run() : Io(this);\n }, e.prototype.run = function() {\n if (this.active) {\n var t = this.get();\n if (t !== this.value || Je(t) || this.deep) {\n var a = this.value;\n if (this.value = t, this.user) {\n var n = 'callback for watcher \"'.concat(this.expression, '\"');\n Et(this.cb, this.vm, [t, a], this.vm, n);\n } else\n this.cb.call(this.vm, t, a);\n }\n }\n }, e.prototype.evaluate = function() {\n this.value = this.get(), this.dirty = !1;\n }, e.prototype.depend = function() {\n for (var t = this.deps.length; t--; )\n this.deps[t].depend();\n }, e.prototype.teardown = function() {\n if (this.vm && !this.vm._isBeingDestroyed && Mt(this.vm._scope.effects, this), this.active) {\n for (var t = this.deps.length; t--; )\n this.deps[t].removeSub(this);\n this.active = !1, this.onStop && this.onStop();\n }\n }, e;\n}();\nfunction cg(e) {\n e._events = /* @__PURE__ */ Object.create(null), e._hasHookEvent = !1;\n var t = e.$options._parentListeners;\n t && Ac(e, t);\n}\nvar en;\nfunction mg(e, t) {\n en.$on(e, t);\n}\nfunction dg(e, t) {\n en.$off(e, t);\n}\nfunction pg(e, t) {\n var a = en;\n return function n() {\n var s = t.apply(null, arguments);\n s !== null && a.$off(e, n);\n };\n}\nfunction Ac(e, t, a) {\n en = e, lc(t, a || {}, mg, dg, pg, e), en = void 0;\n}\nfunction gg(e) {\n var t = /^hook:/;\n e.prototype.$on = function(a, n) {\n var s = this;\n if (ve(a))\n for (var r = 0, o = a.length; r < o; r++)\n s.$on(a[r], n);\n else\n (s._events[a] || (s._events[a] = [])).push(n), t.test(a) && (s._hasHookEvent = !0);\n return s;\n }, e.prototype.$once = function(a, n) {\n var s = this;\n function r() {\n s.$off(a, r), n.apply(s, arguments);\n }\n return r.fn = n, s.$on(a, r), s;\n }, e.prototype.$off = function(a, n) {\n var s = this;\n if (!arguments.length)\n return s._events = /* @__PURE__ */ Object.create(null), s;\n if (ve(a)) {\n for (var r = 0, o = a.length; r < o; r++)\n s.$off(a[r], n);\n return s;\n }\n var i = s._events[a];\n if (!i)\n return s;\n if (!n)\n return s._events[a] = null, s;\n for (var u, l = i.length; l--; )\n if (u = i[l], u === n || u.fn === n) {\n i.splice(l, 1);\n break;\n }\n return s;\n }, e.prototype.$emit = function(a) {\n var n = this, s = n._events[a];\n if (s) {\n s = s.length > 1 ? Bo(s) : s;\n for (var r = Bo(arguments, 1), o = 'event handler for \"'.concat(a, '\"'), i = 0, u = s.length; i < u; i++)\n Et(s[i], n, r, n, o);\n }\n return n;\n };\n}\nvar Xt = null;\nfunction wc(e) {\n var t = Xt;\n return Xt = e, function() {\n Xt = t;\n };\n}\nfunction hg(e) {\n var t = e.$options, a = t.parent;\n if (a && !t.abstract) {\n for (; a.$options.abstract && a.$parent; )\n a = a.$parent;\n a.$children.push(e);\n }\n e.$parent = a, e.$root = a ? a.$root : e, e.$children = [], e.$refs = {}, e._provided = a ? a._provided : /* @__PURE__ */ Object.create(null), e._watcher = null, e._inactive = null, e._directInactive = !1, e._isMounted = !1, e._isDestroyed = !1, e._isBeingDestroyed = !1;\n}\nfunction fg(e) {\n e.prototype._update = function(t, a) {\n var n = this, s = n.$el, r = n._vnode, o = wc(n);\n n._vnode = t, r ? n.$el = n.__patch__(r, t) : n.$el = n.__patch__(n.$el, t, a, !1), o(), s && (s.__vue__ = null), n.$el && (n.$el.__vue__ = n);\n for (var i = n; i && i.$vnode && i.$parent && i.$vnode === i.$parent._vnode; )\n i.$parent.$el = i.$el, i = i.$parent;\n }, e.prototype.$forceUpdate = function() {\n var t = this;\n t._watcher && t._watcher.update();\n }, e.prototype.$destroy = function() {\n var t = this;\n if (!t._isBeingDestroyed) {\n ct(t, \"beforeDestroy\"), t._isBeingDestroyed = !0;\n var a = t.$parent;\n a && !a._isBeingDestroyed && !t.$options.abstract && Mt(a.$children, t), t._scope.stop(), t._data.__ob__ && t._data.__ob__.vmCount--, t._isDestroyed = !0, t.__patch__(t._vnode, null), ct(t, \"destroyed\"), t.$off(), t.$el && (t.$el.__vue__ = null), t.$vnode && (t.$vnode.parent = null);\n }\n };\n}\nfunction vg(e, t, a) {\n e.$el = t, e.$options.render || (e.$options.render = ka), ct(e, \"beforeMount\");\n var n;\n n = function() {\n e._update(e._render(), a);\n };\n var s = { before: function() {\n e._isMounted && !e._isDestroyed && ct(e, \"beforeUpdate\");\n } };\n new cn(e, n, De, s, !0), a = !1;\n var r = e._preWatchers;\n if (r)\n for (var o = 0; o < r.length; o++)\n r[o].run();\n return e.$vnode == null && (e._isMounted = !0, ct(e, \"mounted\")), e;\n}\nfunction Cg(e, t, a, n, s) {\n var r = n.data.scopedSlots, o = e.$scopedSlots, i = !!(r && !r.$stable || o !== Ke && !o.$stable || r && e.$scopedSlots.$key !== r.$key || !r && e.$scopedSlots.$key), u = !!(s || e.$options._renderChildren || i), l = e.$vnode;\n e.$options._parentVnode = n, e.$vnode = n, e._vnode && (e._vnode.parent = n), e.$options._renderChildren = s;\n var c = n.data.attrs || Ke;\n e._attrsProxy && es(e._attrsProxy, c, l.data && l.data.attrs || Ke, e, \"$attrs\") && (u = !0), e.$attrs = c, a = a || Ke;\n var d = e.$options._parentListeners;\n if (e._listenersProxy && es(e._listenersProxy, a, d || Ke, e, \"$listeners\"), e.$listeners = e.$options._parentListeners = a, Ac(e, a, d), t && e.$options.props) {\n zt(!1);\n for (var m = e._props, p = e.$options._propKeys || [], h = 0; h < p.length; h++) {\n var y = p[h], P = e.$options.props;\n m[y] = Fr(y, P, t, e);\n }\n zt(!0), e.$options.propsData = t;\n }\n u && (e.$slots = br(s, n.context), e.$forceUpdate());\n}\nfunction bc(e) {\n for (; e && (e = e.$parent); )\n if (e._inactive)\n return !0;\n return !1;\n}\nfunction kr(e, t) {\n if (t) {\n if (e._directInactive = !1, bc(e))\n return;\n } else if (e._directInactive)\n return;\n if (e._inactive || e._inactive === null) {\n e._inactive = !1;\n for (var a = 0; a < e.$children.length; a++)\n kr(e.$children[a]);\n ct(e, \"activated\");\n }\n}\nfunction xc(e, t) {\n if (!(t && (e._directInactive = !0, bc(e))) && !e._inactive) {\n e._inactive = !0;\n for (var a = 0; a < e.$children.length; a++)\n xc(e.$children[a]);\n ct(e, \"deactivated\");\n }\n}\nfunction ct(e, t, a, n) {\n n === void 0 && (n = !0), Ba();\n var s = Me;\n n && Lt(e);\n var r = e.$options[t], o = \"\".concat(t, \" hook\");\n if (r)\n for (var i = 0, u = r.length; i < u; i++)\n Et(r[i], e, a || null, e, o);\n e._hasHookEvent && e.$emit(\"hook:\" + t), n && Lt(s), _a();\n}\nvar wt = [], Er = [], ts = {}, Ro = !1, Pr = !1, ya = 0;\nfunction yg() {\n ya = wt.length = Er.length = 0, ts = {}, Ro = Pr = !1;\n}\nvar kc = 0, $o = Date.now;\nif (tt && !Fa) {\n var to = window.performance;\n to && typeof to.now == \"function\" && $o() > document.createEvent(\"Event\").timeStamp && ($o = function() {\n return to.now();\n });\n}\nvar Ag = function(e, t) {\n if (e.post) {\n if (!t.post)\n return 1;\n } else if (t.post)\n return -1;\n return e.id - t.id;\n};\nfunction wg() {\n kc = $o(), Pr = !0;\n var e, t;\n for (wt.sort(Ag), ya = 0; ya < wt.length; ya++)\n e = wt[ya], e.before && e.before(), t = e.id, ts[t] = null, e.run();\n var a = Er.slice(), n = wt.slice();\n yg(), kg(a), bg(n), Md(), Jn && rt.devtools && Jn.emit(\"flush\");\n}\nfunction bg(e) {\n for (var t = e.length; t--; ) {\n var a = e[t], n = a.vm;\n n && n._watcher === a && n._isMounted && !n._isDestroyed && ct(n, \"updated\");\n }\n}\nfunction xg(e) {\n e._inactive = !1, Er.push(e);\n}\nfunction kg(e) {\n for (var t = 0; t < e.length; t++)\n e[t]._inactive = !0, kr(e[t], !0);\n}\nfunction Io(e) {\n var t = e.id;\n if (ts[t] == null && !(e === ft.target && e.noRecurse)) {\n if (ts[t] = !0, !Pr)\n wt.push(e);\n else {\n for (var a = wt.length - 1; a > ya && wt[a].id > e.id; )\n a--;\n wt.splice(a + 1, 0, e);\n }\n Ro || (Ro = !0, Es(wg));\n }\n}\nfunction Eg(e) {\n var t = e.$options.provide;\n if (t) {\n var a = Pe(t) ? t.call(e) : t;\n if (!Je(a))\n return;\n for (var n = uc(e), s = un ? Reflect.ownKeys(a) : Object.keys(a), r = 0; r < s.length; r++) {\n var o = s[r];\n Object.defineProperty(n, o, Object.getOwnPropertyDescriptor(a, o));\n }\n }\n}\nfunction Pg(e) {\n var t = Ec(e.$options.inject, e);\n t && (zt(!1), Object.keys(t).forEach(function(a) {\n Ut(e, a, t[a]);\n }), zt(!0));\n}\nfunction Ec(e, t) {\n if (e) {\n for (var a = /* @__PURE__ */ Object.create(null), n = un ? Reflect.ownKeys(e) : Object.keys(e), s = 0; s < n.length; s++) {\n var r = n[s];\n if (r !== \"__ob__\") {\n var o = e[r].from;\n if (o in t._provided)\n a[r] = t._provided[o];\n else if (\"default\" in e[r]) {\n var i = e[r].default;\n a[r] = Pe(i) ? i.call(t) : i;\n }\n }\n }\n return a;\n }\n}\nfunction Sr(e, t, a, n, s) {\n var r = this, o = s.options, i;\n Xe(n, \"_uid\") ? (i = Object.create(n), i._original = n) : (i = n, n = n._original);\n var u = _e(o._compiled), l = !u;\n this.data = e, this.props = t, this.children = a, this.parent = n, this.listeners = e.on || Ke, this.injections = Ec(o.inject, n), this.slots = function() {\n return r.$slots || Ha(n, e.scopedSlots, r.$slots = br(a, n)), r.$slots;\n }, Object.defineProperty(this, \"scopedSlots\", { enumerable: !0, get: function() {\n return Ha(n, e.scopedSlots, this.slots());\n } }), u && (this.$options = o, this.$slots = this.slots(), this.$scopedSlots = Ha(n, e.scopedSlots, this.$slots)), o._scopeId ? this._c = function(c, d, m, p) {\n var h = Qa(i, c, d, m, p, l);\n return h && !ve(h) && (h.fnScopeId = o._scopeId, h.fnContext = n), h;\n } : this._c = function(c, d, m, p) {\n return Qa(i, c, d, m, p, l);\n };\n}\npc(Sr.prototype);\nfunction Sg(e, t, a, n, s) {\n var r = e.options, o = {}, i = r.props;\n if (O(i))\n for (var u in i)\n o[u] = Fr(u, i, t || Ke);\n else\n O(a.attrs) && Ki(o, a.attrs), O(a.props) && Ki(o, a.props);\n var l = new Sr(a, o, s, n, e), c = r.render.call(null, l._c, l);\n if (c instanceof st)\n return Zi(c, a, l.parent, r);\n if (ve(c)) {\n for (var d = wr(c) || [], m = new Array(d.length), p = 0; p < d.length; p++)\n m[p] = Zi(d[p], a, l.parent, r);\n return m;\n }\n}\nfunction Zi(e, t, a, n, s) {\n var r = Oo(e);\n return r.fnContext = a, r.fnOptions = n, t.slot && ((r.data || (r.data = {})).slot = t.slot), r;\n}\nfunction Ki(e, t) {\n for (var a in t)\n e[ea(a)] = t[a];\n}\nfunction as(e) {\n return e.name || e.__name || e._componentTag;\n}\nvar Tr = { init: function(e, t) {\n if (e.componentInstance && !e.componentInstance._isDestroyed && e.data.keepAlive) {\n var a = e;\n Tr.prepatch(a, a);\n } else {\n var n = e.componentInstance = Tg(e, Xt);\n n.$mount(t ? e.elm : void 0, t);\n }\n}, prepatch: function(e, t) {\n var a = t.componentOptions, n = t.componentInstance = e.componentInstance;\n Cg(n, a.propsData, a.listeners, t, a.children);\n}, insert: function(e) {\n var t = e.context, a = e.componentInstance;\n a._isMounted || (a._isMounted = !0, ct(a, \"mounted\")), e.data.keepAlive && (t._isMounted ? xg(a) : kr(a, !0));\n}, destroy: function(e) {\n var t = e.componentInstance;\n t._isDestroyed || (e.data.keepAlive ? xc(t, !0) : t.$destroy());\n} }, Ji = Object.keys(Tr);\nfunction Yi(e, t, a, n, s) {\n if (!pe(e)) {\n var r = a.$options._base;\n if (Je(e) && (e = r.extend(e)), typeof e == \"function\") {\n var o;\n if (pe(e.cid) && (o = e, e = Up(o, r), e === void 0))\n return zp(o, t, a, n, s);\n t = t || {}, Br(e), O(t.model) && Bg(e.options, t);\n var i = pp(t, e);\n if (_e(e.options.functional))\n return Sg(e, i, t, a, n);\n var u = t.on;\n if (t.on = t.nativeOn, _e(e.options.abstract)) {\n var l = t.slot;\n t = {}, l && (t.slot = l);\n }\n Fg(t);\n var c = as(e.options) || s, d = new st(\"vue-component-\".concat(e.cid).concat(c ? \"-\".concat(c) : \"\"), t, void 0, void 0, void 0, a, { Ctor: e, propsData: i, listeners: u, tag: s, children: n }, o);\n return d;\n }\n }\n}\nfunction Tg(e, t) {\n var a = { _isComponent: !0, _parentVnode: e, parent: t }, n = e.data.inlineTemplate;\n return O(n) && (a.render = n.render, a.staticRenderFns = n.staticRenderFns), new e.componentOptions.Ctor(a);\n}\nfunction Fg(e) {\n for (var t = e.hook || (e.hook = {}), a = 0; a < Ji.length; a++) {\n var n = Ji[a], s = t[n], r = Tr[n];\n s !== r && !(s && s._merged) && (t[n] = s ? Dg(r, s) : r);\n }\n}\nfunction Dg(e, t) {\n var a = function(n, s) {\n e(n, s), t(n, s);\n };\n return a._merged = !0, a;\n}\nfunction Bg(e, t) {\n var a = e.model && e.model.prop || \"value\", n = e.model && e.model.event || \"input\";\n (t.attrs || (t.attrs = {}))[a] = t.model.value;\n var s = t.on || (t.on = {}), r = s[n], o = t.model.callback;\n O(r) ? (ve(r) ? r.indexOf(o) === -1 : r !== o) && (s[n] = [o].concat(r)) : s[n] = o;\n}\nvar _g = De, dt = rt.optionMergeStrategies;\nfunction tn(e, t, a) {\n if (a === void 0 && (a = !0), !t)\n return e;\n for (var n, s, r, o = un ? Reflect.ownKeys(t) : Object.keys(t), i = 0; i < o.length; i++)\n n = o[i], n !== \"__ob__\" && (s = e[n], r = t[n], !a || !Xe(e, n) ? bs(e, n, r) : s !== r && Qe(s) && Qe(r) && tn(s, r));\n return e;\n}\nfunction Xi(e, t, a) {\n return a ? function() {\n var n = Pe(t) ? t.call(a, a) : t, s = Pe(e) ? e.call(a, a) : e;\n return n ? tn(n, s) : s;\n } : t ? e ? function() {\n return tn(Pe(t) ? t.call(this, this) : t, Pe(e) ? e.call(this, this) : e);\n } : t : e;\n}\ndt.data = function(e, t, a) {\n return a ? Xi(e, t, a) : t && typeof t != \"function\" ? e : Xi(e, t);\n};\nfunction Pc(e, t) {\n var a = t ? e ? e.concat(t) : ve(t) ? t : [t] : e;\n return a && Ng(a);\n}\nfunction Ng(e) {\n for (var t = [], a = 0; a < e.length; a++)\n t.indexOf(e[a]) === -1 && t.push(e[a]);\n return t;\n}\nZl.forEach(function(e) {\n dt[e] = Pc;\n});\nfunction Og(e, t, a, n) {\n var s = Object.create(e || null);\n return t ? Fe(s, t) : s;\n}\nws.forEach(function(e) {\n dt[e + \"s\"] = Og;\n}), dt.watch = function(e, t, a, n) {\n if (e === No && (e = void 0), t === No && (t = void 0), !t)\n return Object.create(e || null);\n if (!e)\n return t;\n var s = {};\n Fe(s, e);\n for (var r in t) {\n var o = s[r], i = t[r];\n o && !ve(o) && (o = [o]), s[r] = o ? o.concat(i) : ve(i) ? i : [i];\n }\n return s;\n}, dt.props = dt.methods = dt.inject = dt.computed = function(e, t, a, n) {\n if (!e)\n return t;\n var s = /* @__PURE__ */ Object.create(null);\n return Fe(s, e), t && Fe(s, t), s;\n}, dt.provide = function(e, t) {\n return e ? function() {\n var a = /* @__PURE__ */ Object.create(null);\n return tn(a, Pe(e) ? e.call(this) : e), t && tn(a, Pe(t) ? t.call(this) : t, !1), a;\n } : t;\n};\nvar jg = function(e, t) {\n return t === void 0 ? e : t;\n};\nfunction Lg(e, t) {\n var a = e.props;\n if (a) {\n var n = {}, s, r, o;\n if (ve(a))\n for (s = a.length; s--; )\n r = a[s], typeof r == \"string\" && (o = ea(r), n[o] = { type: null });\n else if (Qe(a))\n for (var i in a)\n r = a[i], o = ea(i), n[o] = Qe(r) ? r : { type: r };\n e.props = n;\n }\n}\nfunction zg(e, t) {\n var a = e.inject;\n if (a) {\n var n = e.inject = {};\n if (ve(a))\n for (var s = 0; s < a.length; s++)\n n[a[s]] = { from: a[s] };\n else if (Qe(a))\n for (var r in a) {\n var o = a[r];\n n[r] = Qe(o) ? Fe({ from: r }, o) : { from: o };\n }\n }\n}\nfunction Ug(e) {\n var t = e.directives;\n if (t)\n for (var a in t) {\n var n = t[a];\n Pe(n) && (t[a] = { bind: n, update: n });\n }\n}\nfunction na(e, t, a) {\n if (Pe(t) && (t = t.options), Lg(t), zg(t), Ug(t), !t._base && (t.extends && (e = na(e, t.extends, a)), t.mixins))\n for (var n = 0, s = t.mixins.length; n < s; n++)\n e = na(e, t.mixins[n], a);\n var r = {}, o;\n for (o in e)\n i(o);\n for (o in t)\n Xe(e, o) || i(o);\n function i(u) {\n var l = dt[u] || jg;\n r[u] = l(e[u], t[u], a, u);\n }\n return r;\n}\nfunction ns(e, t, a, n) {\n if (typeof a == \"string\") {\n var s = e[t];\n if (Xe(s, a))\n return s[a];\n var r = ea(a);\n if (Xe(s, r))\n return s[r];\n var o = Td(r);\n if (Xe(s, o))\n return s[o];\n var i = s[a] || s[r] || s[o];\n return i;\n }\n}\nfunction Fr(e, t, a, n) {\n var s = t[e], r = !Xe(a, e), o = a[e], i = eu(Boolean, s.type);\n if (i > -1) {\n if (r && !Xe(s, \"default\"))\n o = !1;\n else if (o === \"\" || o === rn(e)) {\n var u = eu(String, s.type);\n (u < 0 || i < u) && (o = !0);\n }\n }\n if (o === void 0) {\n o = Mg(n, s, e);\n var l = vr;\n zt(!0), kt(o), zt(l);\n }\n return o;\n}\nfunction Mg(e, t, a) {\n if (Xe(t, \"default\")) {\n var n = t.default;\n return e && e.$options.propsData && e.$options.propsData[a] === void 0 && e._props[a] !== void 0 ? e._props[a] : Pe(n) && Go(t.type) !== \"Function\" ? n.call(e) : n;\n }\n}\nvar Rg = /^\\s*function (\\w+)/;\nfunction Go(e) {\n var t = e && e.toString().match(Rg);\n return t ? t[1] : \"\";\n}\nfunction Qi(e, t) {\n return Go(e) === Go(t);\n}\nfunction eu(e, t) {\n if (!ve(t))\n return Qi(t, e) ? 0 : -1;\n for (var a = 0, n = t.length; a < n; a++)\n if (Qi(t[a], e))\n return a;\n return -1;\n}\nvar _t = { enumerable: !0, configurable: !0, get: De, set: De };\nfunction Dr(e, t, a) {\n _t.get = function() {\n return this[t][a];\n }, _t.set = function(n) {\n this[t][a] = n;\n }, Object.defineProperty(e, a, _t);\n}\nfunction $g(e) {\n var t = e.$options;\n if (t.props && Ig(e, t.props), Tp(e), t.methods && Wg(e, t.methods), t.data)\n Gg(e);\n else {\n var a = kt(e._data = {});\n a && a.vmCount++;\n }\n t.computed && Vg(e, t.computed), t.watch && t.watch !== No && Zg(e, t.watch);\n}\nfunction Ig(e, t) {\n var a = e.$options.propsData || {}, n = e._props = yr({}), s = e.$options._propKeys = [], r = !e.$parent;\n r || zt(!1);\n var o = function(u) {\n s.push(u);\n var l = Fr(u, t, a, e);\n Ut(n, u, l), u in e || Dr(e, \"_props\", u);\n };\n for (var i in t)\n o(i);\n zt(!0);\n}\nfunction Gg(e) {\n var t = e.$options.data;\n t = e._data = Pe(t) ? Hg(t, e) : t || {}, Qe(t) || (t = {});\n var a = Object.keys(t), n = e.$options.props;\n e.$options.methods;\n for (var s = a.length; s--; ) {\n var r = a[s];\n n && Xe(n, r) || Kl(r) || Dr(e, \"_data\", r);\n }\n var o = kt(t);\n o && o.vmCount++;\n}\nfunction Hg(e, t) {\n Ba();\n try {\n return e.call(t, t);\n } catch (a) {\n return aa(a, t, \"data()\"), {};\n } finally {\n _a();\n }\n}\nvar qg = { lazy: !0 };\nfunction Vg(e, t) {\n var a = e._computedWatchers = /* @__PURE__ */ Object.create(null), n = Rt();\n for (var s in t) {\n var r = t[s], o = Pe(r) ? r : r.get;\n n || (a[s] = new cn(e, o || De, De, qg)), s in e || Sc(e, s, r);\n }\n}\nfunction Sc(e, t, a) {\n var n = !Rt();\n Pe(a) ? (_t.get = n ? tu(t) : au(a), _t.set = De) : (_t.get = a.get ? n && a.cache !== !1 ? tu(t) : au(a.get) : De, _t.set = a.set || De), Object.defineProperty(e, t, _t);\n}\nfunction tu(e) {\n return function() {\n var t = this._computedWatchers && this._computedWatchers[e];\n if (t)\n return t.dirty && t.evaluate(), ft.target && t.depend(), t.value;\n };\n}\nfunction au(e) {\n return function() {\n return e.call(this, this);\n };\n}\nfunction Wg(e, t) {\n e.$options.props;\n for (var a in t)\n e[a] = typeof t[a] != \"function\" ? De : Hl(t[a], e);\n}\nfunction Zg(e, t) {\n for (var a in t) {\n var n = t[a];\n if (ve(n))\n for (var s = 0; s < n.length; s++)\n Ho(e, a, n[s]);\n else\n Ho(e, a, n);\n }\n}\nfunction Ho(e, t, a, n) {\n return Qe(a) && (n = a, a = a.handler), typeof a == \"string\" && (a = e[a]), e.$watch(t, a, n);\n}\nfunction Kg(e) {\n var t = {};\n t.get = function() {\n return this._data;\n };\n var a = {};\n a.get = function() {\n return this._props;\n }, Object.defineProperty(e.prototype, \"$data\", t), Object.defineProperty(e.prototype, \"$props\", a), e.prototype.$set = bs, e.prototype.$delete = Cr, e.prototype.$watch = function(n, s, r) {\n var o = this;\n if (Qe(s))\n return Ho(o, n, s, r);\n r = r || {}, r.user = !0;\n var i = new cn(o, n, s, r);\n if (r.immediate) {\n var u = 'callback for immediate watcher \"'.concat(i.expression, '\"');\n Ba(), Et(s, o, [i.value], o, u), _a();\n }\n return function() {\n i.teardown();\n };\n };\n}\nvar Jg = 0;\nfunction Yg(e) {\n e.prototype._init = function(t) {\n var a = this;\n a._uid = Jg++, a._isVue = !0, a.__v_skip = !0, a._scope = new Ar(!0), a._scope._vm = !0, t && t._isComponent ? Xg(a, t) : a.$options = na(Br(a.constructor), t || {}, a), a._renderProxy = a, a._self = a, hg(a), cg(a), jp(a), ct(a, \"beforeCreate\", void 0, !1), Pg(a), $g(a), Eg(a), ct(a, \"created\"), a.$options.el && a.$mount(a.$options.el);\n };\n}\nfunction Xg(e, t) {\n var a = e.$options = Object.create(e.constructor.options), n = t._parentVnode;\n a.parent = t.parent, a._parentVnode = n;\n var s = n.componentOptions;\n a.propsData = s.propsData, a._parentListeners = s.listeners, a._renderChildren = s.children, a._componentTag = s.tag, t.render && (a.render = t.render, a.staticRenderFns = t.staticRenderFns);\n}\nfunction Br(e) {\n var t = e.options;\n if (e.super) {\n var a = Br(e.super), n = e.superOptions;\n if (a !== n) {\n e.superOptions = a;\n var s = Qg(e);\n s && Fe(e.extendOptions, s), t = e.options = na(a, e.extendOptions), t.name && (t.components[t.name] = e);\n }\n }\n return t;\n}\nfunction Qg(e) {\n var t, a = e.options, n = e.sealedOptions;\n for (var s in a)\n a[s] !== n[s] && (t || (t = {}), t[s] = a[s]);\n return t;\n}\nfunction Ne(e) {\n this._init(e);\n}\nYg(Ne), Kg(Ne), gg(Ne), fg(Ne), Lp(Ne);\nfunction eh(e) {\n e.use = function(t) {\n var a = this._installedPlugins || (this._installedPlugins = []);\n if (a.indexOf(t) > -1)\n return this;\n var n = Bo(arguments, 1);\n return n.unshift(this), Pe(t.install) ? t.install.apply(t, n) : Pe(t) && t.apply(null, n), a.push(t), this;\n };\n}\nfunction th(e) {\n e.mixin = function(t) {\n return this.options = na(this.options, t), this;\n };\n}\nfunction ah(e) {\n e.cid = 0;\n var t = 1;\n e.extend = function(a) {\n a = a || {};\n var n = this, s = n.cid, r = a._Ctor || (a._Ctor = {});\n if (r[s])\n return r[s];\n var o = as(a) || as(n.options), i = function(u) {\n this._init(u);\n };\n return i.prototype = Object.create(n.prototype), i.prototype.constructor = i, i.cid = t++, i.options = na(n.options, a), i.super = n, i.options.props && nh(i), i.options.computed && sh(i), i.extend = n.extend, i.mixin = n.mixin, i.use = n.use, ws.forEach(function(u) {\n i[u] = n[u];\n }), o && (i.options.components[o] = i), i.superOptions = n.options, i.extendOptions = a, i.sealedOptions = Fe({}, i.options), r[s] = i, i;\n };\n}\nfunction nh(e) {\n var t = e.options.props;\n for (var a in t)\n Dr(e.prototype, \"_props\", a);\n}\nfunction sh(e) {\n var t = e.options.computed;\n for (var a in t)\n Sc(e.prototype, a, t[a]);\n}\nfunction oh(e) {\n ws.forEach(function(t) {\n e[t] = function(a, n) {\n return n ? (t === \"component\" && Qe(n) && (n.name = n.name || a, n = this.options._base.extend(n)), t === \"directive\" && Pe(n) && (n = { bind: n, update: n }), this.options[t + \"s\"][a] = n, n) : this.options[t + \"s\"][a];\n };\n });\n}\nfunction nu(e) {\n return e && (as(e.Ctor.options) || e.tag);\n}\nfunction En(e, t) {\n return ve(e) ? e.indexOf(t) > -1 : typeof e == \"string\" ? e.split(\",\").indexOf(t) > -1 : xd(e) ? e.test(t) : !1;\n}\nfunction su(e, t) {\n var a = e.cache, n = e.keys, s = e._vnode;\n for (var r in a) {\n var o = a[r];\n if (o) {\n var i = o.name;\n i && !t(i) && qo(a, r, n, s);\n }\n }\n}\nfunction qo(e, t, a, n) {\n var s = e[t];\n s && (!n || s.tag !== n.tag) && s.componentInstance.$destroy(), e[t] = null, Mt(a, t);\n}\nvar ou = [String, RegExp, Array], rh = { name: \"keep-alive\", abstract: !0, props: { include: ou, exclude: ou, max: [String, Number] }, methods: { cacheVNode: function() {\n var e = this, t = e.cache, a = e.keys, n = e.vnodeToCache, s = e.keyToCache;\n if (n) {\n var r = n.tag, o = n.componentInstance, i = n.componentOptions;\n t[s] = { name: nu(i), tag: r, componentInstance: o }, a.push(s), this.max && a.length > parseInt(this.max) && qo(t, a[0], a, this._vnode), this.vnodeToCache = null;\n }\n} }, created: function() {\n this.cache = /* @__PURE__ */ Object.create(null), this.keys = [];\n}, destroyed: function() {\n for (var e in this.cache)\n qo(this.cache, e, this.keys);\n}, mounted: function() {\n var e = this;\n this.cacheVNode(), this.$watch(\"include\", function(t) {\n su(e, function(a) {\n return En(t, a);\n });\n }), this.$watch(\"exclude\", function(t) {\n su(e, function(a) {\n return !En(t, a);\n });\n });\n}, updated: function() {\n this.cacheVNode();\n}, render: function() {\n var e = this.$slots.default, t = fc(e), a = t && t.componentOptions;\n if (a) {\n var n = nu(a), s = this, r = s.include, o = s.exclude;\n if (r && (!n || !En(r, n)) || o && n && En(o, n))\n return t;\n var i = this, u = i.cache, l = i.keys, c = t.key == null ? a.Ctor.cid + (a.tag ? \"::\".concat(a.tag) : \"\") : t.key;\n u[c] ? (t.componentInstance = u[c].componentInstance, Mt(l, c), l.push(c)) : (this.vnodeToCache = t, this.keyToCache = c), t.data.keepAlive = !0;\n }\n return t || e && e[0];\n} }, ih = { KeepAlive: rh };\nfunction uh(e) {\n var t = {};\n t.get = function() {\n return rt;\n }, Object.defineProperty(e, \"config\", t), e.util = { warn: _g, extend: Fe, mergeOptions: na, defineReactive: Ut }, e.set = bs, e.delete = Cr, e.nextTick = Es, e.observable = function(a) {\n return kt(a), a;\n }, e.options = /* @__PURE__ */ Object.create(null), ws.forEach(function(a) {\n e.options[a + \"s\"] = /* @__PURE__ */ Object.create(null);\n }), e.options._base = e, Fe(e.options.components, ih), eh(e), th(e), ah(e), oh(e);\n}\nuh(Ne), Object.defineProperty(Ne.prototype, \"$isServer\", { get: Rt }), Object.defineProperty(Ne.prototype, \"$ssrContext\", { get: function() {\n return this.$vnode && this.$vnode.ssrContext;\n} }), Object.defineProperty(Ne, \"FunctionalRenderContext\", { value: Sr }), Ne.version = yc;\nvar lh = mt(\"style,class\"), ch = mt(\"input,textarea,option,select,progress\"), mh = function(e, t, a) {\n return a === \"value\" && ch(e) && t !== \"button\" || a === \"selected\" && e === \"option\" || a === \"checked\" && e === \"input\" || a === \"muted\" && e === \"video\";\n}, Tc = mt(\"contenteditable,draggable,spellcheck\"), dh = mt(\"events,caret,typing,plaintext-only\"), ph = function(e, t) {\n return ss(t) || t === \"false\" ? \"false\" : e === \"contenteditable\" && dh(t) ? t : \"true\";\n}, gh = mt(\"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,truespeed,typemustmatch,visible\"), Vo = \"http://www.w3.org/1999/xlink\", _r = function(e) {\n return e.charAt(5) === \":\" && e.slice(0, 5) === \"xlink\";\n}, Fc = function(e) {\n return _r(e) ? e.slice(6, e.length) : \"\";\n}, ss = function(e) {\n return e == null || e === !1;\n};\nfunction hh(e) {\n for (var t = e.data, a = e, n = e; O(n.componentInstance); )\n n = n.componentInstance._vnode, n && n.data && (t = ru(n.data, t));\n for (; O(a = a.parent); )\n a && a.data && (t = ru(t, a.data));\n return fh(t.staticClass, t.class);\n}\nfunction ru(e, t) {\n return { staticClass: Nr(e.staticClass, t.staticClass), class: O(e.class) ? [e.class, t.class] : t.class };\n}\nfunction fh(e, t) {\n return O(e) || O(t) ? Nr(e, Or(t)) : \"\";\n}\nfunction Nr(e, t) {\n return e ? t ? e + \" \" + t : e : t || \"\";\n}\nfunction Or(e) {\n return Array.isArray(e) ? vh(e) : Je(e) ? Ch(e) : typeof e == \"string\" ? e : \"\";\n}\nfunction vh(e) {\n for (var t = \"\", a, n = 0, s = e.length; n < s; n++)\n O(a = Or(e[n])) && a !== \"\" && (t && (t += \" \"), t += a);\n return t;\n}\nfunction Ch(e) {\n var t = \"\";\n for (var a in e)\n e[a] && (t && (t += \" \"), t += a);\n return t;\n}\nvar yh = { svg: \"http://www.w3.org/2000/svg\", math: \"http://www.w3.org/1998/Math/MathML\" }, Ah = mt(\"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\"), jr = mt(\"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), Dc = function(e) {\n return Ah(e) || jr(e);\n};\nfunction wh(e) {\n if (jr(e))\n return \"svg\";\n if (e === \"math\")\n return \"math\";\n}\nvar Pn = /* @__PURE__ */ Object.create(null);\nfunction bh(e) {\n if (!tt)\n return !0;\n if (Dc(e))\n return !1;\n if (e = e.toLowerCase(), Pn[e] != null)\n return Pn[e];\n var t = document.createElement(e);\n return e.indexOf(\"-\") > -1 ? Pn[e] = t.constructor === window.HTMLUnknownElement || t.constructor === window.HTMLElement : Pn[e] = /HTMLUnknownElement/.test(t.toString());\n}\nvar Wo = mt(\"text,number,password,search,email,tel,url\");\nfunction xh(e) {\n if (typeof e == \"string\") {\n var t = document.querySelector(e);\n return t || document.createElement(\"div\");\n } else\n return e;\n}\nfunction kh(e, t) {\n var a = document.createElement(e);\n return e !== \"select\" || t.data && t.data.attrs && t.data.attrs.multiple !== void 0 && a.setAttribute(\"multiple\", \"multiple\"), a;\n}\nfunction Eh(e, t) {\n return document.createElementNS(yh[e], t);\n}\nfunction Ph(e) {\n return document.createTextNode(e);\n}\nfunction Sh(e) {\n return document.createComment(e);\n}\nfunction Th(e, t, a) {\n e.insertBefore(t, a);\n}\nfunction Fh(e, t) {\n e.removeChild(t);\n}\nfunction Dh(e, t) {\n e.appendChild(t);\n}\nfunction Bh(e) {\n return e.parentNode;\n}\nfunction _h(e) {\n return e.nextSibling;\n}\nfunction Nh(e) {\n return e.tagName;\n}\nfunction Oh(e, t) {\n e.textContent = t;\n}\nfunction jh(e, t) {\n e.setAttribute(t, \"\");\n}\nvar Lh = Object.freeze({ __proto__: null, createElement: kh, createElementNS: Eh, createTextNode: Ph, createComment: Sh, insertBefore: Th, removeChild: Fh, appendChild: Dh, parentNode: Bh, nextSibling: _h, tagName: Nh, setTextContent: Oh, setStyleScope: jh }), zh = { create: function(e, t) {\n Aa(t);\n}, update: function(e, t) {\n e.data.ref !== t.data.ref && (Aa(e, !0), Aa(t));\n}, destroy: function(e) {\n Aa(e, !0);\n} };\nfunction Aa(e, t) {\n var a = e.data.ref;\n if (O(a)) {\n var n = e.context, s = e.componentInstance || e.elm, r = t ? null : s, o = t ? void 0 : s;\n if (Pe(a)) {\n Et(a, n, [r], n, \"template ref function\");\n return;\n }\n var i = e.data.refInFor, u = typeof a == \"string\" || typeof a == \"number\", l = We(a), c = n.$refs;\n if (u || l) {\n if (i) {\n var d = u ? c[a] : a.value;\n t ? ve(d) && Mt(d, s) : ve(d) ? d.includes(s) || d.push(s) : u ? (c[a] = [s], iu(n, a, c[a])) : a.value = [s];\n } else if (u) {\n if (t && c[a] !== s)\n return;\n c[a] = o, iu(n, a, r);\n } else if (l) {\n if (t && a.value !== s)\n return;\n a.value = r;\n }\n }\n }\n}\nfunction iu(e, t, a) {\n var n = e._setupState;\n n && Xe(n, t) && (We(n[t]) ? n[t].value = a : n[t] = a);\n}\nvar jt = new st(\"\", {}, []), Ua = [\"create\", \"activate\", \"update\", \"remove\", \"destroy\"];\nfunction Wt(e, t) {\n return e.key === t.key && e.asyncFactory === t.asyncFactory && (e.tag === t.tag && e.isComment === t.isComment && O(e.data) === O(t.data) && Uh(e, t) || _e(e.isAsyncPlaceholder) && pe(t.asyncFactory.error));\n}\nfunction Uh(e, t) {\n if (e.tag !== \"input\")\n return !0;\n var a, n = O(a = e.data) && O(a = a.attrs) && a.type, s = O(a = t.data) && O(a = a.attrs) && a.type;\n return n === s || Wo(n) && Wo(s);\n}\nfunction Mh(e, t, a) {\n var n, s, r = {};\n for (n = t; n <= a; ++n)\n s = e[n].key, O(s) && (r[s] = n);\n return r;\n}\nfunction Rh(e) {\n var t, a, n = {}, s = e.modules, r = e.nodeOps;\n for (t = 0; t < Ua.length; ++t)\n for (n[Ua[t]] = [], a = 0; a < s.length; ++a)\n O(s[a][Ua[t]]) && n[Ua[t]].push(s[a][Ua[t]]);\n function o(f) {\n return new st(r.tagName(f).toLowerCase(), {}, [], void 0, f);\n }\n function i(f, A) {\n function S() {\n --S.listeners === 0 && u(f);\n }\n return S.listeners = A, S;\n }\n function u(f) {\n var A = r.parentNode(f);\n O(A) && r.removeChild(A, f);\n }\n function l(f, A, S, D, R, B, F) {\n if (O(f.elm) && O(B) && (f = B[F] = Oo(f)), f.isRootInsert = !R, !c(f, A, S, D)) {\n var W = f.data, U = f.children, j = f.tag;\n O(j) ? (f.elm = f.ns ? r.createElementNS(f.ns, j) : r.createElement(j, f), v(f), h(f, U, A), O(W) && P(f, A), p(S, f.elm, D)) : _e(f.isComment) ? (f.elm = r.createComment(f.text), p(S, f.elm, D)) : (f.elm = r.createTextNode(f.text), p(S, f.elm, D));\n }\n }\n function c(f, A, S, D) {\n var R = f.data;\n if (O(R)) {\n var B = O(f.componentInstance) && R.keepAlive;\n if (O(R = R.hook) && O(R = R.init) && R(f, !1), O(f.componentInstance))\n return d(f, A), p(S, f.elm, D), _e(B) && m(f, A, S, D), !0;\n }\n }\n function d(f, A) {\n O(f.data.pendingInsert) && (A.push.apply(A, f.data.pendingInsert), f.data.pendingInsert = null), f.elm = f.componentInstance.$el, y(f) ? (P(f, A), v(f)) : (Aa(f), A.push(f));\n }\n function m(f, A, S, D) {\n for (var R, B = f; B.componentInstance; )\n if (B = B.componentInstance._vnode, O(R = B.data) && O(R = R.transition)) {\n for (R = 0; R < n.activate.length; ++R)\n n.activate[R](jt, B);\n A.push(B);\n break;\n }\n p(S, f.elm, D);\n }\n function p(f, A, S) {\n O(f) && (O(S) ? r.parentNode(S) === f && r.insertBefore(f, A, S) : r.appendChild(f, A));\n }\n function h(f, A, S) {\n if (ve(A))\n for (var D = 0; D < A.length; ++D)\n l(A[D], S, f.elm, null, !0, A, D);\n else\n on(f.text) && r.appendChild(f.elm, r.createTextNode(String(f.text)));\n }\n function y(f) {\n for (; f.componentInstance; )\n f = f.componentInstance._vnode;\n return O(f.tag);\n }\n function P(f, A) {\n for (var S = 0; S < n.create.length; ++S)\n n.create[S](jt, f);\n t = f.data.hook, O(t) && (O(t.create) && t.create(jt, f), O(t.insert) && A.push(f));\n }\n function v(f) {\n var A;\n if (O(A = f.fnScopeId))\n r.setStyleScope(f.elm, A);\n else\n for (var S = f; S; )\n O(A = S.context) && O(A = A.$options._scopeId) && r.setStyleScope(f.elm, A), S = S.parent;\n O(A = Xt) && A !== f.context && A !== f.fnContext && O(A = A.$options._scopeId) && r.setStyleScope(f.elm, A);\n }\n function g(f, A, S, D, R, B) {\n for (; D <= R; ++D)\n l(S[D], B, f, A, !1, S, D);\n }\n function b(f) {\n var A, S, D = f.data;\n if (O(D))\n for (O(A = D.hook) && O(A = A.destroy) && A(f), A = 0; A < n.destroy.length; ++A)\n n.destroy[A](f);\n if (O(A = f.children))\n for (S = 0; S < f.children.length; ++S)\n b(f.children[S]);\n }\n function x(f, A, S) {\n for (; A <= S; ++A) {\n var D = f[A];\n O(D) && (O(D.tag) ? (_(D), b(D)) : u(D.elm));\n }\n }\n function _(f, A) {\n if (O(A) || O(f.data)) {\n var S, D = n.remove.length + 1;\n for (O(A) ? A.listeners += D : A = i(f.elm, D), O(S = f.componentInstance) && O(S = S._vnode) && O(S.data) && _(S, A), S = 0; S < n.remove.length; ++S)\n n.remove[S](f, A);\n O(S = f.data.hook) && O(S = S.remove) ? S(f, A) : A();\n } else\n u(f.elm);\n }\n function w(f, A, S, D, R) {\n for (var B = 0, F = 0, W = A.length - 1, U = A[0], j = A[W], ee = S.length - 1, J = S[0], le = S[ee], ge, fe, $, z, te = !R; B <= W && F <= ee; )\n pe(U) ? U = A[++B] : pe(j) ? j = A[--W] : Wt(U, J) ? (H(U, J, D, S, F), U = A[++B], J = S[++F]) : Wt(j, le) ? (H(j, le, D, S, ee), j = A[--W], le = S[--ee]) : Wt(U, le) ? (H(U, le, D, S, ee), te && r.insertBefore(f, U.elm, r.nextSibling(j.elm)), U = A[++B], le = S[--ee]) : Wt(j, J) ? (H(j, J, D, S, F), te && r.insertBefore(f, j.elm, U.elm), j = A[--W], J = S[++F]) : (pe(ge) && (ge = Mh(A, B, W)), fe = O(J.key) ? ge[J.key] : L(J, A, B, W), pe(fe) ? l(J, D, f, U.elm, !1, S, F) : ($ = A[fe], Wt($, J) ? (H($, J, D, S, F), A[fe] = void 0, te && r.insertBefore(f, $.elm, U.elm)) : l(J, D, f, U.elm, !1, S, F)), J = S[++F]);\n B > W ? (z = pe(S[ee + 1]) ? null : S[ee + 1].elm, g(f, z, S, F, ee, D)) : F > ee && x(A, B, W);\n }\n function L(f, A, S, D) {\n for (var R = S; R < D; R++) {\n var B = A[R];\n if (O(B) && Wt(f, B))\n return R;\n }\n }\n function H(f, A, S, D, R, B) {\n if (f !== A) {\n O(A.elm) && O(D) && (A = D[R] = Oo(A));\n var F = A.elm = f.elm;\n if (_e(f.isAsyncPlaceholder)) {\n O(A.asyncFactory.resolved) ? T(f.elm, A, S) : A.isAsyncPlaceholder = !0;\n return;\n }\n if (_e(A.isStatic) && _e(f.isStatic) && A.key === f.key && (_e(A.isCloned) || _e(A.isOnce))) {\n A.componentInstance = f.componentInstance;\n return;\n }\n var W, U = A.data;\n O(U) && O(W = U.hook) && O(W = W.prepatch) && W(f, A);\n var j = f.children, ee = A.children;\n if (O(U) && y(A)) {\n for (W = 0; W < n.update.length; ++W)\n n.update[W](f, A);\n O(W = U.hook) && O(W = W.update) && W(f, A);\n }\n pe(A.text) ? O(j) && O(ee) ? j !== ee && w(F, j, ee, S, B) : O(ee) ? (O(f.text) && r.setTextContent(F, \"\"), g(F, null, ee, 0, ee.length - 1, S)) : O(j) ? x(j, 0, j.length - 1) : O(f.text) && r.setTextContent(F, \"\") : f.text !== A.text && r.setTextContent(F, A.text), O(U) && O(W = U.hook) && O(W = W.postpatch) && W(f, A);\n }\n }\n function C(f, A, S) {\n if (_e(S) && O(f.parent))\n f.parent.data.pendingInsert = A;\n else\n for (var D = 0; D < A.length; ++D)\n A[D].data.hook.insert(A[D]);\n }\n var E = mt(\"attrs,class,staticClass,staticStyle,key\");\n function T(f, A, S, D) {\n var R, B = A.tag, F = A.data, W = A.children;\n if (D = D || F && F.pre, A.elm = f, _e(A.isComment) && O(A.asyncFactory))\n return A.isAsyncPlaceholder = !0, !0;\n if (O(F) && (O(R = F.hook) && O(R = R.init) && R(A, !0), O(R = A.componentInstance)))\n return d(A, S), !0;\n if (O(B)) {\n if (O(W))\n if (!f.hasChildNodes())\n h(A, W, S);\n else if (O(R = F) && O(R = R.domProps) && O(R = R.innerHTML)) {\n if (R !== f.innerHTML)\n return !1;\n } else {\n for (var U = !0, j = f.firstChild, ee = 0; ee < W.length; ee++) {\n if (!j || !T(j, W[ee], S, D)) {\n U = !1;\n break;\n }\n j = j.nextSibling;\n }\n if (!U || j)\n return !1;\n }\n if (O(F)) {\n var J = !1;\n for (var le in F)\n if (!E(le)) {\n J = !0, P(A, S);\n break;\n }\n !J && F.class && Ea(F.class);\n }\n } else\n f.data !== A.text && (f.data = A.text);\n return !0;\n }\n return function(f, A, S, D) {\n if (pe(A)) {\n O(f) && b(f);\n return;\n }\n var R = !1, B = [];\n if (pe(f))\n R = !0, l(A, B);\n else {\n var F = O(f.nodeType);\n if (!F && Wt(f, A))\n H(f, A, B, null, null, D);\n else {\n if (F) {\n if (f.nodeType === 1 && f.hasAttribute(_i) && (f.removeAttribute(_i), S = !0), _e(S) && T(f, A, B))\n return C(A, B, !0), f;\n f = o(f);\n }\n var W = f.elm, U = r.parentNode(W);\n if (l(A, B, W._leaveCb ? null : U, r.nextSibling(W)), O(A.parent))\n for (var j = A.parent, ee = y(A); j; ) {\n for (var J = 0; J < n.destroy.length; ++J)\n n.destroy[J](j);\n if (j.elm = A.elm, ee) {\n for (var le = 0; le < n.create.length; ++le)\n n.create[le](jt, j);\n var ge = j.data.hook.insert;\n if (ge.merged)\n for (var fe = 1; fe < ge.fns.length; fe++)\n ge.fns[fe]();\n } else\n Aa(j);\n j = j.parent;\n }\n O(U) ? x([f], 0, 0) : O(f.tag) && b(f);\n }\n }\n return C(A, B, R), A.elm;\n };\n}\nvar $h = { create: ao, update: ao, destroy: function(e) {\n ao(e, jt);\n} };\nfunction ao(e, t) {\n (e.data.directives || t.data.directives) && Ih(e, t);\n}\nfunction Ih(e, t) {\n var a = e === jt, n = t === jt, s = uu(e.data.directives, e.context), r = uu(t.data.directives, t.context), o = [], i = [], u, l, c;\n for (u in r)\n l = s[u], c = r[u], l ? (c.oldValue = l.value, c.oldArg = l.arg, Ma(c, \"update\", t, e), c.def && c.def.componentUpdated && i.push(c)) : (Ma(c, \"bind\", t, e), c.def && c.def.inserted && o.push(c));\n if (o.length) {\n var d = function() {\n for (var m = 0; m < o.length; m++)\n Ma(o[m], \"inserted\", t, e);\n };\n a ? Ot(t, \"insert\", d) : d();\n }\n if (i.length && Ot(t, \"postpatch\", function() {\n for (var m = 0; m < i.length; m++)\n Ma(i[m], \"componentUpdated\", t, e);\n }), !a)\n for (u in s)\n r[u] || Ma(s[u], \"unbind\", e, e, n);\n}\nvar Gh = /* @__PURE__ */ Object.create(null);\nfunction uu(e, t) {\n var a = /* @__PURE__ */ Object.create(null);\n if (!e)\n return a;\n var n, s;\n for (n = 0; n < e.length; n++) {\n if (s = e[n], s.modifiers || (s.modifiers = Gh), a[Hh(s)] = s, t._setupState && t._setupState.__sfc) {\n var r = s.def || ns(t, \"_setupState\", \"v-\" + s.name);\n typeof r == \"function\" ? s.def = { bind: r, update: r } : s.def = r;\n }\n s.def = s.def || ns(t.$options, \"directives\", s.name);\n }\n return a;\n}\nfunction Hh(e) {\n return e.rawName || \"\".concat(e.name, \".\").concat(Object.keys(e.modifiers || {}).join(\".\"));\n}\nfunction Ma(e, t, a, n, s) {\n var r = e.def && e.def[t];\n if (r)\n try {\n r(a.elm, e, a, n, s);\n } catch (o) {\n aa(o, a.context, \"directive \".concat(e.name, \" \").concat(t, \" hook\"));\n }\n}\nvar qh = [zh, $h];\nfunction lu(e, t) {\n var a = t.componentOptions;\n if (!(O(a) && a.Ctor.options.inheritAttrs === !1) && !(pe(e.data.attrs) && pe(t.data.attrs))) {\n var n, s, r, o = t.elm, i = e.data.attrs || {}, u = t.data.attrs || {};\n (O(u.__ob__) || _e(u._v_attr_proxy)) && (u = t.data.attrs = Fe({}, u));\n for (n in u)\n s = u[n], r = i[n], r !== s && cu(o, n, s, t.data.pre);\n (Fa || Jl) && u.value !== i.value && cu(o, \"value\", u.value);\n for (n in i)\n pe(u[n]) && (_r(n) ? o.removeAttributeNS(Vo, Fc(n)) : Tc(n) || o.removeAttribute(n));\n }\n}\nfunction cu(e, t, a, n) {\n n || e.tagName.indexOf(\"-\") > -1 ? mu(e, t, a) : gh(t) ? ss(a) ? e.removeAttribute(t) : (a = t === \"allowfullscreen\" && e.tagName === \"EMBED\" ? \"true\" : t, e.setAttribute(t, a)) : Tc(t) ? e.setAttribute(t, ph(t, a)) : _r(t) ? ss(a) ? e.removeAttributeNS(Vo, Fc(t)) : e.setAttributeNS(Vo, t, a) : mu(e, t, a);\n}\nfunction mu(e, t, a) {\n if (ss(a))\n e.removeAttribute(t);\n else {\n if (Fa && !Da && e.tagName === \"TEXTAREA\" && t === \"placeholder\" && a !== \"\" && !e.__ieph) {\n var n = function(s) {\n s.stopImmediatePropagation(), e.removeEventListener(\"input\", n);\n };\n e.addEventListener(\"input\", n), e.__ieph = !0;\n }\n e.setAttribute(t, a);\n }\n}\nvar Vh = { create: lu, update: lu };\nfunction du(e, t) {\n var a = t.elm, n = t.data, s = e.data;\n if (!(pe(n.staticClass) && pe(n.class) && (pe(s) || pe(s.staticClass) && pe(s.class)))) {\n var r = hh(t), o = a._transitionClasses;\n O(o) && (r = Nr(r, Or(o))), r !== a._prevClass && (a.setAttribute(\"class\", r), a._prevClass = r);\n }\n}\nvar Wh = { create: du, update: du }, no = \"__r\", so = \"__c\";\nfunction Zh(e) {\n if (O(e[no])) {\n var t = Fa ? \"change\" : \"input\";\n e[t] = [].concat(e[no], e[t] || []), delete e[no];\n }\n O(e[so]) && (e.change = [].concat(e[so], e.change || []), delete e[so]);\n}\nvar an;\nfunction Kh(e, t, a) {\n var n = an;\n return function s() {\n var r = t.apply(null, arguments);\n r !== null && Bc(e, s, a, n);\n };\n}\nvar Jh = zo && !(Ni && Number(Ni[1]) <= 53);\nfunction Yh(e, t, a, n) {\n if (Jh) {\n var s = kc, r = t;\n t = r._wrapper = function(o) {\n if (o.target === o.currentTarget || o.timeStamp >= s || o.timeStamp <= 0 || o.target.ownerDocument !== document)\n return r.apply(this, arguments);\n };\n }\n an.addEventListener(e, t, Yl ? { capture: a, passive: n } : a);\n}\nfunction Bc(e, t, a, n) {\n (n || an).removeEventListener(e, t._wrapper || t, a);\n}\nfunction oo(e, t) {\n if (!(pe(e.data.on) && pe(t.data.on))) {\n var a = t.data.on || {}, n = e.data.on || {};\n an = t.elm || e.elm, Zh(a), lc(a, n, Yh, Bc, Kh, t.context), an = void 0;\n }\n}\nvar Xh = { create: oo, update: oo, destroy: function(e) {\n return oo(e, jt);\n} }, Sn;\nfunction pu(e, t) {\n if (!(pe(e.data.domProps) && pe(t.data.domProps))) {\n var a, n, s = t.elm, r = e.data.domProps || {}, o = t.data.domProps || {};\n (O(o.__ob__) || _e(o._v_attr_proxy)) && (o = t.data.domProps = Fe({}, o));\n for (a in r)\n a in o || (s[a] = \"\");\n for (a in o) {\n if (n = o[a], a === \"textContent\" || a === \"innerHTML\") {\n if (t.children && (t.children.length = 0), n === r[a])\n continue;\n s.childNodes.length === 1 && s.removeChild(s.childNodes[0]);\n }\n if (a === \"value\" && s.tagName !== \"PROGRESS\") {\n s._value = n;\n var i = pe(n) ? \"\" : String(n);\n Qh(s, i) && (s.value = i);\n } else if (a === \"innerHTML\" && jr(s.tagName) && pe(s.innerHTML)) {\n Sn = Sn || document.createElement(\"div\"), Sn.innerHTML = \"\".concat(n, \"\");\n for (var u = Sn.firstChild; s.firstChild; )\n s.removeChild(s.firstChild);\n for (; u.firstChild; )\n s.appendChild(u.firstChild);\n } else if (n !== r[a])\n try {\n s[a] = n;\n } catch {\n }\n }\n }\n}\nfunction Qh(e, t) {\n return !e.composing && (e.tagName === \"OPTION\" || ef(e, t) || tf(e, t));\n}\nfunction ef(e, t) {\n var a = !0;\n try {\n a = document.activeElement !== e;\n } catch {\n }\n return a && e.value !== t;\n}\nfunction tf(e, t) {\n var a = e.value, n = e._vModifiers;\n if (O(n)) {\n if (n.number)\n return Ja(a) !== Ja(t);\n if (n.trim)\n return a.trim() !== t.trim();\n }\n return a !== t;\n}\nvar af = { create: pu, update: pu }, nf = ra(function(e) {\n var t = {}, a = /;(?![^(]*\\))/g, n = /:(.+)/;\n return e.split(a).forEach(function(s) {\n if (s) {\n var r = s.split(n);\n r.length > 1 && (t[r[0].trim()] = r[1].trim());\n }\n }), t;\n});\nfunction ro(e) {\n var t = _c(e.style);\n return e.staticStyle ? Fe(e.staticStyle, t) : t;\n}\nfunction _c(e) {\n return Array.isArray(e) ? ql(e) : typeof e == \"string\" ? nf(e) : e;\n}\nfunction sf(e, t) {\n var a = {}, n;\n if (t)\n for (var s = e; s.componentInstance; )\n s = s.componentInstance._vnode, s && s.data && (n = ro(s.data)) && Fe(a, n);\n (n = ro(e.data)) && Fe(a, n);\n for (var r = e; r = r.parent; )\n r.data && (n = ro(r.data)) && Fe(a, n);\n return a;\n}\nvar of = /^--/, gu = /\\s*!important$/, hu = function(e, t, a) {\n if (of.test(t))\n e.style.setProperty(t, a);\n else if (gu.test(a))\n e.style.setProperty(rn(t), a.replace(gu, \"\"), \"important\");\n else {\n var n = rf(t);\n if (Array.isArray(a))\n for (var s = 0, r = a.length; s < r; s++)\n e.style[n] = a[s];\n else\n e.style[n] = a;\n }\n}, fu = [\"Webkit\", \"Moz\", \"ms\"], Tn, rf = ra(function(e) {\n if (Tn = Tn || document.createElement(\"div\").style, e = ea(e), e !== \"filter\" && e in Tn)\n return e;\n for (var t = e.charAt(0).toUpperCase() + e.slice(1), a = 0; a < fu.length; a++) {\n var n = fu[a] + t;\n if (n in Tn)\n return n;\n }\n});\nfunction vu(e, t) {\n var a = t.data, n = e.data;\n if (!(pe(a.staticStyle) && pe(a.style) && pe(n.staticStyle) && pe(n.style))) {\n var s, r, o = t.elm, i = n.staticStyle, u = n.normalizedStyle || n.style || {}, l = i || u, c = _c(t.data.style) || {};\n t.data.normalizedStyle = O(c.__ob__) ? Fe({}, c) : c;\n var d = sf(t, !0);\n for (r in l)\n pe(d[r]) && hu(o, r, \"\");\n for (r in d)\n s = d[r], s !== l[r] && hu(o, r, s ?? \"\");\n }\n}\nvar uf = { create: vu, update: vu }, Nc = /\\s+/;\nfunction Oc(e, t) {\n if (!(!t || !(t = t.trim())))\n if (e.classList)\n t.indexOf(\" \") > -1 ? t.split(Nc).forEach(function(n) {\n return e.classList.add(n);\n }) : e.classList.add(t);\n else {\n var a = \" \".concat(e.getAttribute(\"class\") || \"\", \" \");\n a.indexOf(\" \" + t + \" \") < 0 && e.setAttribute(\"class\", (a + t).trim());\n }\n}\nfunction jc(e, t) {\n if (!(!t || !(t = t.trim())))\n if (e.classList)\n t.indexOf(\" \") > -1 ? t.split(Nc).forEach(function(s) {\n return e.classList.remove(s);\n }) : e.classList.remove(t), e.classList.length || e.removeAttribute(\"class\");\n else {\n for (var a = \" \".concat(e.getAttribute(\"class\") || \"\", \" \"), n = \" \" + t + \" \"; a.indexOf(n) >= 0; )\n a = a.replace(n, \" \");\n a = a.trim(), a ? e.setAttribute(\"class\", a) : e.removeAttribute(\"class\");\n }\n}\nfunction Lc(e) {\n if (e) {\n if (typeof e == \"object\") {\n var t = {};\n return e.css !== !1 && Fe(t, Cu(e.name || \"v\")), Fe(t, e), t;\n } else if (typeof e == \"string\")\n return Cu(e);\n }\n}\nvar Cu = ra(function(e) {\n return { enterClass: \"\".concat(e, \"-enter\"), enterToClass: \"\".concat(e, \"-enter-to\"), enterActiveClass: \"\".concat(e, \"-enter-active\"), leaveClass: \"\".concat(e, \"-leave\"), leaveToClass: \"\".concat(e, \"-leave-to\"), leaveActiveClass: \"\".concat(e, \"-leave-active\") };\n}), zc = tt && !Da, va = \"transition\", io = \"animation\", qn = \"transition\", os = \"transitionend\", Zo = \"animation\", Uc = \"animationend\";\nzc && (window.ontransitionend === void 0 && window.onwebkittransitionend !== void 0 && (qn = \"WebkitTransition\", os = \"webkitTransitionEnd\"), window.onanimationend === void 0 && window.onwebkitanimationend !== void 0 && (Zo = \"WebkitAnimation\", Uc = \"webkitAnimationEnd\"));\nvar yu = tt ? window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : setTimeout : function(e) {\n return e();\n};\nfunction Mc(e) {\n yu(function() {\n yu(e);\n });\n}\nfunction Qt(e, t) {\n var a = e._transitionClasses || (e._transitionClasses = []);\n a.indexOf(t) < 0 && (a.push(t), Oc(e, t));\n}\nfunction bt(e, t) {\n e._transitionClasses && Mt(e._transitionClasses, t), jc(e, t);\n}\nfunction Rc(e, t, a) {\n var n = $c(e, t), s = n.type, r = n.timeout, o = n.propCount;\n if (!s)\n return a();\n var i = s === va ? os : Uc, u = 0, l = function() {\n e.removeEventListener(i, c), a();\n }, c = function(d) {\n d.target === e && ++u >= o && l();\n };\n setTimeout(function() {\n u < o && l();\n }, r + 1), e.addEventListener(i, c);\n}\nvar lf = /\\b(transform|all)(,|$)/;\nfunction $c(e, t) {\n var a = window.getComputedStyle(e), n = (a[qn + \"Delay\"] || \"\").split(\", \"), s = (a[qn + \"Duration\"] || \"\").split(\", \"), r = Au(n, s), o = (a[Zo + \"Delay\"] || \"\").split(\", \"), i = (a[Zo + \"Duration\"] || \"\").split(\", \"), u = Au(o, i), l, c = 0, d = 0;\n t === va ? r > 0 && (l = va, c = r, d = s.length) : t === io ? u > 0 && (l = io, c = u, d = i.length) : (c = Math.max(r, u), l = c > 0 ? r > u ? va : io : null, d = l ? l === va ? s.length : i.length : 0);\n var m = l === va && lf.test(a[qn + \"Property\"]);\n return { type: l, timeout: c, propCount: d, hasTransform: m };\n}\nfunction Au(e, t) {\n for (; e.length < t.length; )\n e = e.concat(e);\n return Math.max.apply(null, t.map(function(a, n) {\n return wu(a) + wu(e[n]);\n }));\n}\nfunction wu(e) {\n return Number(e.slice(0, -1).replace(\",\", \".\")) * 1e3;\n}\nfunction Ko(e, t) {\n var a = e.elm;\n O(a._leaveCb) && (a._leaveCb.cancelled = !0, a._leaveCb());\n var n = Lc(e.data.transition);\n if (!pe(n) && !(O(a._enterCb) || a.nodeType !== 1)) {\n for (var s = n.css, r = n.type, o = n.enterClass, i = n.enterToClass, u = n.enterActiveClass, l = n.appearClass, c = n.appearToClass, d = n.appearActiveClass, m = n.beforeEnter, p = n.enter, h = n.afterEnter, y = n.enterCancelled, P = n.beforeAppear, v = n.appear, g = n.afterAppear, b = n.appearCancelled, x = n.duration, _ = Xt, w = Xt.$vnode; w && w.parent; )\n _ = w.context, w = w.parent;\n var L = !_._isMounted || !e.isRootInsert;\n if (!(L && !v && v !== \"\")) {\n var H = L && l ? l : o, C = L && d ? d : u, E = L && c ? c : i, T = L && P || m, f = L && Pe(v) ? v : p, A = L && g || h, S = L && b || y, D = Ja(Je(x) ? x.enter : x), R = s !== !1 && !Da, B = Lr(f), F = a._enterCb = Kn(function() {\n R && (bt(a, E), bt(a, C)), F.cancelled ? (R && bt(a, H), S && S(a)) : A && A(a), a._enterCb = null;\n });\n e.data.show || Ot(e, \"insert\", function() {\n var W = a.parentNode, U = W && W._pending && W._pending[e.key];\n U && U.tag === e.tag && U.elm._leaveCb && U.elm._leaveCb(), f && f(a, F);\n }), T && T(a), R && (Qt(a, H), Qt(a, C), Mc(function() {\n bt(a, H), F.cancelled || (Qt(a, E), B || (Gc(D) ? setTimeout(F, D) : Rc(a, r, F)));\n })), e.data.show && (t && t(), f && f(a, F)), !R && !B && F();\n }\n }\n}\nfunction Ic(e, t) {\n var a = e.elm;\n O(a._enterCb) && (a._enterCb.cancelled = !0, a._enterCb());\n var n = Lc(e.data.transition);\n if (pe(n) || a.nodeType !== 1)\n return t();\n if (O(a._leaveCb))\n return;\n var s = n.css, r = n.type, o = n.leaveClass, i = n.leaveToClass, u = n.leaveActiveClass, l = n.beforeLeave, c = n.leave, d = n.afterLeave, m = n.leaveCancelled, p = n.delayLeave, h = n.duration, y = s !== !1 && !Da, P = Lr(c), v = Ja(Je(h) ? h.leave : h), g = a._leaveCb = Kn(function() {\n a.parentNode && a.parentNode._pending && (a.parentNode._pending[e.key] = null), y && (bt(a, i), bt(a, u)), g.cancelled ? (y && bt(a, o), m && m(a)) : (t(), d && d(a)), a._leaveCb = null;\n });\n p ? p(b) : b();\n function b() {\n g.cancelled || (!e.data.show && a.parentNode && ((a.parentNode._pending || (a.parentNode._pending = {}))[e.key] = e), l && l(a), y && (Qt(a, o), Qt(a, u), Mc(function() {\n bt(a, o), g.cancelled || (Qt(a, i), P || (Gc(v) ? setTimeout(g, v) : Rc(a, r, g)));\n })), c && c(a, g), !y && !P && g());\n }\n}\nfunction Gc(e) {\n return typeof e == \"number\" && !isNaN(e);\n}\nfunction Lr(e) {\n if (pe(e))\n return !1;\n var t = e.fns;\n return O(t) ? Lr(Array.isArray(t) ? t[0] : t) : (e._length || e.length) > 1;\n}\nfunction bu(e, t) {\n t.data.show !== !0 && Ko(t);\n}\nvar cf = tt ? { create: bu, activate: bu, remove: function(e, t) {\n e.data.show !== !0 ? Ic(e, t) : t();\n} } : {}, mf = [Vh, Wh, Xh, af, uf, cf], df = mf.concat(qh), pf = Rh({ nodeOps: Lh, modules: df });\nDa && document.addEventListener(\"selectionchange\", function() {\n var e = document.activeElement;\n e && e.vmodel && zr(e, \"input\");\n});\nvar Hc = { inserted: function(e, t, a, n) {\n a.tag === \"select\" ? (n.elm && !n.elm._vOptions ? Ot(a, \"postpatch\", function() {\n Hc.componentUpdated(e, t, a);\n }) : xu(e, t, a.context), e._vOptions = [].map.call(e.options, rs)) : (a.tag === \"textarea\" || Wo(e.type)) && (e._vModifiers = t.modifiers, t.modifiers.lazy || (e.addEventListener(\"compositionstart\", gf), e.addEventListener(\"compositionend\", Pu), e.addEventListener(\"change\", Pu), Da && (e.vmodel = !0)));\n}, componentUpdated: function(e, t, a) {\n if (a.tag === \"select\") {\n xu(e, t, a.context);\n var n = e._vOptions, s = e._vOptions = [].map.call(e.options, rs);\n if (s.some(function(o, i) {\n return !ta(o, n[i]);\n })) {\n var r = e.multiple ? t.value.some(function(o) {\n return Eu(o, s);\n }) : t.value !== t.oldValue && Eu(t.value, s);\n r && zr(e, \"change\");\n }\n }\n} };\nfunction xu(e, t, a) {\n ku(e, t), (Fa || Jl) && setTimeout(function() {\n ku(e, t);\n }, 0);\n}\nfunction ku(e, t, a) {\n var n = t.value, s = e.multiple;\n if (!(s && !Array.isArray(n))) {\n for (var r, o, i = 0, u = e.options.length; i < u; i++)\n if (o = e.options[i], s)\n r = Wl(n, rs(o)) > -1, o.selected !== r && (o.selected = r);\n else if (ta(rs(o), n)) {\n e.selectedIndex !== i && (e.selectedIndex = i);\n return;\n }\n s || (e.selectedIndex = -1);\n }\n}\nfunction Eu(e, t) {\n return t.every(function(a) {\n return !ta(a, e);\n });\n}\nfunction rs(e) {\n return \"_value\" in e ? e._value : e.value;\n}\nfunction gf(e) {\n e.target.composing = !0;\n}\nfunction Pu(e) {\n e.target.composing && (e.target.composing = !1, zr(e.target, \"input\"));\n}\nfunction zr(e, t) {\n var a = document.createEvent(\"HTMLEvents\");\n a.initEvent(t, !0, !0), e.dispatchEvent(a);\n}\nfunction Jo(e) {\n return e.componentInstance && (!e.data || !e.data.transition) ? Jo(e.componentInstance._vnode) : e;\n}\nvar hf = { bind: function(e, t, a) {\n var n = t.value;\n a = Jo(a);\n var s = a.data && a.data.transition, r = e.__vOriginalDisplay = e.style.display === \"none\" ? \"\" : e.style.display;\n n && s ? (a.data.show = !0, Ko(a, function() {\n e.style.display = r;\n })) : e.style.display = n ? r : \"none\";\n}, update: function(e, t, a) {\n var n = t.value, s = t.oldValue;\n if (!n != !s) {\n a = Jo(a);\n var r = a.data && a.data.transition;\n r ? (a.data.show = !0, n ? Ko(a, function() {\n e.style.display = e.__vOriginalDisplay;\n }) : Ic(a, function() {\n e.style.display = \"none\";\n })) : e.style.display = n ? e.__vOriginalDisplay : \"none\";\n }\n}, unbind: function(e, t, a, n, s) {\n s || (e.style.display = e.__vOriginalDisplay);\n} }, ff = { model: Hc, show: hf }, qc = { 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] };\nfunction Yo(e) {\n var t = e && e.componentOptions;\n return t && t.Ctor.options.abstract ? Yo(fc(t.children)) : e;\n}\nfunction Vc(e) {\n var t = {}, a = e.$options;\n for (var n in a.propsData)\n t[n] = e[n];\n var s = a._parentListeners;\n for (var n in s)\n t[ea(n)] = s[n];\n return t;\n}\nfunction Su(e, t) {\n if (/\\d-keep-alive$/.test(t.tag))\n return e(\"keep-alive\", { props: t.componentOptions.propsData });\n}\nfunction vf(e) {\n for (; e = e.parent; )\n if (e.data.transition)\n return !0;\n}\nfunction Cf(e, t) {\n return t.key === e.key && t.tag === e.tag;\n}\nvar yf = function(e) {\n return e.tag || Xa(e);\n}, Af = function(e) {\n return e.name === \"show\";\n}, wf = { name: \"transition\", props: qc, abstract: !0, render: function(e) {\n var t = this, a = this.$slots.default;\n if (a && (a = a.filter(yf), !!a.length)) {\n var n = this.mode, s = a[0];\n if (vf(this.$vnode))\n return s;\n var r = Yo(s);\n if (!r)\n return s;\n if (this._leaving)\n return Su(e, s);\n var o = \"__transition-\".concat(this._uid, \"-\");\n r.key = r.key == null ? r.isComment ? o + \"comment\" : o + r.tag : on(r.key) ? String(r.key).indexOf(o) === 0 ? r.key : o + r.key : r.key;\n var i = (r.data || (r.data = {})).transition = Vc(this), u = this._vnode, l = Yo(u);\n if (r.data.directives && r.data.directives.some(Af) && (r.data.show = !0), l && l.data && !Cf(r, l) && !Xa(l) && !(l.componentInstance && l.componentInstance._vnode.isComment)) {\n var c = l.data.transition = Fe({}, i);\n if (n === \"out-in\")\n return this._leaving = !0, Ot(c, \"afterLeave\", function() {\n t._leaving = !1, t.$forceUpdate();\n }), Su(e, s);\n if (n === \"in-out\") {\n if (Xa(r))\n return u;\n var d, m = function() {\n d();\n };\n Ot(i, \"afterEnter\", m), Ot(i, \"enterCancelled\", m), Ot(c, \"delayLeave\", function(p) {\n d = p;\n });\n }\n }\n return s;\n }\n} }, Wc = Fe({ tag: String, moveClass: String }, qc);\ndelete Wc.mode;\nvar bf = { props: Wc, beforeMount: function() {\n var e = this, t = this._update;\n this._update = function(a, n) {\n var s = wc(e);\n e.__patch__(e._vnode, e.kept, !1, !0), e._vnode = e.kept, s(), t.call(e, a, n);\n };\n}, render: function(e) {\n for (var t = this.tag || this.$vnode.data.tag || \"span\", a = /* @__PURE__ */ Object.create(null), n = this.prevChildren = this.children, s = this.$slots.default || [], r = this.children = [], o = Vc(this), i = 0; i < s.length; i++) {\n var u = s[i];\n u.tag && u.key != null && String(u.key).indexOf(\"__vlist\") !== 0 && (r.push(u), a[u.key] = u, (u.data || (u.data = {})).transition = o);\n }\n if (n) {\n for (var l = [], c = [], i = 0; i < n.length; i++) {\n var u = n[i];\n u.data.transition = o, u.data.pos = u.elm.getBoundingClientRect(), a[u.key] ? l.push(u) : c.push(u);\n }\n this.kept = e(t, null, l), this.removed = c;\n }\n return e(t, null, r);\n}, updated: function() {\n var e = this.prevChildren, t = this.moveClass || (this.name || \"v\") + \"-move\";\n !e.length || !this.hasMove(e[0].elm, t) || (e.forEach(xf), e.forEach(kf), e.forEach(Ef), this._reflow = document.body.offsetHeight, e.forEach(function(a) {\n if (a.data.moved) {\n var n = a.elm, s = n.style;\n Qt(n, t), s.transform = s.WebkitTransform = s.transitionDuration = \"\", n.addEventListener(os, n._moveCb = function r(o) {\n o && o.target !== n || (!o || /transform$/.test(o.propertyName)) && (n.removeEventListener(os, r), n._moveCb = null, bt(n, t));\n });\n }\n }));\n}, methods: { hasMove: function(e, t) {\n if (!zc)\n return !1;\n if (this._hasMove)\n return this._hasMove;\n var a = e.cloneNode();\n e._transitionClasses && e._transitionClasses.forEach(function(s) {\n jc(a, s);\n }), Oc(a, t), a.style.display = \"none\", this.$el.appendChild(a);\n var n = $c(a);\n return this.$el.removeChild(a), this._hasMove = n.hasTransform;\n} } };\nfunction xf(e) {\n e.elm._moveCb && e.elm._moveCb(), e.elm._enterCb && e.elm._enterCb();\n}\nfunction kf(e) {\n e.data.newPos = e.elm.getBoundingClientRect();\n}\nfunction Ef(e) {\n var t = e.data.pos, a = e.data.newPos, n = t.left - a.left, s = t.top - a.top;\n if (n || s) {\n e.data.moved = !0;\n var r = e.elm.style;\n r.transform = r.WebkitTransform = \"translate(\".concat(n, \"px,\").concat(s, \"px)\"), r.transitionDuration = \"0s\";\n }\n}\nvar Pf = { Transition: wf, TransitionGroup: bf };\nNe.config.mustUseProp = mh, Ne.config.isReservedTag = Dc, Ne.config.isReservedAttr = lh, Ne.config.getTagNamespace = wh, Ne.config.isUnknownElement = bh, Fe(Ne.options.directives, ff), Fe(Ne.options.components, Pf), Ne.prototype.__patch__ = tt ? pf : De, Ne.prototype.$mount = function(e, t) {\n return e = e && tt ? xh(e) : void 0, vg(this, e, t);\n}, tt && setTimeout(function() {\n rt.devtools && Jn && Jn.emit(\"init\", Ne);\n}, 0);\nconst Sf = Object.freeze(Object.defineProperty({ __proto__: null, EffectScope: Ar, computed: ap, customRef: Jd, default: Ne, defineAsyncComponent: Wp, defineComponent: ug, del: Cr, effectScope: ip, getCurrentInstance: zd, getCurrentScope: lp, h: Ip, inject: dp, isProxy: Gd, isReactive: Yt, isReadonly: ia, isRef: We, isShallow: Xn, markRaw: Hd, mergeDefaults: Op, nextTick: Es, onActivated: tg, onBeforeMount: Kp, onBeforeUnmount: Qp, onBeforeUpdate: Yp, onDeactivated: ag, onErrorCaptured: ig, onMounted: Jp, onRenderTracked: sg, onRenderTriggered: og, onScopeDispose: cp, onServerPrefetch: ng, onUnmounted: eg, onUpdated: Xp, provide: mp, proxyRefs: Kd, reactive: Id, readonly: oc, ref: qd, set: bs, shallowReactive: yr, shallowReadonly: tp, shallowRef: Vd, toRaw: ac, toRef: sc, toRefs: Yd, triggerRef: Wd, unref: Zd, useAttrs: _p, useCssModule: qp, useCssVars: Vp, useListeners: Np, useSlots: Bp, version: yc, watch: rp, watchEffect: sp, watchPostEffect: ic, watchSyncEffect: op }, Symbol.toStringTag, { value: \"Module\" }));\nvar Ia = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof global < \"u\" ? global : typeof self < \"u\" ? self : {};\nfunction mn(e) {\n return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, \"default\") ? e.default : e;\n}\nfunction Ps(e) {\n if (e.__esModule)\n return e;\n var t = e.default;\n if (typeof t == \"function\") {\n var a = function n() {\n return this instanceof n ? Reflect.construct(t, arguments, this.constructor) : t.apply(this, arguments);\n };\n a.prototype = t.prototype;\n } else\n a = {};\n return Object.defineProperty(a, \"__esModule\", { value: !0 }), Object.keys(e).forEach(function(n) {\n var s = Object.getOwnPropertyDescriptor(e, n);\n Object.defineProperty(a, n, s.get ? s : { enumerable: !0, get: function() {\n return e[n];\n } });\n }), a;\n}\nvar Zc = { exports: {} };\nconst Kc = Ps(Sf);\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 723: (o, i, u) => {\n u.d(i, { Z: () => d });\n var l = u(2734), c = u.n(l);\n const d = { before: function() {\n this.$slots.default && this.text.trim() !== \"\" || (c().util.warn(\"\".concat(this.$options.name, \" cannot be empty and requires a meaningful text content\"), this), this.$destroy(), this.$el.remove());\n }, beforeUpdate: function() {\n this.text = this.getText();\n }, data: function() {\n return { text: this.getText() };\n }, computed: { isLongText: function() {\n return this.text && this.text.trim().length > 20;\n } }, methods: { getText: function() {\n return this.$slots.default ? this.$slots.default[0].text.trim() : \"\";\n } } };\n }, 9156: (o, i, u) => {\n u.d(i, { Z: () => d });\n var l = u(723), c = u(6021);\n const d = { mixins: [l.Z], props: { icon: { type: String, default: \"\" }, name: { type: String, default: \"\" }, title: { type: String, default: \"\" }, closeAfterClick: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: \"\" }, ariaHidden: { type: Boolean, default: null } }, emits: [\"click\"], computed: { isIconUrl: function() {\n try {\n return new URL(this.icon);\n } catch {\n return !1;\n }\n } }, methods: { onClick: function(m) {\n if (this.$emit(\"click\", m), this.closeAfterClick) {\n var p = (0, c.Z)(this, \"NcActions\");\n p && p.closeMenu && p.closeMenu(!1);\n }\n } } };\n }, 6021: (o, i, u) => {\n u.d(i, { Z: () => l });\n const l = function(c, d) {\n for (var m = c.$parent; m; ) {\n if (m.$options.name === d)\n return m;\n m = m.$parent;\n }\n };\n }, 9776: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-38d8193f]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-38d8193f]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action--disabled[data-v-38d8193f]{pointer-events:none;opacity:.5}.action--disabled[data-v-38d8193f]:hover,.action--disabled[data-v-38d8193f]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-38d8193f]{opacity:1 !important}.action-button[data-v-38d8193f]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-button>span[data-v-38d8193f]{cursor:pointer;white-space:nowrap}.action-button__icon[data-v-38d8193f]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-button[data-v-38d8193f] .material-design-icon{width:44px;height:44px;opacity:1}.action-button[data-v-38d8193f] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-button p[data-v-38d8193f]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-button__longtext[data-v-38d8193f]{cursor:pointer;white-space:pre-wrap}.action-button__name[data-v-38d8193f]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/assets/action.scss\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAMF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA,CAOF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of \\`\\\\n\\`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 4216: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n }, 2734: (o) => {\n o.exports = Kc;\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => C });\n const o = { name: \"NcActionButton\", mixins: [s(9156).Z], props: { disabled: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null } }, computed: { isFocusable: function() {\n return !this.disabled;\n } } };\n var i = s(3379), u = s.n(i), l = s(7795), c = s.n(l), d = s(569), m = s.n(d), p = s(3565), h = s.n(p), y = s(9216), P = s.n(y), v = s(4589), g = s.n(v), b = s(9776), x = {};\n x.styleTagTransform = g(), x.setAttributes = h(), x.insert = m().bind(null, \"head\"), x.domAPI = c(), x.insertStyleElement = P(), u()(b.Z, x), b.Z && b.Z.locals && b.Z.locals;\n var _ = s(1900), w = s(4216), L = s.n(w), H = (0, _.Z)(o, function() {\n var E = this, T = E._self._c;\n return T(\"li\", { staticClass: \"action\", class: { \"action--disabled\": E.disabled }, attrs: { role: \"presentation\" } }, [T(\"button\", { staticClass: \"action-button\", class: { focusable: E.isFocusable }, attrs: { \"aria-label\": E.ariaLabel, title: E.title, role: \"menuitem\", type: \"button\" }, on: { click: E.onClick } }, [E._t(\"icon\", function() {\n return [T(\"span\", { staticClass: \"action-button__icon\", class: [E.isIconUrl ? \"action-button__icon--url\" : E.icon], style: { backgroundImage: E.isIconUrl ? \"url(\".concat(E.icon, \")\") : null }, attrs: { \"aria-hidden\": E.ariaHidden } })];\n }), E._v(\" \"), E.name ? T(\"p\", [T(\"strong\", { staticClass: \"action-button__name\" }, [E._v(`\n\t\t\t\t` + E._s(E.name) + `\n\t\t\t`)]), E._v(\" \"), T(\"br\"), E._v(\" \"), T(\"span\", { staticClass: \"action-button__longtext\", domProps: { textContent: E._s(E.text) } })]) : E.isLongText ? T(\"p\", { staticClass: \"action-button__longtext\", domProps: { textContent: E._s(E.text) } }) : T(\"span\", { staticClass: \"action-button__text\" }, [E._v(E._s(E.text))]), E._v(\" \"), E._e()], 2)]);\n }, [], !1, null, \"38d8193f\", null);\n typeof L() == \"function\" && L()(H);\n const C = H.exports;\n })(), r;\n })());\n})(Zc);\nvar Tf = Zc.exports;\nconst Ff = mn(Tf);\nvar Jc = { exports: {} }, uo = {}, lo, Tu;\nfunction Df() {\n if (Tu)\n return lo;\n Tu = 1;\n var e = \"Expected a function\", t = \"__lodash_hash_undefined__\", a = 1 / 0, n = \"[object Function]\", s = \"[object GeneratorFunction]\", r = \"[object Symbol]\", o = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/, i = /^\\w*$/, u = /^\\./, l = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g, c = /[\\\\^$.*+?()[\\]{}|]/g, d = /\\\\(\\\\)?/g, m = /^\\[object .+?Constructor\\]$/, p = typeof Ia == \"object\" && Ia && Ia.Object === Object && Ia, h = typeof self == \"object\" && self && self.Object === Object && self, y = p || h || Function(\"return this\")();\n function P(N, K) {\n return N?.[K];\n }\n function v(N) {\n var K = !1;\n if (N != null && typeof N.toString != \"function\")\n try {\n K = !!(N + \"\");\n } catch {\n }\n return K;\n }\n var g = Array.prototype, b = Function.prototype, x = Object.prototype, _ = y[\"__core-js_shared__\"], w = function() {\n var N = /[^.]+$/.exec(_ && _.keys && _.keys.IE_PROTO || \"\");\n return N ? \"Symbol(src)_1.\" + N : \"\";\n }(), L = b.toString, H = x.hasOwnProperty, C = x.toString, E = RegExp(\"^\" + L.call(H).replace(c, \"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, \"$1.*?\") + \"$\"), T = y.Symbol, f = g.splice, A = xe(y, \"Map\"), S = xe(Object, \"create\"), D = T ? T.prototype : void 0, R = D ? D.toString : void 0;\n function B(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function F() {\n this.__data__ = S ? S(null) : {};\n }\n function W(N) {\n return this.has(N) && delete this.__data__[N];\n }\n function U(N) {\n var K = this.__data__;\n if (S) {\n var ue = K[N];\n return ue === t ? void 0 : ue;\n }\n return H.call(K, N) ? K[N] : void 0;\n }\n function j(N) {\n var K = this.__data__;\n return S ? K[N] !== void 0 : H.call(K, N);\n }\n function ee(N, K) {\n var ue = this.__data__;\n return ue[N] = S && K === void 0 ? t : K, this;\n }\n B.prototype.clear = F, B.prototype.delete = W, B.prototype.get = U, B.prototype.has = j, B.prototype.set = ee;\n function J(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function le() {\n this.__data__ = [];\n }\n function ge(N) {\n var K = this.__data__, ue = Oe(K, N);\n if (ue < 0)\n return !1;\n var Te = K.length - 1;\n return ue == Te ? K.pop() : f.call(K, ue, 1), !0;\n }\n function fe(N) {\n var K = this.__data__, ue = Oe(K, N);\n return ue < 0 ? void 0 : K[ue][1];\n }\n function $(N) {\n return Oe(this.__data__, N) > -1;\n }\n function z(N, K) {\n var ue = this.__data__, Te = Oe(ue, N);\n return Te < 0 ? ue.push([N, K]) : ue[Te][1] = K, this;\n }\n J.prototype.clear = le, J.prototype.delete = ge, J.prototype.get = fe, J.prototype.has = $, J.prototype.set = z;\n function te(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function he() {\n this.__data__ = { hash: new B(), map: new (A || J)(), string: new B() };\n }\n function ye(N) {\n return re(this, N).delete(N);\n }\n function Be(N) {\n return re(this, N).get(N);\n }\n function je(N) {\n return re(this, N).has(N);\n }\n function Re(N, K) {\n return re(this, N).set(N, K), this;\n }\n te.prototype.clear = he, te.prototype.delete = ye, te.prototype.get = Be, te.prototype.has = je, te.prototype.set = Re;\n function Oe(N, K) {\n for (var ue = N.length; ue--; )\n if (I(N[ue][0], K))\n return ue;\n return -1;\n }\n function me(N, K) {\n K = Se(K, N) ? [K] : de(K);\n for (var ue = 0, Te = K.length; N != null && ue < Te; )\n N = N[ce(K[ue++])];\n return ue && ue == Te ? N : void 0;\n }\n function oe(N) {\n if (!se(N) || q(N))\n return !1;\n var K = ie(N) || v(N) ? E : m;\n return K.test(ne(N));\n }\n function Y(N) {\n if (typeof N == \"string\")\n return N;\n if (Ae(N))\n return R ? R.call(N) : \"\";\n var K = N + \"\";\n return K == \"0\" && 1 / N == -a ? \"-0\" : K;\n }\n function de(N) {\n return Z(N) ? N : X(N);\n }\n function re(N, K) {\n var ue = N.__data__;\n return V(K) ? ue[typeof K == \"string\" ? \"string\" : \"hash\"] : ue.map;\n }\n function xe(N, K) {\n var ue = P(N, K);\n return oe(ue) ? ue : void 0;\n }\n function Se(N, K) {\n if (Z(N))\n return !1;\n var ue = typeof N;\n return ue == \"number\" || ue == \"symbol\" || ue == \"boolean\" || N == null || Ae(N) ? !0 : i.test(N) || !o.test(N) || K != null && N in Object(K);\n }\n function V(N) {\n var K = typeof N;\n return K == \"string\" || K == \"number\" || K == \"symbol\" || K == \"boolean\" ? N !== \"__proto__\" : N === null;\n }\n function q(N) {\n return !!w && w in N;\n }\n var X = M(function(N) {\n N = Le(N);\n var K = [];\n return u.test(N) && K.push(\"\"), N.replace(l, function(ue, Te, Gt, Ht) {\n K.push(Gt ? Ht.replace(d, \"$1\") : Te || ue);\n }), K;\n });\n function ce(N) {\n if (typeof N == \"string\" || Ae(N))\n return N;\n var K = N + \"\";\n return K == \"0\" && 1 / N == -a ? \"-0\" : K;\n }\n function ne(N) {\n if (N != null) {\n try {\n return L.call(N);\n } catch {\n }\n try {\n return N + \"\";\n } catch {\n }\n }\n return \"\";\n }\n function M(N, K) {\n if (typeof N != \"function\" || K && typeof K != \"function\")\n throw new TypeError(e);\n var ue = function() {\n var Te = arguments, Gt = K ? K.apply(this, Te) : Te[0], Ht = ue.cache;\n if (Ht.has(Gt))\n return Ht.get(Gt);\n var at = N.apply(this, Te);\n return ue.cache = Ht.set(Gt, at), at;\n };\n return ue.cache = new (M.Cache || te)(), ue;\n }\n M.Cache = te;\n function I(N, K) {\n return N === K || N !== N && K !== K;\n }\n var Z = Array.isArray;\n function ie(N) {\n var K = se(N) ? C.call(N) : \"\";\n return K == n || K == s;\n }\n function se(N) {\n var K = typeof N;\n return !!N && (K == \"object\" || K == \"function\");\n }\n function Ce(N) {\n return !!N && typeof N == \"object\";\n }\n function Ae(N) {\n return typeof N == \"symbol\" || Ce(N) && C.call(N) == r;\n }\n function Le(N) {\n return N == null ? \"\" : Y(N);\n }\n function ke(N, K, ue) {\n var Te = N == null ? void 0 : me(N, K);\n return Te === void 0 ? ue : Te;\n }\n return lo = ke, lo;\n}\nvar Fu, Du;\nfunction Bf() {\n return Du || (Du = 1, Fu = { ach: { name: \"Acholi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, af: { name: \"Afrikaans\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ak: { name: \"Akan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, am: { name: \"Amharic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, an: { name: \"Aragonese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ar: { name: \"Arabic\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }, { plural: 2, sample: 2 }, { plural: 3, sample: 3 }, { plural: 4, sample: 11 }, { plural: 5, sample: 100 }], nplurals: 6, pluralsText: \"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)\", pluralsFunc: function(e) {\n return e === 0 ? 0 : e === 1 ? 1 : e === 2 ? 2 : e % 100 >= 3 && e % 100 <= 10 ? 3 : e % 100 >= 11 ? 4 : 5;\n } }, arn: { name: \"Mapudungun\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, ast: { name: \"Asturian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ay: { name: \"Aymará\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, az: { name: \"Azerbaijani\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, be: { name: \"Belarusian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, bg: { name: \"Bulgarian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bn: { name: \"Bengali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bo: { name: \"Tibetan\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, br: { name: \"Breton\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, brx: { name: \"Bodo\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bs: { name: \"Bosnian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, ca: { name: \"Catalan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, cgg: { name: \"Chiga\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, cs: { name: \"Czech\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e >= 2 && e <= 4 ? 1 : 2;\n } }, csb: { name: \"Kashubian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, cy: { name: \"Welsh\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 8 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e !== 8 && e !== 11 ? 2 : 3;\n } }, da: { name: \"Danish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, de: { name: \"German\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, doi: { name: \"Dogri\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, dz: { name: \"Dzongkha\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, el: { name: \"Greek\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, en: { name: \"English\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, eo: { name: \"Esperanto\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, es: { name: \"Spanish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, et: { name: \"Estonian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, eu: { name: \"Basque\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fa: { name: \"Persian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ff: { name: \"Fulah\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fi: { name: \"Finnish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fil: { name: \"Filipino\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, fo: { name: \"Faroese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fr: { name: \"French\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, fur: { name: \"Friulian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fy: { name: \"Frisian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ga: { name: \"Irish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 7 }, { plural: 4, sample: 11 }], nplurals: 5, pluralsText: \"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e < 7 ? 2 : e < 11 ? 3 : 4;\n } }, gd: { name: \"Scottish Gaelic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 20 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 || e === 11 ? 0 : e === 2 || e === 12 ? 1 : e > 2 && e < 20 ? 2 : 3;\n } }, gl: { name: \"Galician\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, gu: { name: \"Gujarati\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, gun: { name: \"Gun\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, ha: { name: \"Hausa\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, he: { name: \"Hebrew\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hi: { name: \"Hindi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hne: { name: \"Chhattisgarhi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hr: { name: \"Croatian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, hu: { name: \"Hungarian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hy: { name: \"Armenian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, id: { name: \"Indonesian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, is: { name: \"Icelandic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)\", pluralsFunc: function(e) {\n return e % 10 !== 1 || e % 100 === 11;\n } }, it: { name: \"Italian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ja: { name: \"Japanese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, jbo: { name: \"Lojban\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, jv: { name: \"Javanese\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 0)\", pluralsFunc: function(e) {\n return e !== 0;\n } }, ka: { name: \"Georgian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, kk: { name: \"Kazakh\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, km: { name: \"Khmer\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, kn: { name: \"Kannada\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ko: { name: \"Korean\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ku: { name: \"Kurdish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, kw: { name: \"Cornish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 4 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e === 3 ? 2 : 3;\n } }, ky: { name: \"Kyrgyz\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, lb: { name: \"Letzeburgesch\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ln: { name: \"Lingala\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, lo: { name: \"Lao\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, lt: { name: \"Lithuanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 10 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, lv: { name: \"Latvian\", examples: [{ plural: 2, sample: 0 }, { plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e !== 0 ? 1 : 2;\n } }, mai: { name: \"Maithili\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mfe: { name: \"Mauritian Creole\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mg: { name: \"Malagasy\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mi: { name: \"Maori\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mk: { name: \"Macedonian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)\", pluralsFunc: function(e) {\n return e === 1 || e % 10 === 1 ? 0 : 1;\n } }, ml: { name: \"Malayalam\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mn: { name: \"Mongolian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mni: { name: \"Manipuri\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mnk: { name: \"Mandinka\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }, { plural: 2, sample: 2 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 0 ? 0 : e === 1 ? 1 : 2;\n } }, mr: { name: \"Marathi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ms: { name: \"Malay\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, mt: { name: \"Maltese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 11 }, { plural: 3, sample: 20 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 0 || e % 100 > 1 && e % 100 < 11 ? 1 : e % 100 > 10 && e % 100 < 20 ? 2 : 3;\n } }, my: { name: \"Burmese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, nah: { name: \"Nahuatl\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nap: { name: \"Neapolitan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nb: { name: \"Norwegian Bokmal\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ne: { name: \"Nepali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nl: { name: \"Dutch\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nn: { name: \"Norwegian Nynorsk\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, no: { name: \"Norwegian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nso: { name: \"Northern Sotho\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, oc: { name: \"Occitan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, or: { name: \"Oriya\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pa: { name: \"Punjabi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pap: { name: \"Papiamento\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pl: { name: \"Polish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, pms: { name: \"Piemontese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ps: { name: \"Pashto\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pt: { name: \"Portuguese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, rm: { name: \"Romansh\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ro: { name: \"Romanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 20 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 0 || e % 100 > 0 && e % 100 < 20 ? 1 : 2;\n } }, ru: { name: \"Russian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, rw: { name: \"Kinyarwanda\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sah: { name: \"Yakut\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, sat: { name: \"Santali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sco: { name: \"Scots\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sd: { name: \"Sindhi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, se: { name: \"Northern Sami\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, si: { name: \"Sinhala\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sk: { name: \"Slovak\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e >= 2 && e <= 4 ? 1 : 2;\n } }, sl: { name: \"Slovenian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 5 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)\", pluralsFunc: function(e) {\n return e % 100 === 1 ? 0 : e % 100 === 2 ? 1 : e % 100 === 3 || e % 100 === 4 ? 2 : 3;\n } }, so: { name: \"Somali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, son: { name: \"Songhay\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sq: { name: \"Albanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sr: { name: \"Serbian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, su: { name: \"Sundanese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, sv: { name: \"Swedish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sw: { name: \"Swahili\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ta: { name: \"Tamil\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, te: { name: \"Telugu\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, tg: { name: \"Tajik\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, th: { name: \"Thai\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ti: { name: \"Tigrinya\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, tk: { name: \"Turkmen\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, tr: { name: \"Turkish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, tt: { name: \"Tatar\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ug: { name: \"Uyghur\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, uk: { name: \"Ukrainian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, ur: { name: \"Urdu\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, uz: { name: \"Uzbek\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, vi: { name: \"Vietnamese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, wa: { name: \"Walloon\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, wo: { name: \"Wolof\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, yo: { name: \"Yoruba\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, zh: { name: \"Chinese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } } }), Fu;\n}\nvar co, Bu;\nfunction _f() {\n if (Bu)\n return co;\n Bu = 1;\n var e = Df(), t = Bf();\n co = a;\n function a(n) {\n n = n || {}, this.catalogs = {}, this.locale = \"\", this.domain = \"messages\", this.listeners = [], this.sourceLocale = \"\", n.sourceLocale && (typeof n.sourceLocale == \"string\" ? this.sourceLocale = n.sourceLocale : this.warn(\"The `sourceLocale` option should be a string\")), this.debug = \"debug\" in n && n.debug === !0;\n }\n return a.prototype.on = function(n, s) {\n this.listeners.push({ eventName: n, callback: s });\n }, a.prototype.off = function(n, s) {\n this.listeners = this.listeners.filter(function(r) {\n return !(r.eventName === n && r.callback === s);\n });\n }, a.prototype.emit = function(n, s) {\n for (var r = 0; r < this.listeners.length; r++) {\n var o = this.listeners[r];\n o.eventName === n && o.callback(s);\n }\n }, a.prototype.warn = function(n) {\n this.debug && console.warn(n), this.emit(\"error\", new Error(n));\n }, a.prototype.addTranslations = function(n, s, r) {\n this.catalogs[n] || (this.catalogs[n] = {}), this.catalogs[n][s] = r;\n }, a.prototype.setLocale = function(n) {\n if (typeof n != \"string\") {\n this.warn(\"You called setLocale() with an argument of type \" + typeof n + \". The locale must be a string.\");\n return;\n }\n n.trim() === \"\" && this.warn(\"You called setLocale() with an empty value, which makes little sense.\"), n !== this.sourceLocale && !this.catalogs[n] && this.warn('You called setLocale() with \"' + n + '\", but no translations for that locale has been added.'), this.locale = n;\n }, a.prototype.setTextDomain = function(n) {\n if (typeof n != \"string\") {\n this.warn(\"You called setTextDomain() with an argument of type \" + typeof n + \". The domain must be a string.\");\n return;\n }\n n.trim() === \"\" && this.warn(\"You called setTextDomain() with an empty `domain` value.\"), this.domain = n;\n }, a.prototype.gettext = function(n) {\n return this.dnpgettext(this.domain, \"\", n);\n }, a.prototype.dgettext = function(n, s) {\n return this.dnpgettext(n, \"\", s);\n }, a.prototype.ngettext = function(n, s, r) {\n return this.dnpgettext(this.domain, \"\", n, s, r);\n }, a.prototype.dngettext = function(n, s, r, o) {\n return this.dnpgettext(n, \"\", s, r, o);\n }, a.prototype.pgettext = function(n, s) {\n return this.dnpgettext(this.domain, n, s);\n }, a.prototype.dpgettext = function(n, s, r) {\n return this.dnpgettext(n, s, r);\n }, a.prototype.npgettext = function(n, s, r, o) {\n return this.dnpgettext(this.domain, n, s, r, o);\n }, a.prototype.dnpgettext = function(n, s, r, o, i) {\n var u = r, l, c;\n if (s = s || \"\", !isNaN(i) && i !== 1 && (u = o || r), l = this._getTranslation(n, s, r), l) {\n if (typeof i == \"number\") {\n var d = t[a.getLanguageCode(this.locale)].pluralsFunc;\n c = d(i), typeof c == \"boolean\" && (c = c ? 1 : 0);\n } else\n c = 0;\n return l.msgstr[c] || u;\n } else\n (!this.sourceLocale || this.locale !== this.sourceLocale) && this.warn('No translation was found for msgid \"' + r + '\" in msgctxt \"' + s + '\" and domain \"' + n + '\"');\n return u;\n }, a.prototype.getComment = function(n, s, r) {\n var o;\n return o = this._getTranslation(n, s, r), o ? o.comments || {} : {};\n }, a.prototype._getTranslation = function(n, s, r) {\n return s = s || \"\", e(this.catalogs, [this.locale, n, \"translations\", s, r]);\n }, a.getLanguageCode = function(n) {\n return n.split(/[\\-_]/)[0].toLowerCase();\n }, a.prototype.textdomain = function(n) {\n this.debug && console.warn(`textdomain(domain) was used to set locales in node-gettext v1. Make sure you are using it for domains, and switch to setLocale(locale) if you are not.\n\n To read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x\n\nThis warning will be removed in the final 2.0.0`), this.setTextDomain(n);\n }, a.prototype.setlocale = function(n) {\n this.setLocale(n);\n }, a.prototype.addTextdomain = function() {\n console.error(`addTextdomain() is deprecated.\n\n* To add translations, use addTranslations()\n* To set the default domain, use setTextDomain() (or its alias textdomain())\n\nTo read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x`);\n }, co;\n}\nvar _u = { exports: {} }, Nu;\nfunction Nf() {\n return Nu || (Nu = 1, function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(Ia, function() {\n const { entries: a, setPrototypeOf: n, isFrozen: s, getPrototypeOf: r, getOwnPropertyDescriptor: o } = Object;\n let { freeze: i, seal: u, create: l } = Object, { apply: c, construct: d } = typeof Reflect < \"u\" && Reflect;\n c || (c = function(oe, Y, de) {\n return oe.apply(Y, de);\n }), i || (i = function(oe) {\n return oe;\n }), u || (u = function(oe) {\n return oe;\n }), d || (d = function(oe, Y) {\n return new oe(...Y);\n });\n const m = L(Array.prototype.forEach), p = L(Array.prototype.pop), h = L(Array.prototype.push), y = L(String.prototype.toLowerCase), P = L(String.prototype.toString), v = L(String.prototype.match), g = L(String.prototype.replace), b = L(String.prototype.indexOf), x = L(String.prototype.trim), _ = L(RegExp.prototype.test), w = H(TypeError);\n function L(oe) {\n return function(Y) {\n for (var de = arguments.length, re = new Array(de > 1 ? de - 1 : 0), xe = 1; xe < de; xe++)\n re[xe - 1] = arguments[xe];\n return c(oe, Y, re);\n };\n }\n function H(oe) {\n return function() {\n for (var Y = arguments.length, de = new Array(Y), re = 0; re < Y; re++)\n de[re] = arguments[re];\n return d(oe, de);\n };\n }\n function C(oe, Y, de) {\n var re;\n de = (re = de) !== null && re !== void 0 ? re : y, n && n(oe, null);\n let xe = Y.length;\n for (; xe--; ) {\n let Se = Y[xe];\n if (typeof Se == \"string\") {\n const V = de(Se);\n V !== Se && (s(Y) || (Y[xe] = V), Se = V);\n }\n oe[Se] = !0;\n }\n return oe;\n }\n function E(oe) {\n const Y = l(null);\n for (const [de, re] of a(oe))\n Y[de] = re;\n return Y;\n }\n function T(oe, Y) {\n for (; oe !== null; ) {\n const re = o(oe, Y);\n if (re) {\n if (re.get)\n return L(re.get);\n if (typeof re.value == \"function\")\n return L(re.value);\n }\n oe = r(oe);\n }\n function de(re) {\n return console.warn(\"fallback value for\", re), null;\n }\n return de;\n }\n const f = i([\"a\", \"abbr\", \"acronym\", \"address\", \"area\", \"article\", \"aside\", \"audio\", \"b\", \"bdi\", \"bdo\", \"big\", \"blink\", \"blockquote\", \"body\", \"br\", \"button\", \"canvas\", \"caption\", \"center\", \"cite\", \"code\", \"col\", \"colgroup\", \"content\", \"data\", \"datalist\", \"dd\", \"decorator\", \"del\", \"details\", \"dfn\", \"dialog\", \"dir\", \"div\", \"dl\", \"dt\", \"element\", \"em\", \"fieldset\", \"figcaption\", \"figure\", \"font\", \"footer\", \"form\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\", \"head\", \"header\", \"hgroup\", \"hr\", \"html\", \"i\", \"img\", \"input\", \"ins\", \"kbd\", \"label\", \"legend\", \"li\", \"main\", \"map\", \"mark\", \"marquee\", \"menu\", \"menuitem\", \"meter\", \"nav\", \"nobr\", \"ol\", \"optgroup\", \"option\", \"output\", \"p\", \"picture\", \"pre\", \"progress\", \"q\", \"rp\", \"rt\", \"ruby\", \"s\", \"samp\", \"section\", \"select\", \"shadow\", \"small\", \"source\", \"spacer\", \"span\", \"strike\", \"strong\", \"style\", \"sub\", \"summary\", \"sup\", \"table\", \"tbody\", \"td\", \"template\", \"textarea\", \"tfoot\", \"th\", \"thead\", \"time\", \"tr\", \"track\", \"tt\", \"u\", \"ul\", \"var\", \"video\", \"wbr\"]), A = i([\"svg\", \"a\", \"altglyph\", \"altglyphdef\", \"altglyphitem\", \"animatecolor\", \"animatemotion\", \"animatetransform\", \"circle\", \"clippath\", \"defs\", \"desc\", \"ellipse\", \"filter\", \"font\", \"g\", \"glyph\", \"glyphref\", \"hkern\", \"image\", \"line\", \"lineargradient\", \"marker\", \"mask\", \"metadata\", \"mpath\", \"path\", \"pattern\", \"polygon\", \"polyline\", \"radialgradient\", \"rect\", \"stop\", \"style\", \"switch\", \"symbol\", \"text\", \"textpath\", \"title\", \"tref\", \"tspan\", \"view\", \"vkern\"]), S = i([\"feBlend\", \"feColorMatrix\", \"feComponentTransfer\", \"feComposite\", \"feConvolveMatrix\", \"feDiffuseLighting\", \"feDisplacementMap\", \"feDistantLight\", \"feDropShadow\", \"feFlood\", \"feFuncA\", \"feFuncB\", \"feFuncG\", \"feFuncR\", \"feGaussianBlur\", \"feImage\", \"feMerge\", \"feMergeNode\", \"feMorphology\", \"feOffset\", \"fePointLight\", \"feSpecularLighting\", \"feSpotLight\", \"feTile\", \"feTurbulence\"]), D = i([\"animate\", \"color-profile\", \"cursor\", \"discard\", \"font-face\", \"font-face-format\", \"font-face-name\", \"font-face-src\", \"font-face-uri\", \"foreignobject\", \"hatch\", \"hatchpath\", \"mesh\", \"meshgradient\", \"meshpatch\", \"meshrow\", \"missing-glyph\", \"script\", \"set\", \"solidcolor\", \"unknown\", \"use\"]), R = i([\"math\", \"menclose\", \"merror\", \"mfenced\", \"mfrac\", \"mglyph\", \"mi\", \"mlabeledtr\", \"mmultiscripts\", \"mn\", \"mo\", \"mover\", \"mpadded\", \"mphantom\", \"mroot\", \"mrow\", \"ms\", \"mspace\", \"msqrt\", \"mstyle\", \"msub\", \"msup\", \"msubsup\", \"mtable\", \"mtd\", \"mtext\", \"mtr\", \"munder\", \"munderover\", \"mprescripts\"]), B = i([\"maction\", \"maligngroup\", \"malignmark\", \"mlongdiv\", \"mscarries\", \"mscarry\", \"msgroup\", \"mstack\", \"msline\", \"msrow\", \"semantics\", \"annotation\", \"annotation-xml\", \"mprescripts\", \"none\"]), F = i([\"#text\"]), W = i([\"accept\", \"action\", \"align\", \"alt\", \"autocapitalize\", \"autocomplete\", \"autopictureinpicture\", \"autoplay\", \"background\", \"bgcolor\", \"border\", \"capture\", \"cellpadding\", \"cellspacing\", \"checked\", \"cite\", \"class\", \"clear\", \"color\", \"cols\", \"colspan\", \"controls\", \"controlslist\", \"coords\", \"crossorigin\", \"datetime\", \"decoding\", \"default\", \"dir\", \"disabled\", \"disablepictureinpicture\", \"disableremoteplayback\", \"download\", \"draggable\", \"enctype\", \"enterkeyhint\", \"face\", \"for\", \"headers\", \"height\", \"hidden\", \"high\", \"href\", \"hreflang\", \"id\", \"inputmode\", \"integrity\", \"ismap\", \"kind\", \"label\", \"lang\", \"list\", \"loading\", \"loop\", \"low\", \"max\", \"maxlength\", \"media\", \"method\", \"min\", \"minlength\", \"multiple\", \"muted\", \"name\", \"nonce\", \"noshade\", \"novalidate\", \"nowrap\", \"open\", \"optimum\", \"pattern\", \"placeholder\", \"playsinline\", \"poster\", \"preload\", \"pubdate\", \"radiogroup\", \"readonly\", \"rel\", \"required\", \"rev\", \"reversed\", \"role\", \"rows\", \"rowspan\", \"spellcheck\", \"scope\", \"selected\", \"shape\", \"size\", \"sizes\", \"span\", \"srclang\", \"start\", \"src\", \"srcset\", \"step\", \"style\", \"summary\", \"tabindex\", \"title\", \"translate\", \"type\", \"usemap\", \"valign\", \"value\", \"width\", \"xmlns\", \"slot\"]), U = i([\"accent-height\", \"accumulate\", \"additive\", \"alignment-baseline\", \"ascent\", \"attributename\", \"attributetype\", \"azimuth\", \"basefrequency\", \"baseline-shift\", \"begin\", \"bias\", \"by\", \"class\", \"clip\", \"clippathunits\", \"clip-path\", \"clip-rule\", \"color\", \"color-interpolation\", \"color-interpolation-filters\", \"color-profile\", \"color-rendering\", \"cx\", \"cy\", \"d\", \"dx\", \"dy\", \"diffuseconstant\", \"direction\", \"display\", \"divisor\", \"dur\", \"edgemode\", \"elevation\", \"end\", \"fill\", \"fill-opacity\", \"fill-rule\", \"filter\", \"filterunits\", \"flood-color\", \"flood-opacity\", \"font-family\", \"font-size\", \"font-size-adjust\", \"font-stretch\", \"font-style\", \"font-variant\", \"font-weight\", \"fx\", \"fy\", \"g1\", \"g2\", \"glyph-name\", \"glyphref\", \"gradientunits\", \"gradienttransform\", \"height\", \"href\", \"id\", \"image-rendering\", \"in\", \"in2\", \"k\", \"k1\", \"k2\", \"k3\", \"k4\", \"kerning\", \"keypoints\", \"keysplines\", \"keytimes\", \"lang\", \"lengthadjust\", \"letter-spacing\", \"kernelmatrix\", \"kernelunitlength\", \"lighting-color\", \"local\", \"marker-end\", \"marker-mid\", \"marker-start\", \"markerheight\", \"markerunits\", \"markerwidth\", \"maskcontentunits\", \"maskunits\", \"max\", \"mask\", \"media\", \"method\", \"mode\", \"min\", \"name\", \"numoctaves\", \"offset\", \"operator\", \"opacity\", \"order\", \"orient\", \"orientation\", \"origin\", \"overflow\", \"paint-order\", \"path\", \"pathlength\", \"patterncontentunits\", \"patterntransform\", \"patternunits\", \"points\", \"preservealpha\", \"preserveaspectratio\", \"primitiveunits\", \"r\", \"rx\", \"ry\", \"radius\", \"refx\", \"refy\", \"repeatcount\", \"repeatdur\", \"restart\", \"result\", \"rotate\", \"scale\", \"seed\", \"shape-rendering\", \"specularconstant\", \"specularexponent\", \"spreadmethod\", \"startoffset\", \"stddeviation\", \"stitchtiles\", \"stop-color\", \"stop-opacity\", \"stroke-dasharray\", \"stroke-dashoffset\", \"stroke-linecap\", \"stroke-linejoin\", \"stroke-miterlimit\", \"stroke-opacity\", \"stroke\", \"stroke-width\", \"style\", \"surfacescale\", \"systemlanguage\", \"tabindex\", \"targetx\", \"targety\", \"transform\", \"transform-origin\", \"text-anchor\", \"text-decoration\", \"text-rendering\", \"textlength\", \"type\", \"u1\", \"u2\", \"unicode\", \"values\", \"viewbox\", \"visibility\", \"version\", \"vert-adv-y\", \"vert-origin-x\", \"vert-origin-y\", \"width\", \"word-spacing\", \"wrap\", \"writing-mode\", \"xchannelselector\", \"ychannelselector\", \"x\", \"x1\", \"x2\", \"xmlns\", \"y\", \"y1\", \"y2\", \"z\", \"zoomandpan\"]), j = i([\"accent\", \"accentunder\", \"align\", \"bevelled\", \"close\", \"columnsalign\", \"columnlines\", \"columnspan\", \"denomalign\", \"depth\", \"dir\", \"display\", \"displaystyle\", \"encoding\", \"fence\", \"frame\", \"height\", \"href\", \"id\", \"largeop\", \"length\", \"linethickness\", \"lspace\", \"lquote\", \"mathbackground\", \"mathcolor\", \"mathsize\", \"mathvariant\", \"maxsize\", \"minsize\", \"movablelimits\", \"notation\", \"numalign\", \"open\", \"rowalign\", \"rowlines\", \"rowspacing\", \"rowspan\", \"rspace\", \"rquote\", \"scriptlevel\", \"scriptminsize\", \"scriptsizemultiplier\", \"selection\", \"separator\", \"separators\", \"stretchy\", \"subscriptshift\", \"supscriptshift\", \"symmetric\", \"voffset\", \"width\", \"xmlns\"]), ee = i([\"xlink:href\", \"xml:id\", \"xlink:title\", \"xml:space\", \"xmlns:xlink\"]), J = u(/\\{\\{[\\w\\W]*|[\\w\\W]*\\}\\}/gm), le = u(/<%[\\w\\W]*|[\\w\\W]*%>/gm), ge = u(/\\${[\\w\\W]*}/gm), fe = u(/^data-[\\-\\w.\\u00B7-\\uFFFF]/), $ = u(/^aria-[\\-\\w]+$/), z = u(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\\-]+(?:[^a-z+.\\-:]|$))/i), te = u(/^(?:\\w+script|data):/i), he = u(/[\\u0000-\\u0020\\u00A0\\u1680\\u180E\\u2000-\\u2029\\u205F\\u3000]/g), ye = u(/^html$/i);\n var Be = Object.freeze({ __proto__: null, MUSTACHE_EXPR: J, ERB_EXPR: le, TMPLIT_EXPR: ge, DATA_ATTR: fe, ARIA_ATTR: $, IS_ALLOWED_URI: z, IS_SCRIPT_OR_DATA: te, ATTR_WHITESPACE: he, DOCTYPE_NAME: ye });\n const je = () => typeof window > \"u\" ? null : window, Re = function(oe, Y) {\n if (typeof oe != \"object\" || typeof oe.createPolicy != \"function\")\n return null;\n let de = null;\n const re = \"data-tt-policy-suffix\";\n Y && Y.hasAttribute(re) && (de = Y.getAttribute(re));\n const xe = \"dompurify\" + (de ? \"#\" + de : \"\");\n try {\n return oe.createPolicy(xe, { createHTML(Se) {\n return Se;\n }, createScriptURL(Se) {\n return Se;\n } });\n } catch {\n return console.warn(\"TrustedTypes policy \" + xe + \" could not be created.\"), null;\n }\n };\n function Oe() {\n let oe = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : je();\n const Y = (k) => Oe(k);\n if (Y.version = \"3.0.5\", Y.removed = [], !oe || !oe.document || oe.document.nodeType !== 9)\n return Y.isSupported = !1, Y;\n const de = oe.document, re = de.currentScript;\n let { document: xe } = oe;\n const { DocumentFragment: Se, HTMLTemplateElement: V, Node: q, Element: X, NodeFilter: ce, NamedNodeMap: ne = oe.NamedNodeMap || oe.MozNamedAttrMap, HTMLFormElement: M, DOMParser: I, trustedTypes: Z } = oe, ie = X.prototype, se = T(ie, \"cloneNode\"), Ce = T(ie, \"nextSibling\"), Ae = T(ie, \"childNodes\"), Le = T(ie, \"parentNode\");\n if (typeof V == \"function\") {\n const k = xe.createElement(\"template\");\n k.content && k.content.ownerDocument && (xe = k.content.ownerDocument);\n }\n let ke, N = \"\";\n const { implementation: K, createNodeIterator: ue, createDocumentFragment: Te, getElementsByTagName: Gt } = xe, { importNode: Ht } = de;\n let at = {};\n Y.isSupported = typeof a == \"function\" && typeof Le == \"function\" && K && K.createHTMLDocument !== void 0;\n const { MUSTACHE_EXPR: js, ERB_EXPR: Ls, TMPLIT_EXPR: zs, DATA_ATTR: Om, ARIA_ATTR: jm, IS_SCRIPT_OR_DATA: Lm, ATTR_WHITESPACE: Vr } = Be;\n let { IS_ALLOWED_URI: Wr } = Be, Ge = null;\n const Zr = C({}, [...f, ...A, ...S, ...R, ...F]);\n let He = null;\n const Kr = C({}, [...W, ...U, ...j, ...ee]);\n let ze = Object.seal(Object.create(null, { tagNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, attributeNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, allowCustomizedBuiltInElements: { writable: !0, configurable: !1, enumerable: !0, value: !1 } })), Oa = null, Us = null, Jr = !0, Ms = !0, Yr = !1, Xr = !0, ua = !1, qt = !1, Rs = !1, $s = !1, la = !1, gn = !1, hn = !1, Qr = !0, ei = !1;\n const zm = \"user-content-\";\n let Is = !0, ja = !1, ca = {}, ma = null;\n const ti = C({}, [\"annotation-xml\", \"audio\", \"colgroup\", \"desc\", \"foreignobject\", \"head\", \"iframe\", \"math\", \"mi\", \"mn\", \"mo\", \"ms\", \"mtext\", \"noembed\", \"noframes\", \"noscript\", \"plaintext\", \"script\", \"style\", \"svg\", \"template\", \"thead\", \"title\", \"video\", \"xmp\"]);\n let ai = null;\n const ni = C({}, [\"audio\", \"video\", \"img\", \"source\", \"image\", \"track\"]);\n let Gs = null;\n const si = C({}, [\"alt\", \"class\", \"for\", \"id\", \"label\", \"name\", \"pattern\", \"placeholder\", \"role\", \"summary\", \"title\", \"value\", \"style\", \"xmlns\"]), fn = \"http://www.w3.org/1998/Math/MathML\", vn = \"http://www.w3.org/2000/svg\", Ct = \"http://www.w3.org/1999/xhtml\";\n let da = Ct, Hs = !1, qs = null;\n const Um = C({}, [fn, vn, Ct], P);\n let Vt;\n const Mm = [\"application/xhtml+xml\", \"text/html\"], Rm = \"text/html\";\n let qe, pa = null;\n const $m = xe.createElement(\"form\"), oi = function(k) {\n return k instanceof RegExp || k instanceof Function;\n }, Vs = function(k) {\n if (!(pa && pa === k)) {\n if ((!k || typeof k != \"object\") && (k = {}), k = E(k), Vt = Mm.indexOf(k.PARSER_MEDIA_TYPE) === -1 ? Vt = Rm : Vt = k.PARSER_MEDIA_TYPE, qe = Vt === \"application/xhtml+xml\" ? P : y, Ge = \"ALLOWED_TAGS\" in k ? C({}, k.ALLOWED_TAGS, qe) : Zr, He = \"ALLOWED_ATTR\" in k ? C({}, k.ALLOWED_ATTR, qe) : Kr, qs = \"ALLOWED_NAMESPACES\" in k ? C({}, k.ALLOWED_NAMESPACES, P) : Um, Gs = \"ADD_URI_SAFE_ATTR\" in k ? C(E(si), k.ADD_URI_SAFE_ATTR, qe) : si, ai = \"ADD_DATA_URI_TAGS\" in k ? C(E(ni), k.ADD_DATA_URI_TAGS, qe) : ni, ma = \"FORBID_CONTENTS\" in k ? C({}, k.FORBID_CONTENTS, qe) : ti, Oa = \"FORBID_TAGS\" in k ? C({}, k.FORBID_TAGS, qe) : {}, Us = \"FORBID_ATTR\" in k ? C({}, k.FORBID_ATTR, qe) : {}, ca = \"USE_PROFILES\" in k ? k.USE_PROFILES : !1, Jr = k.ALLOW_ARIA_ATTR !== !1, Ms = k.ALLOW_DATA_ATTR !== !1, Yr = k.ALLOW_UNKNOWN_PROTOCOLS || !1, Xr = k.ALLOW_SELF_CLOSE_IN_ATTR !== !1, ua = k.SAFE_FOR_TEMPLATES || !1, qt = k.WHOLE_DOCUMENT || !1, la = k.RETURN_DOM || !1, gn = k.RETURN_DOM_FRAGMENT || !1, hn = k.RETURN_TRUSTED_TYPE || !1, $s = k.FORCE_BODY || !1, Qr = k.SANITIZE_DOM !== !1, ei = k.SANITIZE_NAMED_PROPS || !1, Is = k.KEEP_CONTENT !== !1, ja = k.IN_PLACE || !1, Wr = k.ALLOWED_URI_REGEXP || z, da = k.NAMESPACE || Ct, ze = k.CUSTOM_ELEMENT_HANDLING || {}, k.CUSTOM_ELEMENT_HANDLING && oi(k.CUSTOM_ELEMENT_HANDLING.tagNameCheck) && (ze.tagNameCheck = k.CUSTOM_ELEMENT_HANDLING.tagNameCheck), k.CUSTOM_ELEMENT_HANDLING && oi(k.CUSTOM_ELEMENT_HANDLING.attributeNameCheck) && (ze.attributeNameCheck = k.CUSTOM_ELEMENT_HANDLING.attributeNameCheck), k.CUSTOM_ELEMENT_HANDLING && typeof k.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements == \"boolean\" && (ze.allowCustomizedBuiltInElements = k.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements), ua && (Ms = !1), gn && (la = !0), ca && (Ge = C({}, [...F]), He = [], ca.html === !0 && (C(Ge, f), C(He, W)), ca.svg === !0 && (C(Ge, A), C(He, U), C(He, ee)), ca.svgFilters === !0 && (C(Ge, S), C(He, U), C(He, ee)), ca.mathMl === !0 && (C(Ge, R), C(He, j), C(He, ee))), k.ADD_TAGS && (Ge === Zr && (Ge = E(Ge)), C(Ge, k.ADD_TAGS, qe)), k.ADD_ATTR && (He === Kr && (He = E(He)), C(He, k.ADD_ATTR, qe)), k.ADD_URI_SAFE_ATTR && C(Gs, k.ADD_URI_SAFE_ATTR, qe), k.FORBID_CONTENTS && (ma === ti && (ma = E(ma)), C(ma, k.FORBID_CONTENTS, qe)), Is && (Ge[\"#text\"] = !0), qt && C(Ge, [\"html\", \"head\", \"body\"]), Ge.table && (C(Ge, [\"tbody\"]), delete Oa.tbody), k.TRUSTED_TYPES_POLICY) {\n if (typeof k.TRUSTED_TYPES_POLICY.createHTML != \"function\")\n throw w('TRUSTED_TYPES_POLICY configuration option must provide a \"createHTML\" hook.');\n if (typeof k.TRUSTED_TYPES_POLICY.createScriptURL != \"function\")\n throw w('TRUSTED_TYPES_POLICY configuration option must provide a \"createScriptURL\" hook.');\n ke = k.TRUSTED_TYPES_POLICY, N = ke.createHTML(\"\");\n } else\n ke === void 0 && (ke = Re(Z, re)), ke !== null && typeof N == \"string\" && (N = ke.createHTML(\"\"));\n i && i(k), pa = k;\n }\n }, ri = C({}, [\"mi\", \"mo\", \"mn\", \"ms\", \"mtext\"]), ii = C({}, [\"foreignobject\", \"desc\", \"title\", \"annotation-xml\"]), Im = C({}, [\"title\", \"style\", \"font\", \"a\", \"script\"]), Cn = C({}, A);\n C(Cn, S), C(Cn, D);\n const Ws = C({}, R);\n C(Ws, B);\n const Gm = function(k) {\n let ae = Le(k);\n (!ae || !ae.tagName) && (ae = { namespaceURI: da, tagName: \"template\" });\n const Q = y(k.tagName), Ee = y(ae.tagName);\n return qs[k.namespaceURI] ? k.namespaceURI === vn ? ae.namespaceURI === Ct ? Q === \"svg\" : ae.namespaceURI === fn ? Q === \"svg\" && (Ee === \"annotation-xml\" || ri[Ee]) : !!Cn[Q] : k.namespaceURI === fn ? ae.namespaceURI === Ct ? Q === \"math\" : ae.namespaceURI === vn ? Q === \"math\" && ii[Ee] : !!Ws[Q] : k.namespaceURI === Ct ? ae.namespaceURI === vn && !ii[Ee] || ae.namespaceURI === fn && !ri[Ee] ? !1 : !Ws[Q] && (Im[Q] || !Cn[Q]) : !!(Vt === \"application/xhtml+xml\" && qs[k.namespaceURI]) : !1;\n }, ga = function(k) {\n h(Y.removed, { element: k });\n try {\n k.parentNode.removeChild(k);\n } catch {\n k.remove();\n }\n }, Zs = function(k, ae) {\n try {\n h(Y.removed, { attribute: ae.getAttributeNode(k), from: ae });\n } catch {\n h(Y.removed, { attribute: null, from: ae });\n }\n if (ae.removeAttribute(k), k === \"is\" && !He[k])\n if (la || gn)\n try {\n ga(ae);\n } catch {\n }\n else\n try {\n ae.setAttribute(k, \"\");\n } catch {\n }\n }, ui = function(k) {\n let ae, Q;\n if ($s)\n k = \"\" + k;\n else {\n const Ye = v(k, /^[\\r\\n\\t ]+/);\n Q = Ye && Ye[0];\n }\n Vt === \"application/xhtml+xml\" && da === Ct && (k = '' + k + \"\");\n const Ee = ke ? ke.createHTML(k) : k;\n if (da === Ct)\n try {\n ae = new I().parseFromString(Ee, Vt);\n } catch {\n }\n if (!ae || !ae.documentElement) {\n ae = K.createDocument(da, \"template\", null);\n try {\n ae.documentElement.innerHTML = Hs ? N : Ee;\n } catch {\n }\n }\n const $e = ae.body || ae.documentElement;\n return k && Q && $e.insertBefore(xe.createTextNode(Q), $e.childNodes[0] || null), da === Ct ? Gt.call(ae, qt ? \"html\" : \"body\")[0] : qt ? ae.documentElement : $e;\n }, li = function(k) {\n return ue.call(k.ownerDocument || k, k, ce.SHOW_ELEMENT | ce.SHOW_COMMENT | ce.SHOW_TEXT, null, !1);\n }, Hm = function(k) {\n return k instanceof M && (typeof k.nodeName != \"string\" || typeof k.textContent != \"string\" || typeof k.removeChild != \"function\" || !(k.attributes instanceof ne) || typeof k.removeAttribute != \"function\" || typeof k.setAttribute != \"function\" || typeof k.namespaceURI != \"string\" || typeof k.insertBefore != \"function\" || typeof k.hasChildNodes != \"function\");\n }, yn = function(k) {\n return typeof q == \"object\" ? k instanceof q : k && typeof k == \"object\" && typeof k.nodeType == \"number\" && typeof k.nodeName == \"string\";\n }, yt = function(k, ae, Q) {\n at[k] && m(at[k], (Ee) => {\n Ee.call(Y, ae, Q, pa);\n });\n }, ci = function(k) {\n let ae;\n if (yt(\"beforeSanitizeElements\", k, null), Hm(k))\n return ga(k), !0;\n const Q = qe(k.nodeName);\n if (yt(\"uponSanitizeElement\", k, { tagName: Q, allowedTags: Ge }), k.hasChildNodes() && !yn(k.firstElementChild) && (!yn(k.content) || !yn(k.content.firstElementChild)) && _(/<[/\\w]/g, k.innerHTML) && _(/<[/\\w]/g, k.textContent))\n return ga(k), !0;\n if (!Ge[Q] || Oa[Q]) {\n if (!Oa[Q] && di(Q) && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, Q) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(Q)))\n return !1;\n if (Is && !ma[Q]) {\n const Ee = Le(k) || k.parentNode, $e = Ae(k) || k.childNodes;\n if ($e && Ee) {\n const Ye = $e.length;\n for (let et = Ye - 1; et >= 0; --et)\n Ee.insertBefore(se($e[et], !0), Ce(k));\n }\n }\n return ga(k), !0;\n }\n return k instanceof X && !Gm(k) || (Q === \"noscript\" || Q === \"noembed\" || Q === \"noframes\") && _(/<\\/no(script|embed|frames)/i, k.innerHTML) ? (ga(k), !0) : (ua && k.nodeType === 3 && (ae = k.textContent, ae = g(ae, js, \" \"), ae = g(ae, Ls, \" \"), ae = g(ae, zs, \" \"), k.textContent !== ae && (h(Y.removed, { element: k.cloneNode() }), k.textContent = ae)), yt(\"afterSanitizeElements\", k, null), !1);\n }, mi = function(k, ae, Q) {\n if (Qr && (ae === \"id\" || ae === \"name\") && (Q in xe || Q in $m))\n return !1;\n if (!(Ms && !Us[ae] && _(Om, ae)) && !(Jr && _(jm, ae))) {\n if (!He[ae] || Us[ae]) {\n if (!(di(k) && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, k) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(k)) && (ze.attributeNameCheck instanceof RegExp && _(ze.attributeNameCheck, ae) || ze.attributeNameCheck instanceof Function && ze.attributeNameCheck(ae)) || ae === \"is\" && ze.allowCustomizedBuiltInElements && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, Q) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(Q))))\n return !1;\n } else if (!Gs[ae] && !_(Wr, g(Q, Vr, \"\")) && !((ae === \"src\" || ae === \"xlink:href\" || ae === \"href\") && k !== \"script\" && b(Q, \"data:\") === 0 && ai[k]) && !(Yr && !_(Lm, g(Q, Vr, \"\"))) && Q)\n return !1;\n }\n return !0;\n }, di = function(k) {\n return k.indexOf(\"-\") > 0;\n }, pi = function(k) {\n let ae, Q, Ee, $e;\n yt(\"beforeSanitizeAttributes\", k, null);\n const { attributes: Ye } = k;\n if (!Ye)\n return;\n const et = { attrName: \"\", attrValue: \"\", keepAttr: !0, allowedAttributes: He };\n for ($e = Ye.length; $e--; ) {\n ae = Ye[$e];\n const { name: Ve, namespaceURI: ha } = ae;\n if (Q = Ve === \"value\" ? ae.value : x(ae.value), Ee = qe(Ve), et.attrName = Ee, et.attrValue = Q, et.keepAttr = !0, et.forceKeepAttr = void 0, yt(\"uponSanitizeAttribute\", k, et), Q = et.attrValue, et.forceKeepAttr || (Zs(Ve, k), !et.keepAttr))\n continue;\n if (!Xr && _(/\\/>/i, Q)) {\n Zs(Ve, k);\n continue;\n }\n ua && (Q = g(Q, js, \" \"), Q = g(Q, Ls, \" \"), Q = g(Q, zs, \" \"));\n const gi = qe(k.nodeName);\n if (mi(gi, Ee, Q)) {\n if (ei && (Ee === \"id\" || Ee === \"name\") && (Zs(Ve, k), Q = zm + Q), ke && typeof Z == \"object\" && typeof Z.getAttributeType == \"function\" && !ha)\n switch (Z.getAttributeType(gi, Ee)) {\n case \"TrustedHTML\": {\n Q = ke.createHTML(Q);\n break;\n }\n case \"TrustedScriptURL\": {\n Q = ke.createScriptURL(Q);\n break;\n }\n }\n try {\n ha ? k.setAttributeNS(ha, Ve, Q) : k.setAttribute(Ve, Q), p(Y.removed);\n } catch {\n }\n }\n }\n yt(\"afterSanitizeAttributes\", k, null);\n }, qm = function k(ae) {\n let Q;\n const Ee = li(ae);\n for (yt(\"beforeSanitizeShadowDOM\", ae, null); Q = Ee.nextNode(); )\n yt(\"uponSanitizeShadowNode\", Q, null), !ci(Q) && (Q.content instanceof Se && k(Q.content), pi(Q));\n yt(\"afterSanitizeShadowDOM\", ae, null);\n };\n return Y.sanitize = function(k) {\n let ae = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, Q, Ee, $e, Ye;\n if (Hs = !k, Hs && (k = \"\"), typeof k != \"string\" && !yn(k))\n if (typeof k.toString == \"function\") {\n if (k = k.toString(), typeof k != \"string\")\n throw w(\"dirty is not a string, aborting\");\n } else\n throw w(\"toString is not a function\");\n if (!Y.isSupported)\n return k;\n if (Rs || Vs(ae), Y.removed = [], typeof k == \"string\" && (ja = !1), ja) {\n if (k.nodeName) {\n const ha = qe(k.nodeName);\n if (!Ge[ha] || Oa[ha])\n throw w(\"root node is forbidden and cannot be sanitized in-place\");\n }\n } else if (k instanceof q)\n Q = ui(\"\"), Ee = Q.ownerDocument.importNode(k, !0), Ee.nodeType === 1 && Ee.nodeName === \"BODY\" || Ee.nodeName === \"HTML\" ? Q = Ee : Q.appendChild(Ee);\n else {\n if (!la && !ua && !qt && k.indexOf(\"<\") === -1)\n return ke && hn ? ke.createHTML(k) : k;\n if (Q = ui(k), !Q)\n return la ? null : hn ? N : \"\";\n }\n Q && $s && ga(Q.firstChild);\n const et = li(ja ? k : Q);\n for (; $e = et.nextNode(); )\n ci($e) || ($e.content instanceof Se && qm($e.content), pi($e));\n if (ja)\n return k;\n if (la) {\n if (gn)\n for (Ye = Te.call(Q.ownerDocument); Q.firstChild; )\n Ye.appendChild(Q.firstChild);\n else\n Ye = Q;\n return (He.shadowroot || He.shadowrootmode) && (Ye = Ht.call(de, Ye, !0)), Ye;\n }\n let Ve = qt ? Q.outerHTML : Q.innerHTML;\n return qt && Ge[\"!doctype\"] && Q.ownerDocument && Q.ownerDocument.doctype && Q.ownerDocument.doctype.name && _(ye, Q.ownerDocument.doctype.name) && (Ve = \"\n` + Ve), ua && (Ve = g(Ve, js, \" \"), Ve = g(Ve, Ls, \" \"), Ve = g(Ve, zs, \" \")), ke && hn ? ke.createHTML(Ve) : Ve;\n }, Y.setConfig = function(k) {\n Vs(k), Rs = !0;\n }, Y.clearConfig = function() {\n pa = null, Rs = !1;\n }, Y.isValidAttribute = function(k, ae, Q) {\n pa || Vs({});\n const Ee = qe(k), $e = qe(ae);\n return mi(Ee, $e, Q);\n }, Y.addHook = function(k, ae) {\n typeof ae == \"function\" && (at[k] = at[k] || [], h(at[k], ae));\n }, Y.removeHook = function(k) {\n if (at[k])\n return p(at[k]);\n }, Y.removeHooks = function(k) {\n at[k] && (at[k] = []);\n }, Y.removeAllHooks = function() {\n at = {};\n }, Y;\n }\n var me = Oe();\n return me;\n });\n }(_u)), _u.exports;\n}\nvar Ou;\nfunction Yc() {\n if (Ou)\n return uo;\n Ou = 1;\n var e = _f();\n Nf();\n function t() {\n return document.documentElement.lang || \"en\";\n }\n class a {\n constructor() {\n this.translations = {}, this.debug = !1;\n }\n setLanguage(o) {\n return this.locale = o, this;\n }\n detectLocale() {\n return this.setLanguage(t().replace(\"-\", \"_\"));\n }\n addTranslation(o, i) {\n return this.translations[o] = i, this;\n }\n enableDebugMode() {\n return this.debug = !0, this;\n }\n build() {\n return new n(this.locale || \"en\", this.translations, this.debug);\n }\n }\n class n {\n constructor(o, i, u) {\n this.gt = new e({ debug: u, sourceLocale: \"en\" });\n for (const l in i)\n this.gt.addTranslations(l, \"messages\", i[l]);\n this.gt.setLocale(o);\n }\n subtitudePlaceholders(o, i) {\n return o.replace(/{([^{}]*)}/g, (u, l) => {\n const c = i[l];\n return typeof c == \"string\" || typeof c == \"number\" ? c.toString() : u;\n });\n }\n gettext(o, i = {}) {\n return this.subtitudePlaceholders(this.gt.gettext(o), i);\n }\n ngettext(o, i, u, l = {}) {\n return this.subtitudePlaceholders(this.gt.ngettext(o, i, u).replace(/%n/g, u.toString()), l);\n }\n }\n function s() {\n return new a();\n }\n return uo.getGettextBuilder = s, uo;\n}\nfunction Tt(e) {\n return e.split(\"-\")[0];\n}\nfunction ba(e) {\n return e.split(\"-\")[1];\n}\nfunction dn(e) {\n return [\"top\", \"bottom\"].includes(Tt(e)) ? \"x\" : \"y\";\n}\nfunction Ur(e) {\n return e === \"y\" ? \"height\" : \"width\";\n}\nfunction ju(e) {\n let { reference: t, floating: a, placement: n } = e;\n const s = t.x + t.width / 2 - a.width / 2, r = t.y + t.height / 2 - a.height / 2;\n let o;\n switch (Tt(n)) {\n case \"top\":\n o = { x: s, y: t.y - a.height };\n break;\n case \"bottom\":\n o = { x: s, y: t.y + t.height };\n break;\n case \"right\":\n o = { x: t.x + t.width, y: r };\n break;\n case \"left\":\n o = { x: t.x - a.width, y: r };\n break;\n default:\n o = { x: t.x, y: t.y };\n }\n const i = dn(n), u = Ur(i);\n switch (ba(n)) {\n case \"start\":\n o[i] = o[i] - (t[u] / 2 - a[u] / 2);\n break;\n case \"end\":\n o[i] = o[i] + (t[u] / 2 - a[u] / 2);\n break;\n }\n return o;\n}\nconst Of = async (e, t, a) => {\n const { placement: n = \"bottom\", strategy: s = \"absolute\", middleware: r = [], platform: o } = a;\n let i = await o.getElementRects({ reference: e, floating: t, strategy: s }), { x: u, y: l } = ju({ ...i, placement: n }), c = n, d = {};\n for (let m = 0; m < r.length; m++) {\n const { name: p, fn: h } = r[m], { x: y, y: P, data: v, reset: g } = await h({ x: u, y: l, initialPlacement: n, placement: c, strategy: s, middlewareData: d, rects: i, platform: o, elements: { reference: e, floating: t } });\n if (u = y ?? u, l = P ?? l, d = { ...d, [p]: v ?? {} }, g) {\n typeof g == \"object\" && (g.placement && (c = g.placement), g.rects && (i = g.rects === !0 ? await o.getElementRects({ reference: e, floating: t, strategy: s }) : g.rects), { x: u, y: l } = ju({ ...i, placement: c })), m = -1;\n continue;\n }\n }\n return { x: u, y: l, placement: c, strategy: s, middlewareData: d };\n};\nfunction jf(e) {\n return { top: 0, right: 0, bottom: 0, left: 0, ...e };\n}\nfunction Xc(e) {\n return typeof e != \"number\" ? jf(e) : { top: e, right: e, bottom: e, left: e };\n}\nfunction Xo(e) {\n return { ...e, top: e.y, left: e.x, right: e.x + e.width, bottom: e.y + e.height };\n}\nasync function Ss(e, t) {\n t === void 0 && (t = {});\n const { x: a, y: n, platform: s, rects: r, elements: o, strategy: i } = e, { boundary: u = \"clippingParents\", rootBoundary: l = \"viewport\", elementContext: c = \"floating\", altBoundary: d = !1, padding: m = 0 } = t, p = Xc(m), h = o[d ? c === \"floating\" ? \"reference\" : \"floating\" : c], y = await s.getClippingClientRect({ element: await s.isElement(h) ? h : h.contextElement || await s.getDocumentElement({ element: o.floating }), boundary: u, rootBoundary: l }), P = Xo(await s.convertOffsetParentRelativeRectToViewportRelativeRect({ rect: c === \"floating\" ? { ...r.floating, x: a, y: n } : r.reference, offsetParent: await s.getOffsetParent({ element: o.floating }), strategy: i }));\n return { top: y.top - P.top + p.top, bottom: P.bottom - y.bottom + p.bottom, left: y.left - P.left + p.left, right: P.right - y.right + p.right };\n}\nconst Lf = Math.min, Kt = Math.max;\nfunction Qo(e, t, a) {\n return Kt(e, Lf(t, a));\n}\nconst zf = (e) => ({ name: \"arrow\", options: e, async fn(t) {\n const { element: a, padding: n = 0 } = e ?? {}, { x: s, y: r, placement: o, rects: i, platform: u } = t;\n if (a == null)\n return {};\n const l = Xc(n), c = { x: s, y: r }, d = Tt(o), m = dn(d), p = Ur(m), h = await u.getDimensions({ element: a }), y = m === \"y\" ? \"top\" : \"left\", P = m === \"y\" ? \"bottom\" : \"right\", v = i.reference[p] + i.reference[m] - c[m] - i.floating[p], g = c[m] - i.reference[m], b = await u.getOffsetParent({ element: a }), x = b ? m === \"y\" ? b.clientHeight || 0 : b.clientWidth || 0 : 0, _ = v / 2 - g / 2, w = l[y], L = x - h[p] - l[P], H = x / 2 - h[p] / 2 + _, C = Qo(w, H, L);\n return { data: { [m]: C, centerOffset: H - C } };\n} }), Uf = { left: \"right\", right: \"left\", bottom: \"top\", top: \"bottom\" };\nfunction is(e) {\n return e.replace(/left|right|bottom|top/g, (t) => Uf[t]);\n}\nfunction Qc(e, t) {\n const a = ba(e) === \"start\", n = dn(e), s = Ur(n);\n let r = n === \"x\" ? a ? \"right\" : \"left\" : a ? \"bottom\" : \"top\";\n return t.reference[s] > t.floating[s] && (r = is(r)), { main: r, cross: is(r) };\n}\nconst Mf = { start: \"end\", end: \"start\" };\nfunction er(e) {\n return e.replace(/start|end/g, (t) => Mf[t]);\n}\nconst Rf = [\"top\", \"right\", \"bottom\", \"left\"], $f = Rf.reduce((e, t) => e.concat(t, t + \"-start\", t + \"-end\"), []);\nfunction If(e, t, a) {\n return (e ? [...a.filter((n) => ba(n) === e), ...a.filter((n) => ba(n) !== e)] : a.filter((n) => Tt(n) === n)).filter((n) => e ? ba(n) === e || (t ? er(n) !== n : !1) : !0);\n}\nconst Gf = function(e) {\n return e === void 0 && (e = {}), { name: \"autoPlacement\", options: e, async fn(t) {\n var a, n, s, r, o, i;\n const { x: u, y: l, rects: c, middlewareData: d, placement: m } = t, { alignment: p = null, allowedPlacements: h = $f, autoAlignment: y = !0, ...P } = e;\n if ((a = d.autoPlacement) != null && a.skip)\n return {};\n const v = If(p, y, h), g = await Ss(t, P), b = (n = (s = d.autoPlacement) == null ? void 0 : s.index) != null ? n : 0, x = v[b], { main: _, cross: w } = Qc(x, c);\n if (m !== x)\n return { x: u, y: l, reset: { placement: v[0] } };\n const L = [g[Tt(x)], g[_], g[w]], H = [...(r = (o = d.autoPlacement) == null ? void 0 : o.overflows) != null ? r : [], { placement: x, overflows: L }], C = v[b + 1];\n if (C)\n return { data: { index: b + 1, overflows: H }, reset: { placement: C } };\n const E = H.slice().sort((f, A) => f.overflows[0] - A.overflows[0]), T = (i = E.find((f) => {\n let { overflows: A } = f;\n return A.every((S) => S <= 0);\n })) == null ? void 0 : i.placement;\n return { data: { skip: !0 }, reset: { placement: T ?? E[0].placement } };\n } };\n};\nfunction Hf(e) {\n const t = is(e);\n return [er(e), t, er(t)];\n}\nconst qf = function(e) {\n return e === void 0 && (e = {}), { name: \"flip\", options: e, async fn(t) {\n var a, n;\n const { placement: s, middlewareData: r, rects: o, initialPlacement: i } = t;\n if ((a = r.flip) != null && a.skip)\n return {};\n const { mainAxis: u = !0, crossAxis: l = !0, fallbackPlacements: c, fallbackStrategy: d = \"bestFit\", flipAlignment: m = !0, ...p } = e, h = Tt(s), y = c || (h === i || !m ? [is(i)] : Hf(i)), P = [i, ...y], v = await Ss(t, p), g = [];\n let b = ((n = r.flip) == null ? void 0 : n.overflows) || [];\n if (u && g.push(v[h]), l) {\n const { main: L, cross: H } = Qc(s, o);\n g.push(v[L], v[H]);\n }\n if (b = [...b, { placement: s, overflows: g }], !g.every((L) => L <= 0)) {\n var x, _;\n const L = ((x = (_ = r.flip) == null ? void 0 : _.index) != null ? x : 0) + 1, H = P[L];\n if (H)\n return { data: { index: L, overflows: b }, reset: { placement: H } };\n let C = \"bottom\";\n switch (d) {\n case \"bestFit\": {\n var w;\n const E = (w = b.slice().sort((T, f) => T.overflows.filter((A) => A > 0).reduce((A, S) => A + S, 0) - f.overflows.filter((A) => A > 0).reduce((A, S) => A + S, 0))[0]) == null ? void 0 : w.placement;\n E && (C = E);\n break;\n }\n case \"initialPlacement\":\n C = i;\n break;\n }\n return { data: { skip: !0 }, reset: { placement: C } };\n }\n return {};\n } };\n};\nfunction Vf(e) {\n let { placement: t, rects: a, value: n } = e;\n const s = Tt(t), r = [\"left\", \"top\"].includes(s) ? -1 : 1, o = typeof n == \"function\" ? n({ ...a, placement: t }) : n, { mainAxis: i, crossAxis: u } = typeof o == \"number\" ? { mainAxis: o, crossAxis: 0 } : { mainAxis: 0, crossAxis: 0, ...o };\n return dn(s) === \"x\" ? { x: u, y: i * r } : { x: i * r, y: u };\n}\nconst Wf = function(e) {\n return e === void 0 && (e = 0), { name: \"offset\", options: e, fn(t) {\n const { x: a, y: n, placement: s, rects: r } = t, o = Vf({ placement: s, rects: r, value: e });\n return { x: a + o.x, y: n + o.y, data: o };\n } };\n};\nfunction Zf(e) {\n return e === \"x\" ? \"y\" : \"x\";\n}\nconst Kf = function(e) {\n return e === void 0 && (e = {}), { name: \"shift\", options: e, async fn(t) {\n const { x: a, y: n, placement: s } = t, { mainAxis: r = !0, crossAxis: o = !1, limiter: i = { fn: (P) => {\n let { x: v, y: g } = P;\n return { x: v, y: g };\n } }, ...u } = e, l = { x: a, y: n }, c = await Ss(t, u), d = dn(Tt(s)), m = Zf(d);\n let p = l[d], h = l[m];\n if (r) {\n const P = d === \"y\" ? \"top\" : \"left\", v = d === \"y\" ? \"bottom\" : \"right\", g = p + c[P], b = p - c[v];\n p = Qo(g, p, b);\n }\n if (o) {\n const P = m === \"y\" ? \"top\" : \"left\", v = m === \"y\" ? \"bottom\" : \"right\", g = h + c[P], b = h - c[v];\n h = Qo(g, h, b);\n }\n const y = i.fn({ ...t, [d]: p, [m]: h });\n return { ...y, data: { x: y.x - a, y: y.y - n } };\n } };\n}, Jf = function(e) {\n return e === void 0 && (e = {}), { name: \"size\", options: e, async fn(t) {\n var a;\n const { placement: n, rects: s, middlewareData: r } = t, { apply: o, ...i } = e;\n if ((a = r.size) != null && a.skip)\n return {};\n const u = await Ss(t, i), l = Tt(n), c = ba(n) === \"end\";\n let d, m;\n l === \"top\" || l === \"bottom\" ? (d = l, m = c ? \"left\" : \"right\") : (m = l, d = c ? \"top\" : \"bottom\");\n const p = Kt(u.left, 0), h = Kt(u.right, 0), y = Kt(u.top, 0), P = Kt(u.bottom, 0), v = { height: s.floating.height - ([\"left\", \"right\"].includes(n) ? 2 * (y !== 0 || P !== 0 ? y + P : Kt(u.top, u.bottom)) : u[d]), width: s.floating.width - ([\"top\", \"bottom\"].includes(n) ? 2 * (p !== 0 || h !== 0 ? p + h : Kt(u.left, u.right)) : u[m]) };\n return o?.({ ...v, ...s }), { data: { skip: !0 }, reset: { rects: !0 } };\n } };\n};\nfunction Mr(e) {\n return e?.toString() === \"[object Window]\";\n}\nfunction $t(e) {\n if (e == null)\n return window;\n if (!Mr(e)) {\n const t = e.ownerDocument;\n return t && t.defaultView || window;\n }\n return e;\n}\nfunction Ts(e) {\n return $t(e).getComputedStyle(e);\n}\nfunction Pt(e) {\n return Mr(e) ? \"\" : e ? (e.nodeName || \"\").toLowerCase() : \"\";\n}\nfunction St(e) {\n return e instanceof $t(e).HTMLElement;\n}\nfunction us(e) {\n return e instanceof $t(e).Element;\n}\nfunction Yf(e) {\n return e instanceof $t(e).Node;\n}\nfunction em(e) {\n const t = $t(e).ShadowRoot;\n return e instanceof t || e instanceof ShadowRoot;\n}\nfunction Fs(e) {\n const { overflow: t, overflowX: a, overflowY: n } = Ts(e);\n return /auto|scroll|overlay|hidden/.test(t + n + a);\n}\nfunction Xf(e) {\n return [\"table\", \"td\", \"th\"].includes(Pt(e));\n}\nfunction tm(e) {\n const t = navigator.userAgent.toLowerCase().includes(\"firefox\"), a = Ts(e);\n return a.transform !== \"none\" || a.perspective !== \"none\" || a.contain === \"paint\" || [\"transform\", \"perspective\"].includes(a.willChange) || t && a.willChange === \"filter\" || t && (a.filter ? a.filter !== \"none\" : !1);\n}\nconst Lu = Math.min, qa = Math.max, ls = Math.round;\nfunction Pa(e, t) {\n t === void 0 && (t = !1);\n const a = e.getBoundingClientRect();\n let n = 1, s = 1;\n return t && St(e) && (n = e.offsetWidth > 0 && ls(a.width) / e.offsetWidth || 1, s = e.offsetHeight > 0 && ls(a.height) / e.offsetHeight || 1), { width: a.width / n, height: a.height / s, top: a.top / s, right: a.right / n, bottom: a.bottom / s, left: a.left / n, x: a.left / n, y: a.top / s };\n}\nfunction It(e) {\n return ((Yf(e) ? e.ownerDocument : e.document) || window.document).documentElement;\n}\nfunction Ds(e) {\n return Mr(e) ? { scrollLeft: e.pageXOffset, scrollTop: e.pageYOffset } : { scrollLeft: e.scrollLeft, scrollTop: e.scrollTop };\n}\nfunction am(e) {\n return Pa(It(e)).left + Ds(e).scrollLeft;\n}\nfunction Qf(e) {\n const t = Pa(e);\n return ls(t.width) !== e.offsetWidth || ls(t.height) !== e.offsetHeight;\n}\nfunction e4(e, t, a) {\n const n = St(t), s = It(t), r = Pa(e, n && Qf(t));\n let o = { scrollLeft: 0, scrollTop: 0 };\n const i = { x: 0, y: 0 };\n if (n || !n && a !== \"fixed\")\n if ((Pt(t) !== \"body\" || Fs(s)) && (o = Ds(t)), St(t)) {\n const u = Pa(t, !0);\n i.x = u.x + t.clientLeft, i.y = u.y + t.clientTop;\n } else\n s && (i.x = am(s));\n return { x: r.left + o.scrollLeft - i.x, y: r.top + o.scrollTop - i.y, width: r.width, height: r.height };\n}\nfunction Bs(e) {\n return Pt(e) === \"html\" ? e : e.assignedSlot || e.parentNode || (em(e) ? e.host : null) || It(e);\n}\nfunction zu(e) {\n return !St(e) || getComputedStyle(e).position === \"fixed\" ? null : e.offsetParent;\n}\nfunction t4(e) {\n let t = Bs(e);\n for (; St(t) && ![\"html\", \"body\"].includes(Pt(t)); ) {\n if (tm(t))\n return t;\n t = t.parentNode;\n }\n return null;\n}\nfunction tr(e) {\n const t = $t(e);\n let a = zu(e);\n for (; a && Xf(a) && getComputedStyle(a).position === \"static\"; )\n a = zu(a);\n return a && (Pt(a) === \"html\" || Pt(a) === \"body\" && getComputedStyle(a).position === \"static\" && !tm(a)) ? t : a || t4(e) || t;\n}\nfunction Uu(e) {\n return { width: e.offsetWidth, height: e.offsetHeight };\n}\nfunction a4(e) {\n let { rect: t, offsetParent: a, strategy: n } = e;\n const s = St(a), r = It(a);\n if (a === r)\n return t;\n let o = { scrollLeft: 0, scrollTop: 0 };\n const i = { x: 0, y: 0 };\n if ((s || !s && n !== \"fixed\") && ((Pt(a) !== \"body\" || Fs(r)) && (o = Ds(a)), St(a))) {\n const u = Pa(a, !0);\n i.x = u.x + a.clientLeft, i.y = u.y + a.clientTop;\n }\n return { ...t, x: t.x - o.scrollLeft + i.x, y: t.y - o.scrollTop + i.y };\n}\nfunction n4(e) {\n const t = $t(e), a = It(e), n = t.visualViewport;\n let s = a.clientWidth, r = a.clientHeight, o = 0, i = 0;\n return n && (s = n.width, r = n.height, Math.abs(t.innerWidth / n.scale - n.width) < 0.01 && (o = n.offsetLeft, i = n.offsetTop)), { width: s, height: r, x: o, y: i };\n}\nfunction s4(e) {\n var t;\n const a = It(e), n = Ds(e), s = (t = e.ownerDocument) == null ? void 0 : t.body, r = qa(a.scrollWidth, a.clientWidth, s ? s.scrollWidth : 0, s ? s.clientWidth : 0), o = qa(a.scrollHeight, a.clientHeight, s ? s.scrollHeight : 0, s ? s.clientHeight : 0);\n let i = -n.scrollLeft + am(e);\n const u = -n.scrollTop;\n return Ts(s || a).direction === \"rtl\" && (i += qa(a.clientWidth, s ? s.clientWidth : 0) - r), { width: r, height: o, x: i, y: u };\n}\nfunction nm(e) {\n return [\"html\", \"body\", \"#document\"].includes(Pt(e)) ? e.ownerDocument.body : St(e) && Fs(e) ? e : nm(Bs(e));\n}\nfunction cs(e, t) {\n var a;\n t === void 0 && (t = []);\n const n = nm(e), s = n === ((a = e.ownerDocument) == null ? void 0 : a.body), r = $t(n), o = s ? [r].concat(r.visualViewport || [], Fs(n) ? n : []) : n, i = t.concat(o);\n return s ? i : i.concat(cs(Bs(o)));\n}\nfunction o4(e, t) {\n const a = t.getRootNode == null ? void 0 : t.getRootNode();\n if (e.contains(t))\n return !0;\n if (a && em(a)) {\n let n = t;\n do {\n if (n && e === n)\n return !0;\n n = n.parentNode || n.host;\n } while (n);\n }\n return !1;\n}\nfunction r4(e) {\n const t = Pa(e), a = t.top + e.clientTop, n = t.left + e.clientLeft;\n return { top: a, left: n, x: n, y: a, right: n + e.clientWidth, bottom: a + e.clientHeight, width: e.clientWidth, height: e.clientHeight };\n}\nfunction Mu(e, t) {\n return t === \"viewport\" ? Xo(n4(e)) : us(t) ? r4(t) : Xo(s4(It(e)));\n}\nfunction i4(e) {\n const t = cs(Bs(e)), a = [\"absolute\", \"fixed\"].includes(Ts(e).position) && St(e) ? tr(e) : e;\n return us(a) ? t.filter((n) => us(n) && o4(n, a) && Pt(n) !== \"body\") : [];\n}\nfunction u4(e) {\n let { element: t, boundary: a, rootBoundary: n } = e;\n const s = [...a === \"clippingParents\" ? i4(t) : [].concat(a), n], r = s[0], o = s.reduce((i, u) => {\n const l = Mu(t, u);\n return i.top = qa(l.top, i.top), i.right = Lu(l.right, i.right), i.bottom = Lu(l.bottom, i.bottom), i.left = qa(l.left, i.left), i;\n }, Mu(t, r));\n return o.width = o.right - o.left, o.height = o.bottom - o.top, o.x = o.left, o.y = o.top, o;\n}\nconst l4 = { getElementRects: (e) => {\n let { reference: t, floating: a, strategy: n } = e;\n return { reference: e4(t, tr(a), n), floating: { ...Uu(a), x: 0, y: 0 } };\n}, convertOffsetParentRelativeRectToViewportRelativeRect: (e) => a4(e), getOffsetParent: (e) => {\n let { element: t } = e;\n return tr(t);\n}, isElement: (e) => us(e), getDocumentElement: (e) => {\n let { element: t } = e;\n return It(t);\n}, getClippingClientRect: (e) => u4(e), getDimensions: (e) => {\n let { element: t } = e;\n return Uu(t);\n}, getClientRects: (e) => {\n let { element: t } = e;\n return t.getClientRects();\n} }, c4 = (e, t, a) => Of(e, t, { platform: l4, ...a });\nvar m4 = Object.defineProperty, d4 = Object.defineProperties, p4 = Object.getOwnPropertyDescriptors, ms = Object.getOwnPropertySymbols, sm = Object.prototype.hasOwnProperty, om = Object.prototype.propertyIsEnumerable, Ru = (e, t, a) => t in e ? m4(e, t, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[t] = a, Nt = (e, t) => {\n for (var a in t || (t = {}))\n sm.call(t, a) && Ru(e, a, t[a]);\n if (ms)\n for (var a of ms(t))\n om.call(t, a) && Ru(e, a, t[a]);\n return e;\n}, _s = (e, t) => d4(e, p4(t)), g4 = (e, t) => {\n var a = {};\n for (var n in e)\n sm.call(e, n) && t.indexOf(n) < 0 && (a[n] = e[n]);\n if (e != null && ms)\n for (var n of ms(e))\n t.indexOf(n) < 0 && om.call(e, n) && (a[n] = e[n]);\n return a;\n};\nfunction rm(e, t) {\n for (const a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (typeof t[a] == \"object\" && e[a] ? rm(e[a], t[a]) : e[a] = t[a]);\n}\nconst ht = { disabled: !1, distance: 5, skidding: 0, container: \"body\", boundary: void 0, instantMove: !1, disposeTimeout: 5e3, popperTriggers: [], strategy: \"absolute\", preventOverflow: !0, flip: !0, shift: !0, overflowPadding: 0, arrowPadding: 0, arrowOverflow: !0, themes: { tooltip: { placement: \"top\", triggers: [\"hover\", \"focus\", \"touch\"], hideTriggers: (e) => [...e, \"click\"], delay: { show: 200, hide: 0 }, handleResize: !1, html: !1, loadingContent: \"...\" }, dropdown: { placement: \"bottom\", triggers: [\"click\"], delay: 0, handleResize: !0, autoHide: !0 }, menu: { $extend: \"dropdown\", triggers: [\"hover\", \"focus\"], popperTriggers: [\"hover\", \"focus\"], delay: { show: 0, hide: 400 } } } };\nfunction Sa(e, t) {\n let a = ht.themes[e] || {}, n;\n do\n n = a[t], typeof n > \"u\" ? a.$extend ? a = ht.themes[a.$extend] || {} : (a = null, n = ht[t]) : a = null;\n while (a);\n return n;\n}\nfunction h4(e) {\n const t = [e];\n let a = ht.themes[e] || {};\n do\n a.$extend && !a.$resetCss ? (t.push(a.$extend), a = ht.themes[a.$extend] || {}) : a = null;\n while (a);\n return t.map((n) => `v-popper--theme-${n}`);\n}\nfunction $u(e) {\n const t = [e];\n let a = ht.themes[e] || {};\n do\n a.$extend ? (t.push(a.$extend), a = ht.themes[a.$extend] || {}) : a = null;\n while (a);\n return t;\n}\nlet sa = !1;\nif (typeof window < \"u\") {\n sa = !1;\n try {\n const e = Object.defineProperty({}, \"passive\", { get() {\n sa = !0;\n } });\n window.addEventListener(\"test\", null, e);\n } catch {\n }\n}\nlet im = !1;\ntypeof window < \"u\" && typeof navigator < \"u\" && (im = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream);\nconst Rr = [\"auto\", \"top\", \"bottom\", \"left\", \"right\"].reduce((e, t) => e.concat([t, `${t}-start`, `${t}-end`]), []), ar = { hover: \"mouseenter\", focus: \"focus\", click: \"click\", touch: \"touchstart\" }, nr = { hover: \"mouseleave\", focus: \"blur\", click: \"click\", touch: \"touchend\" };\nfunction Iu(e, t) {\n const a = e.indexOf(t);\n a !== -1 && e.splice(a, 1);\n}\nfunction mo() {\n return new Promise((e) => requestAnimationFrame(() => {\n requestAnimationFrame(e);\n }));\n}\nconst nt = [];\nlet Zt = null;\nconst Gu = {};\nfunction Hu(e) {\n let t = Gu[e];\n return t || (t = Gu[e] = []), t;\n}\nlet sr = function() {\n};\ntypeof window < \"u\" && (sr = window.Element);\nfunction we(e) {\n return function() {\n const t = this.$props;\n return Sa(t.theme, e);\n };\n}\nconst po = \"__floating-vue__popper\";\nvar $r = () => ({ name: \"VPopper\", props: { theme: { type: String, required: !0 }, targetNodes: { type: Function, required: !0 }, referenceNode: { type: Function, required: !0 }, popperNode: { type: Function, required: !0 }, shown: { type: Boolean, default: !1 }, showGroup: { type: String, default: null }, ariaId: { default: null }, disabled: { type: Boolean, default: we(\"disabled\") }, positioningDisabled: { type: Boolean, default: we(\"positioningDisabled\") }, placement: { type: String, default: we(\"placement\"), validator: (e) => Rr.includes(e) }, delay: { type: [String, Number, Object], default: we(\"delay\") }, distance: { type: [Number, String], default: we(\"distance\") }, skidding: { type: [Number, String], default: we(\"skidding\") }, triggers: { type: Array, default: we(\"triggers\") }, showTriggers: { type: [Array, Function], default: we(\"showTriggers\") }, hideTriggers: { type: [Array, Function], default: we(\"hideTriggers\") }, popperTriggers: { type: Array, default: we(\"popperTriggers\") }, popperShowTriggers: { type: [Array, Function], default: we(\"popperShowTriggers\") }, popperHideTriggers: { type: [Array, Function], default: we(\"popperHideTriggers\") }, container: { type: [String, Object, sr, Boolean], default: we(\"container\") }, boundary: { type: [String, sr], default: we(\"boundary\") }, strategy: { type: String, validator: (e) => [\"absolute\", \"fixed\"].includes(e), default: we(\"strategy\") }, autoHide: { type: [Boolean, Function], default: we(\"autoHide\") }, handleResize: { type: Boolean, default: we(\"handleResize\") }, instantMove: { type: Boolean, default: we(\"instantMove\") }, eagerMount: { type: Boolean, default: we(\"eagerMount\") }, popperClass: { type: [String, Array, Object], default: we(\"popperClass\") }, computeTransformOrigin: { type: Boolean, default: we(\"computeTransformOrigin\") }, autoMinSize: { type: Boolean, default: we(\"autoMinSize\") }, autoSize: { type: [Boolean, String], default: we(\"autoSize\") }, autoMaxSize: { type: Boolean, default: we(\"autoMaxSize\") }, autoBoundaryMaxSize: { type: Boolean, default: we(\"autoBoundaryMaxSize\") }, preventOverflow: { type: Boolean, default: we(\"preventOverflow\") }, overflowPadding: { type: [Number, String], default: we(\"overflowPadding\") }, arrowPadding: { type: [Number, String], default: we(\"arrowPadding\") }, arrowOverflow: { type: Boolean, default: we(\"arrowOverflow\") }, flip: { type: Boolean, default: we(\"flip\") }, shift: { type: Boolean, default: we(\"shift\") }, shiftCrossAxis: { type: Boolean, default: we(\"shiftCrossAxis\") }, noAutoFocus: { type: Boolean, default: we(\"noAutoFocus\") } }, provide() {\n return { [po]: { parentPopper: this } };\n}, inject: { [po]: { default: null } }, data() {\n return { isShown: !1, isMounted: !1, skipTransition: !1, classes: { showFrom: !1, showTo: !1, hideFrom: !1, hideTo: !0 }, result: { x: 0, y: 0, placement: \"\", strategy: this.strategy, arrow: { x: 0, y: 0, centerOffset: 0 }, transformOrigin: null }, shownChildren: /* @__PURE__ */ new Set(), lastAutoHide: !0 };\n}, computed: { popperId() {\n return this.ariaId != null ? this.ariaId : this.randomId;\n}, shouldMountContent() {\n return this.eagerMount || this.isMounted;\n}, slotData() {\n return { popperId: this.popperId, isShown: this.isShown, shouldMountContent: this.shouldMountContent, skipTransition: this.skipTransition, autoHide: typeof this.autoHide == \"function\" ? this.lastAutoHide : this.autoHide, show: this.show, hide: this.hide, handleResize: this.handleResize, onResize: this.onResize, classes: _s(Nt({}, this.classes), { popperClass: this.popperClass }), result: this.positioningDisabled ? null : this.result };\n}, parentPopper() {\n var e;\n return (e = this[po]) == null ? void 0 : e.parentPopper;\n}, hasPopperShowTriggerHover() {\n var e, t;\n return ((e = this.popperTriggers) == null ? void 0 : e.includes(\"hover\")) || ((t = this.popperShowTriggers) == null ? void 0 : t.includes(\"hover\"));\n} }, watch: Nt(Nt({ shown: \"$_autoShowHide\", disabled(e) {\n e ? this.dispose() : this.init();\n}, async container() {\n this.isShown && (this.$_ensureTeleport(), await this.$_computePosition());\n} }, [\"triggers\", \"positioningDisabled\"].reduce((e, t) => (e[t] = \"$_refreshListeners\", e), {})), [\"placement\", \"distance\", \"skidding\", \"boundary\", \"strategy\", \"overflowPadding\", \"arrowPadding\", \"preventOverflow\", \"shift\", \"shiftCrossAxis\", \"flip\"].reduce((e, t) => (e[t] = \"$_computePosition\", e), {})), created() {\n this.$_isDisposed = !0, this.randomId = `popper_${[Math.random(), Date.now()].map((e) => e.toString(36).substring(2, 10)).join(\"_\")}`, this.autoMinSize && console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize=\"min\"` instead.'), this.autoMaxSize && console.warn(\"[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.\");\n}, mounted() {\n this.init(), this.$_detachPopperNode();\n}, activated() {\n this.$_autoShowHide();\n}, deactivated() {\n this.hide();\n}, beforeDestroy() {\n this.dispose();\n}, methods: { show({ event: e = null, skipDelay: t = !1, force: a = !1 } = {}) {\n var n, s;\n (n = this.parentPopper) != null && n.lockedChild && this.parentPopper.lockedChild !== this || (this.$_pendingHide = !1, (a || !this.disabled) && (((s = this.parentPopper) == null ? void 0 : s.lockedChild) === this && (this.parentPopper.lockedChild = null), this.$_scheduleShow(e, t), this.$emit(\"show\"), this.$_showFrameLocked = !0, requestAnimationFrame(() => {\n this.$_showFrameLocked = !1;\n })), this.$emit(\"update:shown\", !0));\n}, hide({ event: e = null, skipDelay: t = !1, skipAiming: a = !1 } = {}) {\n var n;\n if (!this.$_hideInProgress) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0;\n return;\n }\n if (!a && this.hasPopperShowTriggerHover && this.$_isAimingPopper()) {\n this.parentPopper && (this.parentPopper.lockedChild = this, clearTimeout(this.parentPopper.lockedChildTimer), this.parentPopper.lockedChildTimer = setTimeout(() => {\n this.parentPopper.lockedChild === this && (this.parentPopper.lockedChild.hide({ skipDelay: t }), this.parentPopper.lockedChild = null);\n }, 1e3));\n return;\n }\n ((n = this.parentPopper) == null ? void 0 : n.lockedChild) === this && (this.parentPopper.lockedChild = null), this.$_pendingHide = !1, this.$_scheduleHide(e, t), this.$emit(\"hide\"), this.$emit(\"update:shown\", !1);\n }\n}, init() {\n this.$_isDisposed && (this.$_isDisposed = !1, this.isMounted = !1, this.$_events = [], this.$_preventShow = !1, this.$_referenceNode = this.referenceNode(), this.$_targetNodes = this.targetNodes().filter((e) => e.nodeType === e.ELEMENT_NODE), this.$_popperNode = this.popperNode(), this.$_innerNode = this.$_popperNode.querySelector(\".v-popper__inner\"), this.$_arrowNode = this.$_popperNode.querySelector(\".v-popper__arrow-container\"), this.$_swapTargetAttrs(\"title\", \"data-original-title\"), this.$_detachPopperNode(), this.triggers.length && this.$_addEventListeners(), this.shown && this.show());\n}, dispose() {\n this.$_isDisposed || (this.$_isDisposed = !0, this.$_removeEventListeners(), this.hide({ skipDelay: !0 }), this.$_detachPopperNode(), this.isMounted = !1, this.isShown = !1, this.$_updateParentShownChildren(!1), this.$_swapTargetAttrs(\"data-original-title\", \"title\"), this.$emit(\"dispose\"));\n}, async onResize() {\n this.isShown && (await this.$_computePosition(), this.$emit(\"resize\"));\n}, async $_computePosition() {\n var e;\n if (this.$_isDisposed || this.positioningDisabled)\n return;\n const t = { strategy: this.strategy, middleware: [] };\n (this.distance || this.skidding) && t.middleware.push(Wf({ mainAxis: this.distance, crossAxis: this.skidding }));\n const a = this.placement.startsWith(\"auto\");\n if (a ? t.middleware.push(Gf({ alignment: (e = this.placement.split(\"-\")[1]) != null ? e : \"\" })) : t.placement = this.placement, this.preventOverflow && (this.shift && t.middleware.push(Kf({ padding: this.overflowPadding, boundary: this.boundary, crossAxis: this.shiftCrossAxis })), !a && this.flip && t.middleware.push(qf({ padding: this.overflowPadding, boundary: this.boundary }))), t.middleware.push(zf({ element: this.$_arrowNode, padding: this.arrowPadding })), this.arrowOverflow && t.middleware.push({ name: \"arrowOverflow\", fn: ({ placement: s, rects: r, middlewareData: o }) => {\n let i;\n const { centerOffset: u } = o.arrow;\n return s.startsWith(\"top\") || s.startsWith(\"bottom\") ? i = Math.abs(u) > r.reference.width / 2 : i = Math.abs(u) > r.reference.height / 2, { data: { overflow: i } };\n } }), this.autoMinSize || this.autoSize) {\n const s = this.autoSize ? this.autoSize : this.autoMinSize ? \"min\" : null;\n t.middleware.push({ name: \"autoSize\", fn: ({ rects: r, placement: o, middlewareData: i }) => {\n var u;\n if ((u = i.autoSize) != null && u.skip)\n return {};\n let l, c;\n return o.startsWith(\"top\") || o.startsWith(\"bottom\") ? l = r.reference.width : c = r.reference.height, this.$_innerNode.style[s === \"min\" ? \"minWidth\" : s === \"max\" ? \"maxWidth\" : \"width\"] = l != null ? `${l}px` : null, this.$_innerNode.style[s === \"min\" ? \"minHeight\" : s === \"max\" ? \"maxHeight\" : \"height\"] = c != null ? `${c}px` : null, { data: { skip: !0 }, reset: { rects: !0 } };\n } });\n }\n (this.autoMaxSize || this.autoBoundaryMaxSize) && (this.$_innerNode.style.maxWidth = null, this.$_innerNode.style.maxHeight = null, t.middleware.push(Jf({ boundary: this.boundary, padding: this.overflowPadding, apply: ({ width: s, height: r }) => {\n this.$_innerNode.style.maxWidth = s != null ? `${s}px` : null, this.$_innerNode.style.maxHeight = r != null ? `${r}px` : null;\n } })));\n const n = await c4(this.$_referenceNode, this.$_popperNode, t);\n Object.assign(this.result, { x: n.x, y: n.y, placement: n.placement, strategy: n.strategy, arrow: Nt(Nt({}, n.middlewareData.arrow), n.middlewareData.arrowOverflow) });\n}, $_scheduleShow(e = null, t = !1) {\n if (this.$_updateParentShownChildren(!0), this.$_hideInProgress = !1, clearTimeout(this.$_scheduleTimer), Zt && this.instantMove && Zt.instantMove && Zt !== this.parentPopper) {\n Zt.$_applyHide(!0), this.$_applyShow(!0);\n return;\n }\n t ? this.$_applyShow() : this.$_scheduleTimer = setTimeout(this.$_applyShow.bind(this), this.$_computeDelay(\"show\"));\n}, $_scheduleHide(e = null, t = !1) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0;\n return;\n }\n this.$_updateParentShownChildren(!1), this.$_hideInProgress = !0, clearTimeout(this.$_scheduleTimer), this.isShown && (Zt = this), t ? this.$_applyHide() : this.$_scheduleTimer = setTimeout(this.$_applyHide.bind(this), this.$_computeDelay(\"hide\"));\n}, $_computeDelay(e) {\n const t = this.delay;\n return parseInt(t && t[e] || t || 0);\n}, async $_applyShow(e = !1) {\n clearTimeout(this.$_disposeTimer), clearTimeout(this.$_scheduleTimer), this.skipTransition = e, !this.isShown && (this.$_ensureTeleport(), await mo(), await this.$_computePosition(), await this.$_applyShowEffect(), this.positioningDisabled || this.$_registerEventListeners([...cs(this.$_referenceNode), ...cs(this.$_popperNode)], \"scroll\", () => {\n this.$_computePosition();\n }));\n}, async $_applyShowEffect() {\n if (this.$_hideInProgress)\n return;\n if (this.computeTransformOrigin) {\n const t = this.$_referenceNode.getBoundingClientRect(), a = this.$_popperNode.querySelector(\".v-popper__wrapper\"), n = a.parentNode.getBoundingClientRect(), s = t.x + t.width / 2 - (n.left + a.offsetLeft), r = t.y + t.height / 2 - (n.top + a.offsetTop);\n this.result.transformOrigin = `${s}px ${r}px`;\n }\n this.isShown = !0, this.$_applyAttrsToTarget({ \"aria-describedby\": this.popperId, \"data-popper-shown\": \"\" });\n const e = this.showGroup;\n if (e) {\n let t;\n for (let a = 0; a < nt.length; a++)\n t = nt[a], t.showGroup !== e && (t.hide(), t.$emit(\"close-group\"));\n }\n nt.push(this), document.body.classList.add(\"v-popper--some-open\");\n for (const t of $u(this.theme))\n Hu(t).push(this), document.body.classList.add(`v-popper--some-open--${t}`);\n this.$emit(\"apply-show\"), this.classes.showFrom = !0, this.classes.showTo = !1, this.classes.hideFrom = !1, this.classes.hideTo = !1, await mo(), this.classes.showFrom = !1, this.classes.showTo = !0, this.noAutoFocus || this.$_popperNode.focus();\n}, async $_applyHide(e = !1) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0, this.$_hideInProgress = !1;\n return;\n }\n if (clearTimeout(this.$_scheduleTimer), !this.isShown)\n return;\n this.skipTransition = e, Iu(nt, this), nt.length === 0 && document.body.classList.remove(\"v-popper--some-open\");\n for (const a of $u(this.theme)) {\n const n = Hu(a);\n Iu(n, this), n.length === 0 && document.body.classList.remove(`v-popper--some-open--${a}`);\n }\n Zt === this && (Zt = null), this.isShown = !1, this.$_applyAttrsToTarget({ \"aria-describedby\": void 0, \"data-popper-shown\": void 0 }), clearTimeout(this.$_disposeTimer);\n const t = Sa(this.theme, \"disposeTimeout\");\n t !== null && (this.$_disposeTimer = setTimeout(() => {\n this.$_popperNode && (this.$_detachPopperNode(), this.isMounted = !1);\n }, t)), this.$_removeEventListeners(\"scroll\"), this.$emit(\"apply-hide\"), this.classes.showFrom = !1, this.classes.showTo = !1, this.classes.hideFrom = !0, this.classes.hideTo = !1, await mo(), this.classes.hideFrom = !1, this.classes.hideTo = !0;\n}, $_autoShowHide() {\n this.shown ? this.show() : this.hide();\n}, $_ensureTeleport() {\n if (this.$_isDisposed)\n return;\n let e = this.container;\n if (typeof e == \"string\" ? e = window.document.querySelector(e) : e === !1 && (e = this.$_targetNodes[0].parentNode), !e)\n throw new Error(\"No container for popover: \" + this.container);\n e.appendChild(this.$_popperNode), this.isMounted = !0;\n}, $_addEventListeners() {\n const e = (a) => {\n this.isShown && !this.$_hideInProgress || (a.usedByTooltip = !0, !this.$_preventShow && this.show({ event: a }));\n };\n this.$_registerTriggerListeners(this.$_targetNodes, ar, this.triggers, this.showTriggers, e), this.$_registerTriggerListeners([this.$_popperNode], ar, this.popperTriggers, this.popperShowTriggers, e);\n const t = (a) => (n) => {\n n.usedByTooltip || this.hide({ event: n, skipAiming: a });\n };\n this.$_registerTriggerListeners(this.$_targetNodes, nr, this.triggers, this.hideTriggers, t(!1)), this.$_registerTriggerListeners([this.$_popperNode], nr, this.popperTriggers, this.popperHideTriggers, t(!0));\n}, $_registerEventListeners(e, t, a) {\n this.$_events.push({ targetNodes: e, eventType: t, handler: a }), e.forEach((n) => n.addEventListener(t, a, sa ? { passive: !0 } : void 0));\n}, $_registerTriggerListeners(e, t, a, n, s) {\n let r = a;\n n != null && (r = typeof n == \"function\" ? n(r) : n), r.forEach((o) => {\n const i = t[o];\n i && this.$_registerEventListeners(e, i, s);\n });\n}, $_removeEventListeners(e) {\n const t = [];\n this.$_events.forEach((a) => {\n const { targetNodes: n, eventType: s, handler: r } = a;\n !e || e === s ? n.forEach((o) => o.removeEventListener(s, r)) : t.push(a);\n }), this.$_events = t;\n}, $_refreshListeners() {\n this.$_isDisposed || (this.$_removeEventListeners(), this.$_addEventListeners());\n}, $_handleGlobalClose(e, t = !1) {\n this.$_showFrameLocked || (this.hide({ event: e }), e.closePopover ? this.$emit(\"close-directive\") : this.$emit(\"auto-hide\"), t && (this.$_preventShow = !0, setTimeout(() => {\n this.$_preventShow = !1;\n }, 300)));\n}, $_detachPopperNode() {\n this.$_popperNode.parentNode && this.$_popperNode.parentNode.removeChild(this.$_popperNode);\n}, $_swapTargetAttrs(e, t) {\n for (const a of this.$_targetNodes) {\n const n = a.getAttribute(e);\n n && (a.removeAttribute(e), a.setAttribute(t, n));\n }\n}, $_applyAttrsToTarget(e) {\n for (const t of this.$_targetNodes)\n for (const a in e) {\n const n = e[a];\n n == null ? t.removeAttribute(a) : t.setAttribute(a, n);\n }\n}, $_updateParentShownChildren(e) {\n let t = this.parentPopper;\n for (; t; )\n e ? t.shownChildren.add(this.randomId) : (t.shownChildren.delete(this.randomId), t.$_pendingHide && t.hide()), t = t.parentPopper;\n}, $_isAimingPopper() {\n const e = this.$el.getBoundingClientRect();\n if (Va >= e.left && Va <= e.right && Wa >= e.top && Wa <= e.bottom) {\n const t = this.$_popperNode.getBoundingClientRect(), a = Va - Dt, n = Wa - Bt, s = t.left + t.width / 2 - Dt + (t.top + t.height / 2) - Bt + t.width + t.height, r = Dt + a * s, o = Bt + n * s;\n return Fn(Dt, Bt, r, o, t.left, t.top, t.left, t.bottom) || Fn(Dt, Bt, r, o, t.left, t.top, t.right, t.top) || Fn(Dt, Bt, r, o, t.right, t.top, t.right, t.bottom) || Fn(Dt, Bt, r, o, t.left, t.bottom, t.right, t.bottom);\n }\n return !1;\n} }, render() {\n return this.$scopedSlots.default(this.slotData)[0];\n} });\ntypeof document < \"u\" && typeof window < \"u\" && (im ? (document.addEventListener(\"touchstart\", qu, sa ? { passive: !0, capture: !0 } : !0), document.addEventListener(\"touchend\", v4, sa ? { passive: !0, capture: !0 } : !0)) : (window.addEventListener(\"mousedown\", qu, !0), window.addEventListener(\"click\", f4, !0)), window.addEventListener(\"resize\", A4));\nfunction qu(e) {\n for (let t = 0; t < nt.length; t++) {\n const a = nt[t];\n try {\n const n = a.popperNode();\n a.$_mouseDownContains = n.contains(e.target);\n } catch {\n }\n }\n}\nfunction f4(e) {\n um(e);\n}\nfunction v4(e) {\n um(e, !0);\n}\nfunction um(e, t = !1) {\n const a = {};\n for (let n = nt.length - 1; n >= 0; n--) {\n const s = nt[n];\n try {\n const r = s.$_containsGlobalTarget = C4(s, e);\n s.$_pendingHide = !1, requestAnimationFrame(() => {\n if (s.$_pendingHide = !1, !a[s.randomId] && Vu(s, r, e)) {\n if (s.$_handleGlobalClose(e, t), !e.closeAllPopover && e.closePopover && r) {\n let i = s.parentPopper;\n for (; i; )\n a[i.randomId] = !0, i = i.parentPopper;\n return;\n }\n let o = s.parentPopper;\n for (; o && Vu(o, o.$_containsGlobalTarget, e); )\n o.$_handleGlobalClose(e, t), o = o.parentPopper;\n }\n });\n } catch {\n }\n }\n}\nfunction C4(e, t) {\n const a = e.popperNode();\n return e.$_mouseDownContains || a.contains(t.target);\n}\nfunction Vu(e, t, a) {\n return a.closeAllPopover || a.closePopover && t || y4(e, a) && !t;\n}\nfunction y4(e, t) {\n if (typeof e.autoHide == \"function\") {\n const a = e.autoHide(t);\n return e.lastAutoHide = a, a;\n }\n return e.autoHide;\n}\nfunction A4(e) {\n for (let t = 0; t < nt.length; t++)\n nt[t].$_computePosition(e);\n}\nfunction w4() {\n for (let e = 0; e < nt.length; e++)\n nt[e].hide();\n}\nlet Dt = 0, Bt = 0, Va = 0, Wa = 0;\ntypeof window < \"u\" && window.addEventListener(\"mousemove\", (e) => {\n Dt = Va, Bt = Wa, Va = e.clientX, Wa = e.clientY;\n}, sa ? { passive: !0 } : void 0);\nfunction Fn(e, t, a, n, s, r, o, i) {\n const u = ((o - s) * (t - r) - (i - r) * (e - s)) / ((i - r) * (a - e) - (o - s) * (n - t)), l = ((a - e) * (t - r) - (n - t) * (e - s)) / ((i - r) * (a - e) - (o - s) * (n - t));\n return u >= 0 && u <= 1 && l >= 0 && l <= 1;\n}\nfunction b4() {\n var e = window.navigator.userAgent, t = e.indexOf(\"MSIE \");\n if (t > 0)\n return parseInt(e.substring(t + 5, e.indexOf(\".\", t)), 10);\n var a = e.indexOf(\"Trident/\");\n if (a > 0) {\n var n = e.indexOf(\"rv:\");\n return parseInt(e.substring(n + 3, e.indexOf(\".\", n)), 10);\n }\n var s = e.indexOf(\"Edge/\");\n return s > 0 ? parseInt(e.substring(s + 5, e.indexOf(\".\", s)), 10) : -1;\n}\nvar Vn;\nfunction or() {\n or.init || (or.init = !0, Vn = b4() !== -1);\n}\nvar x4 = { name: \"ResizeObserver\", props: { emitOnMount: { type: Boolean, default: !1 }, ignoreWidth: { type: Boolean, default: !1 }, ignoreHeight: { type: Boolean, default: !1 } }, mounted: function() {\n var e = this;\n or(), this.$nextTick(function() {\n e._w = e.$el.offsetWidth, e._h = e.$el.offsetHeight, e.emitOnMount && e.emitSize();\n });\n var t = document.createElement(\"object\");\n this._resizeObject = t, t.setAttribute(\"aria-hidden\", \"true\"), t.setAttribute(\"tabindex\", -1), t.onload = this.addResizeHandlers, t.type = \"text/html\", Vn && this.$el.appendChild(t), t.data = \"about:blank\", Vn || this.$el.appendChild(t);\n}, beforeDestroy: function() {\n this.removeResizeHandlers();\n}, methods: { compareAndNotify: function() {\n (!this.ignoreWidth && this._w !== this.$el.offsetWidth || !this.ignoreHeight && this._h !== this.$el.offsetHeight) && (this._w = this.$el.offsetWidth, this._h = this.$el.offsetHeight, this.emitSize());\n}, emitSize: function() {\n this.$emit(\"notify\", { width: this._w, height: this._h });\n}, addResizeHandlers: function() {\n this._resizeObject.contentDocument.defaultView.addEventListener(\"resize\", this.compareAndNotify), this.compareAndNotify();\n}, removeResizeHandlers: function() {\n this._resizeObject && this._resizeObject.onload && (!Vn && this._resizeObject.contentDocument && this._resizeObject.contentDocument.defaultView.removeEventListener(\"resize\", this.compareAndNotify), this.$el.removeChild(this._resizeObject), this._resizeObject.onload = null, this._resizeObject = null);\n} } };\nfunction k4(e, t, a, n, s, r, o, i, u, l) {\n typeof o != \"boolean\" && (u = i, i = o, o = !1);\n var c = typeof a == \"function\" ? a.options : a;\n e && e.render && (c.render = e.render, c.staticRenderFns = e.staticRenderFns, c._compiled = !0, s && (c.functional = !0)), n && (c._scopeId = n);\n var d;\n if (r ? (d = function(h) {\n h = h || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !h && typeof __VUE_SSR_CONTEXT__ < \"u\" && (h = __VUE_SSR_CONTEXT__), t && t.call(this, u(h)), h && h._registeredComponents && h._registeredComponents.add(r);\n }, c._ssrRegister = d) : t && (d = o ? function(h) {\n t.call(this, l(h, this.$root.$options.shadowRoot));\n } : function(h) {\n t.call(this, i(h));\n }), d)\n if (c.functional) {\n var m = c.render;\n c.render = function(h, y) {\n return d.call(y), m(h, y);\n };\n } else {\n var p = c.beforeCreate;\n c.beforeCreate = p ? [].concat(p, d) : [d];\n }\n return a;\n}\nvar E4 = x4, lm = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"div\", { staticClass: \"resize-observer\", attrs: { tabindex: \"-1\" } });\n}, P4 = [];\nlm._withStripped = !0;\nvar S4 = void 0, T4 = \"data-v-8859cc6c\", F4 = void 0, D4 = !1, rr = k4({ render: lm, staticRenderFns: P4 }, S4, E4, T4, D4, F4, !1, void 0, void 0, void 0);\nfunction B4(e) {\n e.component(\"resize-observer\", rr), e.component(\"ResizeObserver\", rr);\n}\nvar _4 = { version: \"1.0.1\", install: B4 }, Dn = null;\ntypeof window < \"u\" ? Dn = window.Vue : typeof global < \"u\" && (Dn = global.Vue), Dn && Dn.use(_4);\nvar Ir = { computed: { themeClass() {\n return h4(this.theme);\n} } }, N4 = { name: \"VPopperContent\", components: { ResizeObserver: rr }, mixins: [Ir], props: { popperId: String, theme: String, shown: Boolean, mounted: Boolean, skipTransition: Boolean, autoHide: Boolean, handleResize: Boolean, classes: Object, result: Object }, methods: { toPx(e) {\n return e != null && !isNaN(e) ? `${e}px` : null;\n} } }, O4 = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"div\", { ref: \"popover\", staticClass: \"v-popper__popper\", class: [e.themeClass, e.classes.popperClass, { \"v-popper__popper--shown\": e.shown, \"v-popper__popper--hidden\": !e.shown, \"v-popper__popper--show-from\": e.classes.showFrom, \"v-popper__popper--show-to\": e.classes.showTo, \"v-popper__popper--hide-from\": e.classes.hideFrom, \"v-popper__popper--hide-to\": e.classes.hideTo, \"v-popper__popper--skip-transition\": e.skipTransition, \"v-popper__popper--arrow-overflow\": e.result && e.result.arrow.overflow, \"v-popper__popper--no-positioning\": !e.result }], style: e.result ? { position: e.result.strategy, transform: \"translate3d(\" + Math.round(e.result.x) + \"px,\" + Math.round(e.result.y) + \"px,0)\" } : void 0, attrs: { id: e.popperId, \"aria-hidden\": e.shown ? \"false\" : \"true\", tabindex: e.autoHide ? 0 : void 0, \"data-popper-placement\": e.result ? e.result.placement : void 0 }, on: { keyup: function(n) {\n if (!n.type.indexOf(\"key\") && e._k(n.keyCode, \"esc\", 27, n.key, [\"Esc\", \"Escape\"]))\n return null;\n e.autoHide && e.$emit(\"hide\");\n } } }, [a(\"div\", { staticClass: \"v-popper__backdrop\", on: { click: function(n) {\n e.autoHide && e.$emit(\"hide\");\n } } }), a(\"div\", { staticClass: \"v-popper__wrapper\", style: e.result ? { transformOrigin: e.result.transformOrigin } : void 0 }, [a(\"div\", { ref: \"inner\", staticClass: \"v-popper__inner\" }, [e.mounted ? [a(\"div\", [e._t(\"default\")], 2), e.handleResize ? a(\"ResizeObserver\", { on: { notify: function(n) {\n return e.$emit(\"resize\", n);\n } } }) : e._e()] : e._e()], 2), a(\"div\", { ref: \"arrow\", staticClass: \"v-popper__arrow-container\", style: e.result ? { left: e.toPx(e.result.arrow.x), top: e.toPx(e.result.arrow.y) } : void 0 }, [a(\"div\", { staticClass: \"v-popper__arrow-outer\" }), a(\"div\", { staticClass: \"v-popper__arrow-inner\" })])])]);\n}, j4 = [];\nfunction Na(e, t, a, n, s, r, o, i) {\n var u = typeof e == \"function\" ? e.options : e;\n t && (u.render = t, u.staticRenderFns = a, u._compiled = !0), n && (u.functional = !0), r && (u._scopeId = \"data-v-\" + r);\n var l;\n if (o ? (l = function(m) {\n m = m || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !m && typeof __VUE_SSR_CONTEXT__ < \"u\" && (m = __VUE_SSR_CONTEXT__), s && s.call(this, m), m && m._registeredComponents && m._registeredComponents.add(o);\n }, u._ssrRegister = l) : s && (l = i ? function() {\n s.call(this, (u.functional ? this.parent : this).$root.$options.shadowRoot);\n } : s), l)\n if (u.functional) {\n u._injectStyles = l;\n var c = u.render;\n u.render = function(m, p) {\n return l.call(p), c(m, p);\n };\n } else {\n var d = u.beforeCreate;\n u.beforeCreate = d ? [].concat(d, l) : [l];\n }\n return { exports: e, options: u };\n}\nconst Wu = {};\nvar L4 = Na(N4, O4, j4, !1, z4, null, null, null);\nfunction z4(e) {\n for (let t in Wu)\n this[t] = Wu[t];\n}\nvar Gr = function() {\n return L4.exports;\n}(), Ns = { methods: { show(...e) {\n return this.$refs.popper.show(...e);\n}, hide(...e) {\n return this.$refs.popper.hide(...e);\n}, dispose(...e) {\n return this.$refs.popper.dispose(...e);\n}, onResize(...e) {\n return this.$refs.popper.onResize(...e);\n} } }, U4 = { name: \"VPopperWrapper\", components: { Popper: $r(), PopperContent: Gr }, mixins: [Ns, Ir], inheritAttrs: !1, props: { theme: { type: String, default() {\n return this.$options.vPopperTheme;\n} } }, methods: { getTargetNodes() {\n return Array.from(this.$refs.reference.children).filter((e) => e !== this.$refs.popperContent.$el);\n} } }, M4 = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"Popper\", e._g(e._b({ ref: \"popper\", attrs: { theme: e.theme, \"target-nodes\": e.getTargetNodes, \"reference-node\": function() {\n return e.$refs.reference;\n }, \"popper-node\": function() {\n return e.$refs.popperContent.$el;\n } }, scopedSlots: e._u([{ key: \"default\", fn: function(n) {\n var s = n.popperId, r = n.isShown, o = n.shouldMountContent, i = n.skipTransition, u = n.autoHide, l = n.show, c = n.hide, d = n.handleResize, m = n.onResize, p = n.classes, h = n.result;\n return [a(\"div\", { ref: \"reference\", staticClass: \"v-popper\", class: [e.themeClass, { \"v-popper--shown\": r }] }, [e._t(\"default\", null, { shown: r, show: l, hide: c }), a(\"PopperContent\", { ref: \"popperContent\", attrs: { \"popper-id\": s, theme: e.theme, shown: r, mounted: o, \"skip-transition\": i, \"auto-hide\": u, \"handle-resize\": d, classes: p, result: h }, on: { hide: c, resize: m } }, [e._t(\"popper\", null, { shown: r, hide: c })], 2)], 2)];\n } }], null, !0) }, \"Popper\", e.$attrs, !1), e.$listeners));\n}, R4 = [];\nconst Zu = {};\nvar $4 = Na(U4, M4, R4, !1, I4, null, null, null);\nfunction I4(e) {\n for (let t in Zu)\n this[t] = Zu[t];\n}\nvar Os = function() {\n return $4.exports;\n}(), G4 = _s(Nt({}, Os), { name: \"VDropdown\", vPopperTheme: \"dropdown\" });\nlet H4, q4;\nconst Ku = {};\nvar V4 = Na(G4, H4, q4, !1, W4, null, null, null);\nfunction W4(e) {\n for (let t in Ku)\n this[t] = Ku[t];\n}\nvar ir = function() {\n return V4.exports;\n}(), Z4 = _s(Nt({}, Os), { name: \"VMenu\", vPopperTheme: \"menu\" });\nlet K4, J4;\nconst Ju = {};\nvar Y4 = Na(Z4, K4, J4, !1, X4, null, null, null);\nfunction X4(e) {\n for (let t in Ju)\n this[t] = Ju[t];\n}\nvar ur = function() {\n return Y4.exports;\n}(), Q4 = _s(Nt({}, Os), { name: \"VTooltip\", vPopperTheme: \"tooltip\" });\nlet ev, tv;\nconst Yu = {};\nvar av = Na(Q4, ev, tv, !1, nv, null, null, null);\nfunction nv(e) {\n for (let t in Yu)\n this[t] = Yu[t];\n}\nvar lr = function() {\n return av.exports;\n}(), sv = { name: \"VTooltipDirective\", components: { Popper: $r(), PopperContent: Gr }, mixins: [Ns], inheritAttrs: !1, props: { theme: { type: String, default: \"tooltip\" }, html: { type: Boolean, default() {\n return Sa(this.theme, \"html\");\n} }, content: { type: [String, Number, Function], default: null }, loadingContent: { type: String, default() {\n return Sa(this.theme, \"loadingContent\");\n} } }, data() {\n return { asyncContent: null };\n}, computed: { isContentAsync() {\n return typeof this.content == \"function\";\n}, loading() {\n return this.isContentAsync && this.asyncContent == null;\n}, finalContent() {\n return this.isContentAsync ? this.loading ? this.loadingContent : this.asyncContent : this.content;\n} }, watch: { content: { handler() {\n this.fetchContent(!0);\n}, immediate: !0 }, async finalContent(e) {\n await this.$nextTick(), this.$refs.popper.onResize();\n} }, created() {\n this.$_fetchId = 0;\n}, methods: { fetchContent(e) {\n if (typeof this.content == \"function\" && this.$_isShown && (e || !this.$_loading && this.asyncContent == null)) {\n this.asyncContent = null, this.$_loading = !0;\n const t = ++this.$_fetchId, a = this.content(this);\n a.then ? a.then((n) => this.onResult(t, n)) : this.onResult(t, a);\n }\n}, onResult(e, t) {\n e === this.$_fetchId && (this.$_loading = !1, this.asyncContent = t);\n}, onShow() {\n this.$_isShown = !0, this.fetchContent();\n}, onHide() {\n this.$_isShown = !1;\n} } }, ov = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"Popper\", e._g(e._b({ ref: \"popper\", attrs: { theme: e.theme, \"popper-node\": function() {\n return e.$refs.popperContent.$el;\n } }, on: { \"apply-show\": e.onShow, \"apply-hide\": e.onHide }, scopedSlots: e._u([{ key: \"default\", fn: function(n) {\n var s = n.popperId, r = n.isShown, o = n.shouldMountContent, i = n.skipTransition, u = n.autoHide, l = n.hide, c = n.handleResize, d = n.onResize, m = n.classes, p = n.result;\n return [a(\"PopperContent\", { ref: \"popperContent\", class: { \"v-popper--tooltip-loading\": e.loading }, attrs: { \"popper-id\": s, theme: e.theme, shown: r, mounted: o, \"skip-transition\": i, \"auto-hide\": u, \"handle-resize\": c, classes: m, result: p }, on: { hide: l, resize: d } }, [e.html ? a(\"div\", { domProps: { innerHTML: e._s(e.finalContent) } }) : a(\"div\", { domProps: { textContent: e._s(e.finalContent) } })])];\n } }]) }, \"Popper\", e.$attrs, !1), e.$listeners));\n}, rv = [];\nconst Xu = {};\nvar iv = Na(sv, ov, rv, !1, uv, null, null, null);\nfunction uv(e) {\n for (let t in Xu)\n this[t] = Xu[t];\n}\nvar cm = function() {\n return iv.exports;\n}();\nconst mm = \"v-popper--has-tooltip\";\nfunction lv(e, t) {\n let a = e.placement;\n if (!a && t)\n for (const n of Rr)\n t[n] && (a = n);\n return a || (a = Sa(e.theme || \"tooltip\", \"placement\")), a;\n}\nfunction dm(e, t, a) {\n let n;\n const s = typeof t;\n return s === \"string\" ? n = { content: t } : t && s === \"object\" ? n = t : n = { content: !1 }, n.placement = lv(n, a), n.targetNodes = () => [e], n.referenceNode = () => e, n;\n}\nfunction pm(e, t, a) {\n const n = dm(e, t, a), s = e.$_popper = new Ne({ mixins: [Ns], data() {\n return { options: n };\n }, render(o) {\n const i = this.options, { theme: u, html: l, content: c, loadingContent: d } = i, m = g4(i, [\"theme\", \"html\", \"content\", \"loadingContent\"]);\n return o(cm, { props: { theme: u, html: l, content: c, loadingContent: d }, attrs: m, ref: \"popper\" });\n }, devtools: { hide: !0 } }), r = document.createElement(\"div\");\n return document.body.appendChild(r), s.$mount(r), e.classList && e.classList.add(mm), s;\n}\nfunction Hr(e) {\n e.$_popper && (e.$_popper.$destroy(), delete e.$_popper, delete e.$_popperOldShown), e.classList && e.classList.remove(mm);\n}\nfunction Qu(e, { value: t, oldValue: a, modifiers: n }) {\n const s = dm(e, t, n);\n if (!s.content || Sa(s.theme || \"tooltip\", \"disabled\"))\n Hr(e);\n else {\n let r;\n e.$_popper ? (r = e.$_popper, r.options = s) : r = pm(e, t, n), typeof t.shown < \"u\" && t.shown !== e.$_popperOldShown && (e.$_popperOldShown = t.shown, t.shown ? r.show() : r.hide());\n }\n}\nvar gm = { bind: Qu, update: Qu, unbind(e) {\n Hr(e);\n} };\nfunction el(e) {\n e.addEventListener(\"click\", hm), e.addEventListener(\"touchstart\", fm, sa ? { passive: !0 } : !1);\n}\nfunction tl(e) {\n e.removeEventListener(\"click\", hm), e.removeEventListener(\"touchstart\", fm), e.removeEventListener(\"touchend\", vm), e.removeEventListener(\"touchcancel\", Cm);\n}\nfunction hm(e) {\n const t = e.currentTarget;\n e.closePopover = !t.$_vclosepopover_touch, e.closeAllPopover = t.$_closePopoverModifiers && !!t.$_closePopoverModifiers.all;\n}\nfunction fm(e) {\n if (e.changedTouches.length === 1) {\n const t = e.currentTarget;\n t.$_vclosepopover_touch = !0;\n const a = e.changedTouches[0];\n t.$_vclosepopover_touchPoint = a, t.addEventListener(\"touchend\", vm), t.addEventListener(\"touchcancel\", Cm);\n }\n}\nfunction vm(e) {\n const t = e.currentTarget;\n if (t.$_vclosepopover_touch = !1, e.changedTouches.length === 1) {\n const a = e.changedTouches[0], n = t.$_vclosepopover_touchPoint;\n e.closePopover = Math.abs(a.screenY - n.screenY) < 20 && Math.abs(a.screenX - n.screenX) < 20, e.closeAllPopover = t.$_closePopoverModifiers && !!t.$_closePopoverModifiers.all;\n }\n}\nfunction Cm(e) {\n const t = e.currentTarget;\n t.$_vclosepopover_touch = !1;\n}\nvar ym = { bind(e, { value: t, modifiers: a }) {\n e.$_closePopoverModifiers = a, (typeof t > \"u\" || t) && el(e);\n}, update(e, { value: t, oldValue: a, modifiers: n }) {\n e.$_closePopoverModifiers = n, t !== a && (typeof t > \"u\" || t ? el(e) : tl(e));\n}, unbind(e) {\n tl(e);\n} };\nconst cv = ht, mv = gm, dv = ym, pv = ir, gv = ur, hv = $r, fv = Gr, vv = Ns, Cv = Os, yv = Ir, Av = lr, wv = cm;\nfunction Am(e, t = {}) {\n e.$_vTooltipInstalled || (e.$_vTooltipInstalled = !0, rm(ht, t), e.directive(\"tooltip\", gm), e.directive(\"close-popper\", ym), e.component(\"v-tooltip\", lr), e.component(\"VTooltip\", lr), e.component(\"v-dropdown\", ir), e.component(\"VDropdown\", ir), e.component(\"v-menu\", ur), e.component(\"VMenu\", ur));\n}\nconst wm = { version: \"1.0.0-beta.19\", install: Am, options: ht };\nlet Bn = null;\ntypeof window < \"u\" ? Bn = window.Vue : typeof global < \"u\" && (Bn = global.Vue), Bn && Bn.use(wm);\nconst bv = Object.freeze(Object.defineProperty({ __proto__: null, Dropdown: pv, HIDE_EVENT_MAP: nr, Menu: gv, Popper: hv, PopperContent: fv, PopperMethods: vv, PopperWrapper: Cv, SHOW_EVENT_MAP: ar, ThemeClass: yv, Tooltip: Av, TooltipDirective: wv, VClosePopper: dv, VTooltip: mv, createTooltip: pm, default: wm, destroyTooltip: Hr, hideAllPoppers: w4, install: Am, options: cv, placements: Rr }, Symbol.toStringTag, { value: \"Module\" })), xv = Ps(bv);\nvar bm = [\"input:not([inert])\", \"select:not([inert])\", \"textarea:not([inert])\", \"a[href]:not([inert])\", \"button:not([inert])\", \"[tabindex]:not(slot):not([inert])\", \"audio[controls]:not([inert])\", \"video[controls]:not([inert])\", '[contenteditable]:not([contenteditable=\"false\"]):not([inert])', \"details>summary:first-of-type:not([inert])\", \"details:not([inert])\"], ds = bm.join(\",\"), xm = typeof Element > \"u\", oa = xm ? function() {\n} : Element.prototype.matches || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector, ps = !xm && Element.prototype.getRootNode ? function(e) {\n var t;\n return e == null || (t = e.getRootNode) === null || t === void 0 ? void 0 : t.call(e);\n} : function(e) {\n return e?.ownerDocument;\n}, gs = function e(t, a) {\n var n;\n a === void 0 && (a = !0);\n var s = t == null || (n = t.getAttribute) === null || n === void 0 ? void 0 : n.call(t, \"inert\"), r = s === \"\" || s === \"true\", o = r || a && t && e(t.parentNode);\n return o;\n}, kv = function(e) {\n var t, a = e == null || (t = e.getAttribute) === null || t === void 0 ? void 0 : t.call(e, \"contenteditable\");\n return a === \"\" || a === \"true\";\n}, km = function(e, t, a) {\n if (gs(e))\n return [];\n var n = Array.prototype.slice.apply(e.querySelectorAll(ds));\n return t && oa.call(e, ds) && n.unshift(e), n = n.filter(a), n;\n}, Em = function e(t, a, n) {\n for (var s = [], r = Array.from(t); r.length; ) {\n var o = r.shift();\n if (!gs(o, !1))\n if (o.tagName === \"SLOT\") {\n var i = o.assignedElements(), u = i.length ? i : o.children, l = e(u, !0, n);\n n.flatten ? s.push.apply(s, l) : s.push({ scopeParent: o, candidates: l });\n } else {\n var c = oa.call(o, ds);\n c && n.filter(o) && (a || !t.includes(o)) && s.push(o);\n var d = o.shadowRoot || typeof n.getShadowRoot == \"function\" && n.getShadowRoot(o), m = !gs(d, !1) && (!n.shadowRootFilter || n.shadowRootFilter(o));\n if (d && m) {\n var p = e(d === !0 ? o.children : d.children, !0, n);\n n.flatten ? s.push.apply(s, p) : s.push({ scopeParent: o, candidates: p });\n } else\n r.unshift.apply(r, o.children);\n }\n }\n return s;\n}, Pm = function(e) {\n return !isNaN(parseInt(e.getAttribute(\"tabindex\"), 10));\n}, Jt = function(e) {\n if (!e)\n throw new Error(\"No node provided\");\n return e.tabIndex < 0 && (/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName) || kv(e)) && !Pm(e) ? 0 : e.tabIndex;\n}, Ev = function(e, t) {\n var a = Jt(e);\n return a < 0 && t && !Pm(e) ? 0 : a;\n}, Pv = function(e, t) {\n return e.tabIndex === t.tabIndex ? e.documentOrder - t.documentOrder : e.tabIndex - t.tabIndex;\n}, Sm = function(e) {\n return e.tagName === \"INPUT\";\n}, Sv = function(e) {\n return Sm(e) && e.type === \"hidden\";\n}, Tv = function(e) {\n var t = e.tagName === \"DETAILS\" && Array.prototype.slice.apply(e.children).some(function(a) {\n return a.tagName === \"SUMMARY\";\n });\n return t;\n}, Fv = function(e, t) {\n for (var a = 0; a < e.length; a++)\n if (e[a].checked && e[a].form === t)\n return e[a];\n}, Dv = function(e) {\n if (!e.name)\n return !0;\n var t = e.form || ps(e), a = function(r) {\n return t.querySelectorAll('input[type=\"radio\"][name=\"' + r + '\"]');\n }, n;\n if (typeof window < \"u\" && typeof window.CSS < \"u\" && typeof window.CSS.escape == \"function\")\n n = a(window.CSS.escape(e.name));\n else\n try {\n n = a(e.name);\n } catch (r) {\n return console.error(\"Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s\", r.message), !1;\n }\n var s = Fv(n, e.form);\n return !s || s === e;\n}, Bv = function(e) {\n return Sm(e) && e.type === \"radio\";\n}, _v = function(e) {\n return Bv(e) && !Dv(e);\n}, Nv = function(e) {\n var t, a = e && ps(e), n = (t = a) === null || t === void 0 ? void 0 : t.host, s = !1;\n if (a && a !== e) {\n var r, o, i;\n for (s = !!((r = n) !== null && r !== void 0 && (o = r.ownerDocument) !== null && o !== void 0 && o.contains(n) || e != null && (i = e.ownerDocument) !== null && i !== void 0 && i.contains(e)); !s && n; ) {\n var u, l, c;\n a = ps(n), n = (u = a) === null || u === void 0 ? void 0 : u.host, s = !!((l = n) !== null && l !== void 0 && (c = l.ownerDocument) !== null && c !== void 0 && c.contains(n));\n }\n }\n return s;\n}, al = function(e) {\n var t = e.getBoundingClientRect(), a = t.width, n = t.height;\n return a === 0 && n === 0;\n}, Ov = function(e, t) {\n var a = t.displayCheck, n = t.getShadowRoot;\n if (getComputedStyle(e).visibility === \"hidden\")\n return !0;\n var s = oa.call(e, \"details>summary:first-of-type\"), r = s ? e.parentElement : e;\n if (oa.call(r, \"details:not([open]) *\"))\n return !0;\n if (!a || a === \"full\" || a === \"legacy-full\") {\n if (typeof n == \"function\") {\n for (var o = e; e; ) {\n var i = e.parentElement, u = ps(e);\n if (i && !i.shadowRoot && n(i) === !0)\n return al(e);\n e.assignedSlot ? e = e.assignedSlot : !i && u !== e.ownerDocument ? e = u.host : e = i;\n }\n e = o;\n }\n if (Nv(e))\n return !e.getClientRects().length;\n if (a !== \"legacy-full\")\n return !0;\n } else if (a === \"non-zero-area\")\n return al(e);\n return !1;\n}, jv = function(e) {\n if (/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))\n for (var t = e.parentElement; t; ) {\n if (t.tagName === \"FIELDSET\" && t.disabled) {\n for (var a = 0; a < t.children.length; a++) {\n var n = t.children.item(a);\n if (n.tagName === \"LEGEND\")\n return oa.call(t, \"fieldset[disabled] *\") ? !0 : !n.contains(e);\n }\n return !0;\n }\n t = t.parentElement;\n }\n return !1;\n}, hs = function(e, t) {\n return !(t.disabled || gs(t) || Sv(t) || Ov(t, e) || Tv(t) || jv(t));\n}, cr = function(e, t) {\n return !(_v(t) || Jt(t) < 0 || !hs(e, t));\n}, Lv = function(e) {\n var t = parseInt(e.getAttribute(\"tabindex\"), 10);\n return !!(isNaN(t) || t >= 0);\n}, zv = function e(t) {\n var a = [], n = [];\n return t.forEach(function(s, r) {\n var o = !!s.scopeParent, i = o ? s.scopeParent : s, u = Ev(i, o), l = o ? e(s.candidates) : i;\n u === 0 ? o ? a.push.apply(a, l) : a.push(i) : n.push({ documentOrder: r, tabIndex: u, item: s, isScope: o, content: l });\n }), n.sort(Pv).reduce(function(s, r) {\n return r.isScope ? s.push.apply(s, r.content) : s.push(r.content), s;\n }, []).concat(a);\n}, Uv = function(e, t) {\n t = t || {};\n var a;\n return t.getShadowRoot ? a = Em([e], t.includeContainer, { filter: cr.bind(null, t), flatten: !1, getShadowRoot: t.getShadowRoot, shadowRootFilter: Lv }) : a = km(e, t.includeContainer, cr.bind(null, t)), zv(a);\n}, Mv = function(e, t) {\n t = t || {};\n var a;\n return t.getShadowRoot ? a = Em([e], t.includeContainer, { filter: hs.bind(null, t), flatten: !0, getShadowRoot: t.getShadowRoot }) : a = km(e, t.includeContainer, hs.bind(null, t)), a;\n}, fa = function(e, t) {\n if (t = t || {}, !e)\n throw new Error(\"No node provided\");\n return oa.call(e, ds) === !1 ? !1 : cr(t, e);\n}, Rv = bm.concat(\"iframe\").join(\",\"), go = function(e, t) {\n if (t = t || {}, !e)\n throw new Error(\"No node provided\");\n return oa.call(e, Rv) === !1 ? !1 : hs(t, e);\n};\nfunction nl(e, t) {\n var a = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var n = Object.getOwnPropertySymbols(e);\n t && (n = n.filter(function(s) {\n return Object.getOwnPropertyDescriptor(e, s).enumerable;\n })), a.push.apply(a, n);\n }\n return a;\n}\nfunction sl(e) {\n for (var t = 1; t < arguments.length; t++) {\n var a = arguments[t] != null ? arguments[t] : {};\n t % 2 ? nl(Object(a), !0).forEach(function(n) {\n $v(e, n, a[n]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(a)) : nl(Object(a)).forEach(function(n) {\n Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(a, n));\n });\n }\n return e;\n}\nfunction $v(e, t, a) {\n return t = Gv(t), t in e ? Object.defineProperty(e, t, { value: a, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = a, e;\n}\nfunction Iv(e, t) {\n if (typeof e != \"object\" || e === null)\n return e;\n var a = e[Symbol.toPrimitive];\n if (a !== void 0) {\n var n = a.call(e, t || \"default\");\n if (typeof n != \"object\")\n return n;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (t === \"string\" ? String : Number)(e);\n}\nfunction Gv(e) {\n var t = Iv(e, \"string\");\n return typeof t == \"symbol\" ? t : String(t);\n}\nvar ol = { activateTrap: function(e, t) {\n if (e.length > 0) {\n var a = e[e.length - 1];\n a !== t && a.pause();\n }\n var n = e.indexOf(t);\n n === -1 || e.splice(n, 1), e.push(t);\n}, deactivateTrap: function(e, t) {\n var a = e.indexOf(t);\n a !== -1 && e.splice(a, 1), e.length > 0 && e[e.length - 1].unpause();\n} }, Hv = function(e) {\n return e.tagName && e.tagName.toLowerCase() === \"input\" && typeof e.select == \"function\";\n}, qv = function(e) {\n return e?.key === \"Escape\" || e?.key === \"Esc\" || e?.keyCode === 27;\n}, Za = function(e) {\n return e?.key === \"Tab\" || e?.keyCode === 9;\n}, Vv = function(e) {\n return Za(e) && !e.shiftKey;\n}, Wv = function(e) {\n return Za(e) && e.shiftKey;\n}, rl = function(e) {\n return setTimeout(e, 0);\n}, il = function(e, t) {\n var a = -1;\n return e.every(function(n, s) {\n return t(n) ? (a = s, !1) : !0;\n }), a;\n}, Ra = function(e) {\n for (var t = arguments.length, a = new Array(t > 1 ? t - 1 : 0), n = 1; n < t; n++)\n a[n - 1] = arguments[n];\n return typeof e == \"function\" ? e.apply(void 0, a) : e;\n}, _n = function(e) {\n return e.target.shadowRoot && typeof e.composedPath == \"function\" ? e.composedPath()[0] : e.target;\n}, Zv = [], Kv = function(e, t) {\n var a = t?.document || document, n = t?.trapStack || Zv, s = sl({ returnFocusOnDeactivate: !0, escapeDeactivates: !0, delayInitialFocus: !0, isKeyForward: Vv, isKeyBackward: Wv }, t), r = { containers: [], containerGroups: [], tabbableGroups: [], nodeFocusedBeforeActivation: null, mostRecentlyFocusedNode: null, active: !1, paused: !1, delayInitialFocusTimer: void 0, recentNavEvent: void 0 }, o, i = function(C, E, T) {\n return C && C[E] !== void 0 ? C[E] : s[T || E];\n }, u = function(C, E) {\n var T = typeof E?.composedPath == \"function\" ? E.composedPath() : void 0;\n return r.containerGroups.findIndex(function(f) {\n var A = f.container, S = f.tabbableNodes;\n return A.contains(C) || T?.includes(A) || S.find(function(D) {\n return D === C;\n });\n });\n }, l = function(C) {\n var E = s[C];\n if (typeof E == \"function\") {\n for (var T = arguments.length, f = new Array(T > 1 ? T - 1 : 0), A = 1; A < T; A++)\n f[A - 1] = arguments[A];\n E = E.apply(void 0, f);\n }\n if (E === !0 && (E = void 0), !E) {\n if (E === void 0 || E === !1)\n return E;\n throw new Error(\"`\".concat(C, \"` was specified but was not a node, or did not return a node\"));\n }\n var S = E;\n if (typeof E == \"string\" && (S = a.querySelector(E), !S))\n throw new Error(\"`\".concat(C, \"` as selector refers to no known node\"));\n return S;\n }, c = function() {\n var C = l(\"initialFocus\");\n if (C === !1)\n return !1;\n if (C === void 0 || !go(C, s.tabbableOptions))\n if (u(a.activeElement) >= 0)\n C = a.activeElement;\n else {\n var E = r.tabbableGroups[0], T = E && E.firstTabbableNode;\n C = T || l(\"fallbackFocus\");\n }\n if (!C)\n throw new Error(\"Your focus-trap needs to have at least one focusable element\");\n return C;\n }, d = function() {\n if (r.containerGroups = r.containers.map(function(C) {\n var E = Uv(C, s.tabbableOptions), T = Mv(C, s.tabbableOptions), f = E.length > 0 ? E[0] : void 0, A = E.length > 0 ? E[E.length - 1] : void 0, S = T.find(function(B) {\n return fa(B);\n }), D = T.slice().reverse().find(function(B) {\n return fa(B);\n }), R = !!E.find(function(B) {\n return Jt(B) > 0;\n });\n return { container: C, tabbableNodes: E, focusableNodes: T, posTabIndexesFound: R, firstTabbableNode: f, lastTabbableNode: A, firstDomTabbableNode: S, lastDomTabbableNode: D, nextTabbableNode: function(B) {\n var F = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0, W = E.indexOf(B);\n return W < 0 ? F ? T.slice(T.indexOf(B) + 1).find(function(U) {\n return fa(U);\n }) : T.slice(0, T.indexOf(B)).reverse().find(function(U) {\n return fa(U);\n }) : E[W + (F ? 1 : -1)];\n } };\n }), r.tabbableGroups = r.containerGroups.filter(function(C) {\n return C.tabbableNodes.length > 0;\n }), r.tabbableGroups.length <= 0 && !l(\"fallbackFocus\"))\n throw new Error(\"Your focus-trap must have at least one container with at least one tabbable node in it at all times\");\n if (r.containerGroups.find(function(C) {\n return C.posTabIndexesFound;\n }) && r.containerGroups.length > 1)\n throw new Error(\"At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.\");\n }, m = function C(E) {\n if (E !== !1 && E !== a.activeElement) {\n if (!E || !E.focus) {\n C(c());\n return;\n }\n E.focus({ preventScroll: !!s.preventScroll }), r.mostRecentlyFocusedNode = E, Hv(E) && E.select();\n }\n }, p = function(C) {\n var E = l(\"setReturnFocus\", C);\n return E || (E === !1 ? !1 : C);\n }, h = function(C) {\n var E = C.target, T = C.event, f = C.isBackward, A = f === void 0 ? !1 : f;\n E = E || _n(T), d();\n var S = null;\n if (r.tabbableGroups.length > 0) {\n var D = u(E, T), R = D >= 0 ? r.containerGroups[D] : void 0;\n if (D < 0)\n A ? S = r.tabbableGroups[r.tabbableGroups.length - 1].lastTabbableNode : S = r.tabbableGroups[0].firstTabbableNode;\n else if (A) {\n var B = il(r.tabbableGroups, function(J) {\n var le = J.firstTabbableNode;\n return E === le;\n });\n if (B < 0 && (R.container === E || go(E, s.tabbableOptions) && !fa(E, s.tabbableOptions) && !R.nextTabbableNode(E, !1)) && (B = D), B >= 0) {\n var F = B === 0 ? r.tabbableGroups.length - 1 : B - 1, W = r.tabbableGroups[F];\n S = Jt(E) >= 0 ? W.lastTabbableNode : W.lastDomTabbableNode;\n } else\n Za(T) || (S = R.nextTabbableNode(E, !1));\n } else {\n var U = il(r.tabbableGroups, function(J) {\n var le = J.lastTabbableNode;\n return E === le;\n });\n if (U < 0 && (R.container === E || go(E, s.tabbableOptions) && !fa(E, s.tabbableOptions) && !R.nextTabbableNode(E)) && (U = D), U >= 0) {\n var j = U === r.tabbableGroups.length - 1 ? 0 : U + 1, ee = r.tabbableGroups[j];\n S = Jt(E) >= 0 ? ee.firstTabbableNode : ee.firstDomTabbableNode;\n } else\n Za(T) || (S = R.nextTabbableNode(E));\n }\n } else\n S = l(\"fallbackFocus\");\n return S;\n }, y = function(C) {\n var E = _n(C);\n if (!(u(E, C) >= 0)) {\n if (Ra(s.clickOutsideDeactivates, C)) {\n o.deactivate({ returnFocus: s.returnFocusOnDeactivate });\n return;\n }\n Ra(s.allowOutsideClick, C) || C.preventDefault();\n }\n }, P = function(C) {\n var E = _n(C), T = u(E, C) >= 0;\n if (T || E instanceof Document)\n T && (r.mostRecentlyFocusedNode = E);\n else {\n C.stopImmediatePropagation();\n var f, A = !0;\n if (r.mostRecentlyFocusedNode)\n if (Jt(r.mostRecentlyFocusedNode) > 0) {\n var S = u(r.mostRecentlyFocusedNode), D = r.containerGroups[S].tabbableNodes;\n if (D.length > 0) {\n var R = D.findIndex(function(B) {\n return B === r.mostRecentlyFocusedNode;\n });\n R >= 0 && (s.isKeyForward(r.recentNavEvent) ? R + 1 < D.length && (f = D[R + 1], A = !1) : R - 1 >= 0 && (f = D[R - 1], A = !1));\n }\n } else\n r.containerGroups.some(function(B) {\n return B.tabbableNodes.some(function(F) {\n return Jt(F) > 0;\n });\n }) || (A = !1);\n else\n A = !1;\n A && (f = h({ target: r.mostRecentlyFocusedNode, isBackward: s.isKeyBackward(r.recentNavEvent) })), m(f || r.mostRecentlyFocusedNode || c());\n }\n r.recentNavEvent = void 0;\n }, v = function(C) {\n var E = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;\n r.recentNavEvent = C;\n var T = h({ event: C, isBackward: E });\n T && (Za(C) && C.preventDefault(), m(T));\n }, g = function(C) {\n if (qv(C) && Ra(s.escapeDeactivates, C) !== !1) {\n C.preventDefault(), o.deactivate();\n return;\n }\n (s.isKeyForward(C) || s.isKeyBackward(C)) && v(C, s.isKeyBackward(C));\n }, b = function(C) {\n var E = _n(C);\n u(E, C) >= 0 || Ra(s.clickOutsideDeactivates, C) || Ra(s.allowOutsideClick, C) || (C.preventDefault(), C.stopImmediatePropagation());\n }, x = function() {\n if (r.active)\n return ol.activateTrap(n, o), r.delayInitialFocusTimer = s.delayInitialFocus ? rl(function() {\n m(c());\n }) : m(c()), a.addEventListener(\"focusin\", P, !0), a.addEventListener(\"mousedown\", y, { capture: !0, passive: !1 }), a.addEventListener(\"touchstart\", y, { capture: !0, passive: !1 }), a.addEventListener(\"click\", b, { capture: !0, passive: !1 }), a.addEventListener(\"keydown\", g, { capture: !0, passive: !1 }), o;\n }, _ = function() {\n if (r.active)\n return a.removeEventListener(\"focusin\", P, !0), a.removeEventListener(\"mousedown\", y, !0), a.removeEventListener(\"touchstart\", y, !0), a.removeEventListener(\"click\", b, !0), a.removeEventListener(\"keydown\", g, !0), o;\n }, w = function(C) {\n var E = C.some(function(T) {\n var f = Array.from(T.removedNodes);\n return f.some(function(A) {\n return A === r.mostRecentlyFocusedNode;\n });\n });\n E && m(c());\n }, L = typeof window < \"u\" && \"MutationObserver\" in window ? new MutationObserver(w) : void 0, H = function() {\n L && (L.disconnect(), r.active && !r.paused && r.containers.map(function(C) {\n L.observe(C, { subtree: !0, childList: !0 });\n }));\n };\n return o = { get active() {\n return r.active;\n }, get paused() {\n return r.paused;\n }, activate: function(C) {\n if (r.active)\n return this;\n var E = i(C, \"onActivate\"), T = i(C, \"onPostActivate\"), f = i(C, \"checkCanFocusTrap\");\n f || d(), r.active = !0, r.paused = !1, r.nodeFocusedBeforeActivation = a.activeElement, E?.();\n var A = function() {\n f && d(), x(), H(), T?.();\n };\n return f ? (f(r.containers.concat()).then(A, A), this) : (A(), this);\n }, deactivate: function(C) {\n if (!r.active)\n return this;\n var E = sl({ onDeactivate: s.onDeactivate, onPostDeactivate: s.onPostDeactivate, checkCanReturnFocus: s.checkCanReturnFocus }, C);\n clearTimeout(r.delayInitialFocusTimer), r.delayInitialFocusTimer = void 0, _(), r.active = !1, r.paused = !1, H(), ol.deactivateTrap(n, o);\n var T = i(E, \"onDeactivate\"), f = i(E, \"onPostDeactivate\"), A = i(E, \"checkCanReturnFocus\"), S = i(E, \"returnFocus\", \"returnFocusOnDeactivate\");\n T?.();\n var D = function() {\n rl(function() {\n S && m(p(r.nodeFocusedBeforeActivation)), f?.();\n });\n };\n return S && A ? (A(p(r.nodeFocusedBeforeActivation)).then(D, D), this) : (D(), this);\n }, pause: function(C) {\n if (r.paused || !r.active)\n return this;\n var E = i(C, \"onPause\"), T = i(C, \"onPostPause\");\n return r.paused = !0, E?.(), _(), H(), T?.(), this;\n }, unpause: function(C) {\n if (!r.paused || !r.active)\n return this;\n var E = i(C, \"onUnpause\"), T = i(C, \"onPostUnpause\");\n return r.paused = !1, E?.(), d(), x(), H(), T?.(), this;\n }, updateContainerElements: function(C) {\n var E = [].concat(C).filter(Boolean);\n return r.containers = E.map(function(T) {\n return typeof T == \"string\" ? a.querySelector(T) : T;\n }), r.active && d(), H(), this;\n } }, o.updateContainerElements(e), o;\n};\nconst Jv = Object.freeze(Object.defineProperty({ __proto__: null, createFocusTrap: Kv }, Symbol.toStringTag, { value: \"Module\" })), Yv = Ps(Jv);\nfunction pn(e, t, a, n, s, r, o, i) {\n var u = typeof e == \"function\" ? e.options : e;\n t && (u.render = t, u.staticRenderFns = a, u._compiled = !0), n && (u.functional = !0), r && (u._scopeId = \"data-v-\" + r);\n var l;\n if (o ? (l = function(m) {\n m = m || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !m && typeof __VUE_SSR_CONTEXT__ < \"u\" && (m = __VUE_SSR_CONTEXT__), s && s.call(this, m), m && m._registeredComponents && m._registeredComponents.add(o);\n }, u._ssrRegister = l) : s && (l = i ? function() {\n s.call(this, (u.functional ? this.parent : this).$root.$options.shadowRoot);\n } : s), l)\n if (u.functional) {\n u._injectStyles = l;\n var c = u.render;\n u.render = function(m, p) {\n return l.call(p), c(m, p);\n };\n } else {\n var d = u.beforeCreate;\n u.beforeCreate = d ? [].concat(d, l) : [l];\n }\n return { exports: e, options: u };\n}\nconst Xv = { name: \"DotsHorizontalIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar Qv = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon dots-horizontal-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, e1 = [], t1 = pn(Xv, Qv, e1, !1, null, null, null, null);\nconst a1 = t1.exports, n1 = Object.freeze(Object.defineProperty({ __proto__: null, default: a1 }, Symbol.toStringTag, { value: \"Module\" })), s1 = Ps(n1);\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 3089: (o, i, u) => {\n function l(B) {\n return l = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(F) {\n return typeof F;\n } : function(F) {\n return F && typeof Symbol == \"function\" && F.constructor === Symbol && F !== Symbol.prototype ? \"symbol\" : typeof F;\n }, l(B);\n }\n function c(B, F) {\n var W = Object.keys(B);\n if (Object.getOwnPropertySymbols) {\n var U = Object.getOwnPropertySymbols(B);\n F && (U = U.filter(function(j) {\n return Object.getOwnPropertyDescriptor(B, j).enumerable;\n })), W.push.apply(W, U);\n }\n return W;\n }\n function d(B) {\n for (var F = 1; F < arguments.length; F++) {\n var W = arguments[F] != null ? arguments[F] : {};\n F % 2 ? c(Object(W), !0).forEach(function(U) {\n m(B, U, W[U]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(B, Object.getOwnPropertyDescriptors(W)) : c(Object(W)).forEach(function(U) {\n Object.defineProperty(B, U, Object.getOwnPropertyDescriptor(W, U));\n });\n }\n return B;\n }\n function m(B, F, W) {\n return (F = function(U) {\n var j = function(ee, J) {\n if (l(ee) !== \"object\" || ee === null)\n return ee;\n var le = ee[Symbol.toPrimitive];\n if (le !== void 0) {\n var ge = le.call(ee, J || \"default\");\n if (l(ge) !== \"object\")\n return ge;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (J === \"string\" ? String : Number)(ee);\n }(U, \"string\");\n return l(j) === \"symbol\" ? j : String(j);\n }(F)) in B ? Object.defineProperty(B, F, { value: W, enumerable: !0, configurable: !0, writable: !0 }) : B[F] = W, B;\n }\n u.d(i, { default: () => R });\n const p = { name: \"NcButton\", props: { alignment: { type: String, default: \"center\", validator: function(B) {\n return [\"start\", \"start-reverse\", \"center\", \"center-reverse\", \"end\", \"end-reverse\"].includes(B);\n } }, disabled: { type: Boolean, default: !1 }, type: { type: String, validator: function(B) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf(B) !== -1;\n }, default: \"secondary\" }, nativeType: { type: String, validator: function(B) {\n return [\"submit\", \"reset\", \"button\"].indexOf(B) !== -1;\n }, default: \"button\" }, wide: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: null }, href: { type: String, default: null }, download: { type: String, default: null }, to: { type: [String, Object], default: null }, exact: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null }, pressed: { type: Boolean, default: null } }, emits: [\"update:pressed\", \"click\"], computed: { realType: function() {\n return this.pressed ? \"primary\" : this.pressed === !1 && this.type === \"primary\" ? \"secondary\" : this.type;\n }, flexAlignment: function() {\n return this.alignment.split(\"-\")[0];\n }, isReverseAligned: function() {\n return this.alignment.includes(\"-\");\n } }, render: function(B) {\n var F, W, U, j = this, ee = (F = this.$slots.default) === null || F === void 0 || (F = F[0]) === null || F === void 0 || (F = F.text) === null || F === void 0 || (W = F.trim) === null || W === void 0 ? void 0 : W.call(F), J = !!ee, le = (U = this.$slots) === null || U === void 0 ? void 0 : U.icon;\n ee || this.ariaLabel || console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\", { text: ee, ariaLabel: this.ariaLabel }, this);\n var ge = function() {\n var fe, $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.navigate, te = $.isActive, he = $.isExactActive;\n return B(j.to || !j.href ? \"button\" : \"a\", { class: [\"button-vue\", (fe = { \"button-vue--icon-only\": le && !J, \"button-vue--text-only\": J && !le, \"button-vue--icon-and-text\": le && J }, m(fe, \"button-vue--vue-\".concat(j.realType), j.realType), m(fe, \"button-vue--wide\", j.wide), m(fe, \"button-vue--\".concat(j.flexAlignment), j.flexAlignment !== \"center\"), m(fe, \"button-vue--reverse\", j.isReverseAligned), m(fe, \"active\", te), m(fe, \"router-link-exact-active\", he), fe)], attrs: d({ \"aria-label\": j.ariaLabel, \"aria-pressed\": j.pressed, disabled: j.disabled, type: j.href ? null : j.nativeType, role: j.href ? \"button\" : null, href: !j.to && j.href ? j.href : null, target: !j.to && j.href ? \"_self\" : null, rel: !j.to && j.href ? \"nofollow noreferrer noopener\" : null, download: !j.to && j.href && j.download ? j.download : null }, j.$attrs), on: d(d({}, j.$listeners), {}, { click: function(ye) {\n typeof j.pressed == \"boolean\" && j.$emit(\"update:pressed\", !j.pressed), j.$emit(\"click\", ye), z?.(ye);\n } }) }, [B(\"span\", { class: \"button-vue__wrapper\" }, [le ? B(\"span\", { class: \"button-vue__icon\", attrs: { \"aria-hidden\": j.ariaHidden } }, [j.$slots.icon]) : null, J ? B(\"span\", { class: \"button-vue__text\" }, [ee]) : null])]);\n };\n return this.to ? B(\"router-link\", { props: { custom: !0, to: this.to, exact: this.exact }, scopedSlots: { default: ge } }) : ge();\n } };\n var h = u(3379), y = u.n(h), P = u(7795), v = u.n(P), g = u(569), b = u.n(g), x = u(3565), _ = u.n(x), w = u(9216), L = u.n(w), H = u(4589), C = u.n(H), E = u(7294), T = {};\n T.styleTagTransform = C(), T.setAttributes = _(), T.insert = b().bind(null, \"head\"), T.domAPI = v(), T.insertStyleElement = L(), y()(E.Z, T), E.Z && E.Z.locals && E.Z.locals;\n var f = u(1900), A = u(2102), S = u.n(A), D = (0, f.Z)(p, void 0, void 0, !1, null, \"7aad13a0\", null);\n typeof S() == \"function\" && S()(D);\n const R = D.exports;\n }, 2297: (o, i, u) => {\n u.d(i, { default: () => W });\n var l = u(9454), c = u(4505), d = u(1206);\n function m(U) {\n return m = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(j) {\n return typeof j;\n } : function(j) {\n return j && typeof Symbol == \"function\" && j.constructor === Symbol && j !== Symbol.prototype ? \"symbol\" : typeof j;\n }, m(U);\n }\n function p() {\n p = function() {\n return U;\n };\n var U = {}, j = Object.prototype, ee = j.hasOwnProperty, J = Object.defineProperty || function(M, I, Z) {\n M[I] = Z.value;\n }, le = typeof Symbol == \"function\" ? Symbol : {}, ge = le.iterator || \"@@iterator\", fe = le.asyncIterator || \"@@asyncIterator\", $ = le.toStringTag || \"@@toStringTag\";\n function z(M, I, Z) {\n return Object.defineProperty(M, I, { value: Z, enumerable: !0, configurable: !0, writable: !0 }), M[I];\n }\n try {\n z({}, \"\");\n } catch {\n z = function(M, I, Z) {\n return M[I] = Z;\n };\n }\n function te(M, I, Z, ie) {\n var se = I && I.prototype instanceof Be ? I : Be, Ce = Object.create(se.prototype), Ae = new X(ie || []);\n return J(Ce, \"_invoke\", { value: xe(M, Z, Ae) }), Ce;\n }\n function he(M, I, Z) {\n try {\n return { type: \"normal\", arg: M.call(I, Z) };\n } catch (ie) {\n return { type: \"throw\", arg: ie };\n }\n }\n U.wrap = te;\n var ye = {};\n function Be() {\n }\n function je() {\n }\n function Re() {\n }\n var Oe = {};\n z(Oe, ge, function() {\n return this;\n });\n var me = Object.getPrototypeOf, oe = me && me(me(ce([])));\n oe && oe !== j && ee.call(oe, ge) && (Oe = oe);\n var Y = Re.prototype = Be.prototype = Object.create(Oe);\n function de(M) {\n [\"next\", \"throw\", \"return\"].forEach(function(I) {\n z(M, I, function(Z) {\n return this._invoke(I, Z);\n });\n });\n }\n function re(M, I) {\n function Z(se, Ce, Ae, Le) {\n var ke = he(M[se], M, Ce);\n if (ke.type !== \"throw\") {\n var N = ke.arg, K = N.value;\n return K && m(K) == \"object\" && ee.call(K, \"__await\") ? I.resolve(K.__await).then(function(ue) {\n Z(\"next\", ue, Ae, Le);\n }, function(ue) {\n Z(\"throw\", ue, Ae, Le);\n }) : I.resolve(K).then(function(ue) {\n N.value = ue, Ae(N);\n }, function(ue) {\n return Z(\"throw\", ue, Ae, Le);\n });\n }\n Le(ke.arg);\n }\n var ie;\n J(this, \"_invoke\", { value: function(se, Ce) {\n function Ae() {\n return new I(function(Le, ke) {\n Z(se, Ce, Le, ke);\n });\n }\n return ie = ie ? ie.then(Ae, Ae) : Ae();\n } });\n }\n function xe(M, I, Z) {\n var ie = \"suspendedStart\";\n return function(se, Ce) {\n if (ie === \"executing\")\n throw new Error(\"Generator is already running\");\n if (ie === \"completed\") {\n if (se === \"throw\")\n throw Ce;\n return ne();\n }\n for (Z.method = se, Z.arg = Ce; ; ) {\n var Ae = Z.delegate;\n if (Ae) {\n var Le = Se(Ae, Z);\n if (Le) {\n if (Le === ye)\n continue;\n return Le;\n }\n }\n if (Z.method === \"next\")\n Z.sent = Z._sent = Z.arg;\n else if (Z.method === \"throw\") {\n if (ie === \"suspendedStart\")\n throw ie = \"completed\", Z.arg;\n Z.dispatchException(Z.arg);\n } else\n Z.method === \"return\" && Z.abrupt(\"return\", Z.arg);\n ie = \"executing\";\n var ke = he(M, I, Z);\n if (ke.type === \"normal\") {\n if (ie = Z.done ? \"completed\" : \"suspendedYield\", ke.arg === ye)\n continue;\n return { value: ke.arg, done: Z.done };\n }\n ke.type === \"throw\" && (ie = \"completed\", Z.method = \"throw\", Z.arg = ke.arg);\n }\n };\n }\n function Se(M, I) {\n var Z = I.method, ie = M.iterator[Z];\n if (ie === void 0)\n return I.delegate = null, Z === \"throw\" && M.iterator.return && (I.method = \"return\", I.arg = void 0, Se(M, I), I.method === \"throw\") || Z !== \"return\" && (I.method = \"throw\", I.arg = new TypeError(\"The iterator does not provide a '\" + Z + \"' method\")), ye;\n var se = he(ie, M.iterator, I.arg);\n if (se.type === \"throw\")\n return I.method = \"throw\", I.arg = se.arg, I.delegate = null, ye;\n var Ce = se.arg;\n return Ce ? Ce.done ? (I[M.resultName] = Ce.value, I.next = M.nextLoc, I.method !== \"return\" && (I.method = \"next\", I.arg = void 0), I.delegate = null, ye) : Ce : (I.method = \"throw\", I.arg = new TypeError(\"iterator result is not an object\"), I.delegate = null, ye);\n }\n function V(M) {\n var I = { tryLoc: M[0] };\n 1 in M && (I.catchLoc = M[1]), 2 in M && (I.finallyLoc = M[2], I.afterLoc = M[3]), this.tryEntries.push(I);\n }\n function q(M) {\n var I = M.completion || {};\n I.type = \"normal\", delete I.arg, M.completion = I;\n }\n function X(M) {\n this.tryEntries = [{ tryLoc: \"root\" }], M.forEach(V, this), this.reset(!0);\n }\n function ce(M) {\n if (M) {\n var I = M[ge];\n if (I)\n return I.call(M);\n if (typeof M.next == \"function\")\n return M;\n if (!isNaN(M.length)) {\n var Z = -1, ie = function se() {\n for (; ++Z < M.length; )\n if (ee.call(M, Z))\n return se.value = M[Z], se.done = !1, se;\n return se.value = void 0, se.done = !0, se;\n };\n return ie.next = ie;\n }\n }\n return { next: ne };\n }\n function ne() {\n return { value: void 0, done: !0 };\n }\n return je.prototype = Re, J(Y, \"constructor\", { value: Re, configurable: !0 }), J(Re, \"constructor\", { value: je, configurable: !0 }), je.displayName = z(Re, $, \"GeneratorFunction\"), U.isGeneratorFunction = function(M) {\n var I = typeof M == \"function\" && M.constructor;\n return !!I && (I === je || (I.displayName || I.name) === \"GeneratorFunction\");\n }, U.mark = function(M) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(M, Re) : (M.__proto__ = Re, z(M, $, \"GeneratorFunction\")), M.prototype = Object.create(Y), M;\n }, U.awrap = function(M) {\n return { __await: M };\n }, de(re.prototype), z(re.prototype, fe, function() {\n return this;\n }), U.AsyncIterator = re, U.async = function(M, I, Z, ie, se) {\n se === void 0 && (se = Promise);\n var Ce = new re(te(M, I, Z, ie), se);\n return U.isGeneratorFunction(I) ? Ce : Ce.next().then(function(Ae) {\n return Ae.done ? Ae.value : Ce.next();\n });\n }, de(Y), z(Y, $, \"Generator\"), z(Y, ge, function() {\n return this;\n }), z(Y, \"toString\", function() {\n return \"[object Generator]\";\n }), U.keys = function(M) {\n var I = Object(M), Z = [];\n for (var ie in I)\n Z.push(ie);\n return Z.reverse(), function se() {\n for (; Z.length; ) {\n var Ce = Z.pop();\n if (Ce in I)\n return se.value = Ce, se.done = !1, se;\n }\n return se.done = !0, se;\n };\n }, U.values = ce, X.prototype = { constructor: X, reset: function(M) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = void 0, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = void 0, this.tryEntries.forEach(q), !M)\n for (var I in this)\n I.charAt(0) === \"t\" && ee.call(this, I) && !isNaN(+I.slice(1)) && (this[I] = void 0);\n }, stop: function() {\n this.done = !0;\n var M = this.tryEntries[0].completion;\n if (M.type === \"throw\")\n throw M.arg;\n return this.rval;\n }, dispatchException: function(M) {\n if (this.done)\n throw M;\n var I = this;\n function Z(ke, N) {\n return Ce.type = \"throw\", Ce.arg = M, I.next = ke, N && (I.method = \"next\", I.arg = void 0), !!N;\n }\n for (var ie = this.tryEntries.length - 1; ie >= 0; --ie) {\n var se = this.tryEntries[ie], Ce = se.completion;\n if (se.tryLoc === \"root\")\n return Z(\"end\");\n if (se.tryLoc <= this.prev) {\n var Ae = ee.call(se, \"catchLoc\"), Le = ee.call(se, \"finallyLoc\");\n if (Ae && Le) {\n if (this.prev < se.catchLoc)\n return Z(se.catchLoc, !0);\n if (this.prev < se.finallyLoc)\n return Z(se.finallyLoc);\n } else if (Ae) {\n if (this.prev < se.catchLoc)\n return Z(se.catchLoc, !0);\n } else {\n if (!Le)\n throw new Error(\"try statement without catch or finally\");\n if (this.prev < se.finallyLoc)\n return Z(se.finallyLoc);\n }\n }\n }\n }, abrupt: function(M, I) {\n for (var Z = this.tryEntries.length - 1; Z >= 0; --Z) {\n var ie = this.tryEntries[Z];\n if (ie.tryLoc <= this.prev && ee.call(ie, \"finallyLoc\") && this.prev < ie.finallyLoc) {\n var se = ie;\n break;\n }\n }\n se && (M === \"break\" || M === \"continue\") && se.tryLoc <= I && I <= se.finallyLoc && (se = null);\n var Ce = se ? se.completion : {};\n return Ce.type = M, Ce.arg = I, se ? (this.method = \"next\", this.next = se.finallyLoc, ye) : this.complete(Ce);\n }, complete: function(M, I) {\n if (M.type === \"throw\")\n throw M.arg;\n return M.type === \"break\" || M.type === \"continue\" ? this.next = M.arg : M.type === \"return\" ? (this.rval = this.arg = M.arg, this.method = \"return\", this.next = \"end\") : M.type === \"normal\" && I && (this.next = I), ye;\n }, finish: function(M) {\n for (var I = this.tryEntries.length - 1; I >= 0; --I) {\n var Z = this.tryEntries[I];\n if (Z.finallyLoc === M)\n return this.complete(Z.completion, Z.afterLoc), q(Z), ye;\n }\n }, catch: function(M) {\n for (var I = this.tryEntries.length - 1; I >= 0; --I) {\n var Z = this.tryEntries[I];\n if (Z.tryLoc === M) {\n var ie = Z.completion;\n if (ie.type === \"throw\") {\n var se = ie.arg;\n q(Z);\n }\n return se;\n }\n }\n throw new Error(\"illegal catch attempt\");\n }, delegateYield: function(M, I, Z) {\n return this.delegate = { iterator: ce(M), resultName: I, nextLoc: Z }, this.method === \"next\" && (this.arg = void 0), ye;\n } }, U;\n }\n function h(U, j, ee, J, le, ge, fe) {\n try {\n var $ = U[ge](fe), z = $.value;\n } catch (te) {\n return void ee(te);\n }\n $.done ? j(z) : Promise.resolve(z).then(J, le);\n }\n const y = { name: \"NcPopover\", components: { Dropdown: l.Dropdown }, inheritAttrs: !1, props: { popoverBaseClass: { type: String, default: \"\" }, focusTrap: { type: Boolean, default: !0 }, setReturnFocus: { default: void 0, type: [HTMLElement, SVGElement, String, Boolean] } }, emits: [\"after-show\", \"after-hide\"], beforeDestroy: function() {\n this.clearFocusTrap();\n }, methods: { useFocusTrap: function() {\n var U, j = this;\n return (U = p().mark(function ee() {\n var J, le;\n return p().wrap(function(ge) {\n for (; ; )\n switch (ge.prev = ge.next) {\n case 0:\n return ge.next = 2, j.$nextTick();\n case 2:\n if (j.focusTrap) {\n ge.next = 4;\n break;\n }\n return ge.abrupt(\"return\");\n case 4:\n if (le = (J = j.$refs.popover) === null || J === void 0 || (J = J.$refs.popperContent) === null || J === void 0 ? void 0 : J.$el) {\n ge.next = 7;\n break;\n }\n return ge.abrupt(\"return\");\n case 7:\n j.$focusTrap = (0, c.createFocusTrap)(le, { escapeDeactivates: !1, allowOutsideClick: !0, setReturnFocus: j.setReturnFocus, trapStack: (0, d.L)() }), j.$focusTrap.activate();\n case 9:\n case \"end\":\n return ge.stop();\n }\n }, ee);\n }), function() {\n var ee = this, J = arguments;\n return new Promise(function(le, ge) {\n var fe = U.apply(ee, J);\n function $(te) {\n h(fe, le, ge, $, z, \"next\", te);\n }\n function z(te) {\n h(fe, le, ge, $, z, \"throw\", te);\n }\n $(void 0);\n });\n })();\n }, clearFocusTrap: function() {\n var U = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};\n try {\n var j;\n (j = this.$focusTrap) === null || j === void 0 || j.deactivate(U), this.$focusTrap = null;\n } catch (ee) {\n console.warn(ee);\n }\n }, afterShow: function() {\n var U = this;\n this.$nextTick(function() {\n U.$emit(\"after-show\"), U.useFocusTrap();\n });\n }, afterHide: function() {\n this.$emit(\"after-hide\"), this.clearFocusTrap();\n } } }, P = y;\n var v = u(3379), g = u.n(v), b = u(7795), x = u.n(b), _ = u(569), w = u.n(_), L = u(3565), H = u.n(L), C = u(9216), E = u.n(C), T = u(4589), f = u.n(T), A = u(1625), S = {};\n S.styleTagTransform = f(), S.setAttributes = H(), S.insert = w().bind(null, \"head\"), S.domAPI = x(), S.insertStyleElement = E(), g()(A.Z, S), A.Z && A.Z.locals && A.Z.locals;\n var D = u(1900), R = u(2405), B = u.n(R), F = (0, D.Z)(P, function() {\n var U = this;\n return (0, U._self._c)(\"Dropdown\", U._g(U._b({ ref: \"popover\", attrs: { distance: 10, \"arrow-padding\": 10, \"no-auto-focus\": !0, \"popper-class\": U.popoverBaseClass }, on: { \"apply-show\": U.afterShow, \"apply-hide\": U.afterHide }, scopedSlots: U._u([{ key: \"popper\", fn: function() {\n return [U._t(\"default\")];\n }, proxy: !0 }], null, !0) }, \"Dropdown\", U.$attrs, !1), U.$listeners), [U._t(\"trigger\")], 2);\n }, [], !1, null, null, null);\n typeof B() == \"function\" && B()(F);\n const W = F.exports;\n }, 932: (o, i, u) => {\n u.d(i, { t: () => m });\n var l = u(7931), c = (0, l.getGettextBuilder)().detectLocale();\n [{ locale: \"af\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ar\", translations: { \"{tag} (invisible)\": \"{tag} (غير مرئي)\", \"{tag} (restricted)\": \"{tag} (مقيد)\", \"a few seconds ago\": \"منذ عدة ثوانٍ مضت\", Actions: \"الإجراءات\", 'Actions for item with name \"{name}\"': 'إجراءات على العنصر المُسمَّى \"{name}\"', Activities: \"الحركات\", \"Animals & Nature\": \"الحيوانات والطبيعة\", \"Any link\": \"أيَّ رابطٍ\", \"Anything shared with the same group of people will show up here\": \"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\", \"Avatar of {displayName}\": \"الرمز التجسيدي avatar ـ {displayName} \", \"Avatar of {displayName}, {status}\": \"الرمز التجسيدي لـ {displayName}، {status}\", Back: \"عودة\", \"Back to provider selection\": \"عودة إلى اختيار المُزوِّد\", \"Cancel changes\": \"إلغاء التغييرات\", \"Change name\": \"تغيير الاسم\", Choose: \"إختَر\", \"Clear search\": \"محو البحث\", \"Clear text\": \"محو النص\", Close: \"أغلِق\", \"Close modal\": \"أغلِق النافذة الصُّورِية\", \"Close navigation\": \"أغلِق المُتصفِّح\", \"Close sidebar\": \"قفل الشريط الجانبي\", \"Close Smart Picker\": \"أغلِق اللاقط الذكي Smart Picker\", \"Collapse menu\": \"طَيّ القائمة\", \"Confirm changes\": \"تأكيد التغييرات\", Custom: \"مُخصَّص\", \"Edit item\": \"تعديل عنصر\", \"Enter link\": \"أدخِل الرابط\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\", \"External documentation for {name}\": \"التوثيق الخارجي لـ {name}\", Favorite: \"المُفضَّلة\", Flags: \"الأعلام\", \"Food & Drink\": \"الطعام والشراب\", \"Frequently used\": \"شائعة الاستعمال\", Global: \"شامل\", \"Go back to the list\": \"عودة إلى القائمة\", \"Hide password\": \"إخفاء كلمة المرور\", 'Load more \"{options}\"\"': 'حمّل \"{options}\"\" أكثر', \"Message limit of {count} characters reached\": \"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\", \"More items …\": \"عناصر أخرى ...\", \"More options\": \"خيارات أخرى ...\", Next: \"التالي\", \"No emoji found\": \"لم يتم العثور على أي إيموجي emoji\", \"No link provider found\": \"لا يوجد أيّ مزود روابط link provider\", \"No results\": \"ليس هناك أية نتيجة\", Objects: \"أشياء\", \"Open contact menu\": \"إفتَح قائمة جهات الاتصال\", 'Open link to \"{resourceName}\"': 'إفتَح الرابط إلى \"{resourceName}\"', \"Open menu\": \"إفتَح القائمة\", \"Open navigation\": \"إفتَح المتصفح\", \"Open settings menu\": \"إفتَح قائمة الإعدادات\", \"Password is secure\": \"كلمة المرور مُؤمّنة\", \"Pause slideshow\": \"تجميد عرض الشرائح\", \"People & Body\": \"ناس و أجسام\", \"Pick a date\": \"إختَر التاريخ\", \"Pick a date and a time\": \"إختَر التاريخ و الوقت\", \"Pick a month\": \"إختَر الشهر\", \"Pick a time\": \"إختَر الوقت\", \"Pick a week\": \"إختَر الأسبوع\", \"Pick a year\": \"إختَر السنة\", \"Pick an emoji\": \"إختَر رمز إيموجي emoji\", \"Please select a time zone:\": \"الرجاء تحديد المنطقة الزمنية:\", Previous: \"السابق\", \"Provider icon\": \"أيقونة المُزوِّد\", \"Raw link {options}\": \" الرابط الخام raw link ـ {options}\", \"Related resources\": \"مصادر ذات صلة\", Search: \"بحث\", \"Search emoji\": \"بحث عن إيموجي emoji\", \"Search results\": \"نتائج البحث\", \"sec. ago\": \"ثانية مضت\", \"seconds ago\": \"ثوان مضت\", \"Select a tag\": \"إختَر سِمَةً tag\", \"Select provider\": \"إختَر مٌزوِّداً\", Settings: \"الإعدادات\", \"Settings navigation\": \"إعدادات التّصفُّح\", \"Show password\": \"أظهِر كلمة المرور\", \"Smart Picker\": \"اللاقط الذكي smart picker\", \"Smileys & Emotion\": \"وجوهٌ ضاحكة و مشاعر\", \"Start slideshow\": \"إبدإ العرض\", \"Start typing to search\": \"إبدإ كتابة مفردات البحث\", Submit: \"إرسال\", Symbols: \"رموز\", \"Travel & Places\": \"سفر و أماكن\", \"Type to search time zone\": \"أكتُب للبحث عن منطقة زمنية\", \"Unable to search the group\": \"تعذّر البحث في المجموعة\", \"Undo changes\": \"تراجع عن التغييرات\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...' } }, { locale: \"ast\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"az\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"be\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bg\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bn_BD\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"br\", translations: { \"{tag} (invisible)\": \"{tag} (diwelus)\", \"{tag} (restricted)\": \"{tag} (bevennet)\", \"a few seconds ago\": \"\", Actions: \"Oberioù\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Oberiantizoù\", \"Animals & Nature\": \"Loened & Natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Dibab\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Serriñ\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Personelañ\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Bannieloù\", \"Food & Drink\": \"Boued & Evajoù\", \"Frequently used\": \"Implijet alies\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Da heul\", \"No emoji found\": \"Emoji ebet kavet\", \"No link provider found\": \"\", \"No results\": \"Disoc'h ebet\", Objects: \"Traoù\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Arsav an diaporama\", \"People & Body\": \"Tud & Korf\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Choaz un emoji\", \"Please select a time zone:\": \"\", Previous: \"A-raok\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Klask\", \"Search emoji\": \"\", \"Search results\": \"Disoc'hoù an enklask\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Choaz ur c'hlav\", \"Select provider\": \"\", Settings: \"Arventennoù\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileyioù & Fromoù\", \"Start slideshow\": \"Kregiñ an diaporama\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Arouezioù\", \"Travel & Places\": \"Beaj & Lec'hioù\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Dibosupl eo klask ar strollad\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bs\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ca\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restringit)\", \"a few seconds ago\": \"\", Actions: \"Accions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activitats\", \"Animals & Nature\": \"Animals i natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancel·la els canvis\", \"Change name\": \"\", Choose: \"Tria\", \"Clear search\": \"\", \"Clear text\": \"Netejar text\", Close: \"Tanca\", \"Close modal\": \"Tancar el mode\", \"Close navigation\": \"Tanca la navegació\", \"Close sidebar\": \"Tancar la barra lateral\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmeu els canvis\", Custom: \"Personalitzat\", \"Edit item\": \"Edita l'element\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Preferit\", Flags: \"Marques\", \"Food & Drink\": \"Menjar i begudes\", \"Frequently used\": \"Utilitzats recentment\", Global: \"Global\", \"Go back to the list\": \"Torna a la llista\", \"Hide password\": \"Amagar contrasenya\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"S'ha arribat al límit de {count} caràcters per missatge\", \"More items …\": \"Més artícles...\", \"More options\": \"\", Next: \"Següent\", \"No emoji found\": \"No s'ha trobat cap emoji\", \"No link provider found\": \"\", \"No results\": \"Sense resultats\", Objects: \"Objectes\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Obre la navegació\", \"Open settings menu\": \"\", \"Password is secure\": \"Contrasenya segura
\", \"Pause slideshow\": \"Atura la presentació\", \"People & Body\": \"Persones i cos\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Trieu un emoji\", \"Please select a time zone:\": \"Seleccioneu una zona horària:\", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Recursos relacionats\", Search: \"Cerca\", \"Search emoji\": \"\", \"Search results\": \"Resultats de cerca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccioneu una etiqueta\", \"Select provider\": \"\", Settings: \"Paràmetres\", \"Settings navigation\": \"Navegació d'opcions\", \"Show password\": \"Mostrar contrasenya\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Cares i emocions\", \"Start slideshow\": \"Inicia la presentació\", \"Start typing to search\": \"\", Submit: \"Envia\", Symbols: \"Símbols\", \"Travel & Places\": \"Viatges i llocs\", \"Type to search time zone\": \"Escriviu per cercar la zona horària\", \"Unable to search the group\": \"No es pot cercar el grup\", \"Undo changes\": \"Desfés els canvis\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...' } }, { locale: \"cs\", translations: { \"{tag} (invisible)\": \"{tag} (neviditelné)\", \"{tag} (restricted)\": \"{tag} (omezené)\", \"a few seconds ago\": \"před několika sekundami\", Actions: \"Akce\", 'Actions for item with name \"{name}\"': \"Akce pro položku s názvem „{name}“\", Activities: \"Aktivity\", \"Animals & Nature\": \"Zvířata a příroda\", \"Any link\": \"Jakýkoli odkaz\", \"Anything shared with the same group of people will show up here\": \"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\", \"Avatar of {displayName}\": \"Zástupný obrázek uživatele {displayName}\", \"Avatar of {displayName}, {status}\": \"Zástupný obrázek uživatele {displayName}, {status}\", Back: \"Zpět\", \"Back to provider selection\": \"Zpět na výběr poskytovatele\", \"Cancel changes\": \"Zrušit změny\", \"Change name\": \"Změnit název\", Choose: \"Zvolit\", \"Clear search\": \"Vyčistit vyhledávání\", \"Clear text\": \"Čitelný text\", Close: \"Zavřít\", \"Close modal\": \"Zavřít dialogové okno\", \"Close navigation\": \"Zavřít navigaci\", \"Close sidebar\": \"Zavřít postranní panel\", \"Close Smart Picker\": \"Zavřít inteligentní výběr\", \"Collapse menu\": \"Sbalit nabídku\", \"Confirm changes\": \"Potvrdit změny\", Custom: \"Uživatelsky určené\", \"Edit item\": \"Upravit položku\", \"Enter link\": \"Zadat odkaz\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\", \"External documentation for {name}\": \"Externí dokumentace pro {name}\", Favorite: \"Oblíbené\", Flags: \"Příznaky\", \"Food & Drink\": \"Jídlo a pití\", \"Frequently used\": \"Často používané\", Global: \"Globální\", \"Go back to the list\": \"Jít zpět na seznam\", \"Hide password\": \"Skrýt heslo\", 'Load more \"{options}\"\"': \"Načíst více „{options}“\", \"Message limit of {count} characters reached\": \"Dosaženo limitu počtu ({count}) znaků zprávy\", \"More items …\": \"Další položky…\", \"More options\": \"Další volby\", Next: \"Následující\", \"No emoji found\": \"Nenalezeno žádné emoji\", \"No link provider found\": \"Nenalezen žádný poskytovatel odkazů\", \"No results\": \"Nic nenalezeno\", Objects: \"Objekty\", \"Open contact menu\": \"Otevřít nabídku kontaktů\", 'Open link to \"{resourceName}\"': \"Otevřít odkaz na „{resourceName}“\", \"Open menu\": \"Otevřít nabídku\", \"Open navigation\": \"Otevřít navigaci\", \"Open settings menu\": \"Otevřít nabídku nastavení\", \"Password is secure\": \"Heslo je bezpečné\", \"Pause slideshow\": \"Pozastavit prezentaci\", \"People & Body\": \"Lidé a tělo\", \"Pick a date\": \"Vybrat datum\", \"Pick a date and a time\": \"Vybrat datum a čas\", \"Pick a month\": \"Vybrat měsíc\", \"Pick a time\": \"Vybrat čas\", \"Pick a week\": \"Vybrat týden\", \"Pick a year\": \"Vybrat rok\", \"Pick an emoji\": \"Vybrat emoji\", \"Please select a time zone:\": \"Vyberte časovou zónu:\", Previous: \"Předchozí\", \"Provider icon\": \"Ikona poskytovatele\", \"Raw link {options}\": \"Holý odkaz {options}\", \"Related resources\": \"Související prostředky\", Search: \"Hledat\", \"Search emoji\": \"Hledat emoji\", \"Search results\": \"Výsledky hledání\", \"sec. ago\": \"sek. před\", \"seconds ago\": \"sekund předtím\", \"Select a tag\": \"Vybrat štítek\", \"Select provider\": \"Vybrat poskytovatele\", Settings: \"Nastavení\", \"Settings navigation\": \"Pohyb po nastavení\", \"Show password\": \"Zobrazit heslo\", \"Smart Picker\": \"Inteligentní výběr\", \"Smileys & Emotion\": \"Úsměvy a emoce\", \"Start slideshow\": \"Spustit prezentaci\", \"Start typing to search\": \"Vyhledávejte psaním\", Submit: \"Odeslat\", Symbols: \"Symboly\", \"Travel & Places\": \"Cestování a místa\", \"Type to search time zone\": \"Psaním vyhledejte časovou zónu\", \"Unable to search the group\": \"Nedaří se hledat skupinu\", \"Undo changes\": \"Vzít změny zpět\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\" } }, { locale: \"cy_GB\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"da\", translations: { \"{tag} (invisible)\": \"{tag} (usynlig)\", \"{tag} (restricted)\": \"{tag} (begrænset)\", \"a few seconds ago\": \"et par sekunder siden\", Actions: \"Handlinger\", 'Actions for item with name \"{name}\"': 'Handlinger for element med navnet \"{name}\"', Activities: \"Aktiviteter\", \"Animals & Nature\": \"Dyr & Natur\", \"Any link\": \"Ethvert link\", \"Anything shared with the same group of people will show up here\": \"Alt der deles med samme gruppe af personer vil vises her\", \"Avatar of {displayName}\": \"Avatar af {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar af {displayName}, {status}\", Back: \"Tilbage\", \"Back to provider selection\": \"Tilbage til udbydervalg\", \"Cancel changes\": \"Annuller ændringer\", \"Change name\": \"Ændre navn\", Choose: \"Vælg\", \"Clear search\": \"Ryd søgning\", \"Clear text\": \"Ryd tekst\", Close: \"Luk\", \"Close modal\": \"Luk vindue\", \"Close navigation\": \"Luk navigation\", \"Close sidebar\": \"Luk sidepanel\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Bekræft ændringer\", Custom: \"Brugerdefineret\", \"Edit item\": \"Rediger emne\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Flag\", \"Food & Drink\": \"Mad & Drikke\", \"Frequently used\": \"Ofte brugt\", Global: \"Global\", \"Go back to the list\": \"Tilbage til listen\", \"Hide password\": \"Skjul kodeord\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Begrænsning på {count} tegn er nået\", \"More items …\": \"Mere ...\", \"More options\": \"\", Next: \"Videre\", \"No emoji found\": \"Ingen emoji fundet\", \"No link provider found\": \"\", \"No results\": \"Ingen resultater\", Objects: \"Objekter\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Åbn navigation\", \"Open settings menu\": \"\", \"Password is secure\": \"Kodeordet er sikkert\", \"Pause slideshow\": \"Suspender fremvisning\", \"People & Body\": \"Mennesker & Menneskekroppen\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Vælg en emoji\", \"Please select a time zone:\": \"Vælg venligst en tidszone:\", Previous: \"Forrige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Relaterede emner\", Search: \"Søg\", \"Search emoji\": \"\", \"Search results\": \"Søgeresultater\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Vælg et mærke\", \"Select provider\": \"\", Settings: \"Indstillinger\", \"Settings navigation\": \"Naviger i indstillinger\", \"Show password\": \"Vis kodeord\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotion\", \"Start slideshow\": \"Start fremvisning\", \"Start typing to search\": \"\", Submit: \"Send\", Symbols: \"Symboler\", \"Travel & Places\": \"Rejser & Rejsemål\", \"Type to search time zone\": \"Indtast for at søge efter tidszone\", \"Unable to search the group\": \"Kan ikke søge på denne gruppe\", \"Undo changes\": \"Fortryd ændringer\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...' } }, { locale: \"de\", translations: { \"{tag} (invisible)\": \"{tag} (unsichtbar)\", \"{tag} (restricted)\": \"{tag} (eingeschränkt)\", \"a few seconds ago\": \"\", Actions: \"Aktionen\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivitäten\", \"Animals & Nature\": \"Tiere & Natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\", \"Avatar of {displayName}\": \"Avatar von {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar von {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Änderungen verwerfen\", \"Change name\": \"\", Choose: \"Auswählen\", \"Clear search\": \"\", \"Clear text\": \"Klartext\", Close: \"Schließen\", \"Close modal\": \"Modal schließen\", \"Close navigation\": \"Navigation schließen\", \"Close sidebar\": \"Seitenleiste schließen\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Änderungen bestätigen\", Custom: \"Benutzerdefiniert\", \"Edit item\": \"Objekt bearbeiten\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Flaggen\", \"Food & Drink\": \"Essen & Trinken\", \"Frequently used\": \"Häufig verwendet\", Global: \"Global\", \"Go back to the list\": \"Zurück zur Liste\", \"Hide password\": \"Passwort verbergen\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Nachrichtenlimit von {count} Zeichen erreicht\", \"More items …\": \"Weitere Elemente …\", \"More options\": \"\", Next: \"Weiter\", \"No emoji found\": \"Kein Emoji gefunden\", \"No link provider found\": \"\", \"No results\": \"Keine Ergebnisse\", Objects: \"Gegenstände\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigation öffnen\", \"Open settings menu\": \"\", \"Password is secure\": \"Passwort ist sicher\", \"Pause slideshow\": \"Diashow pausieren\", \"People & Body\": \"Menschen & Körper\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Ein Emoji auswählen\", \"Please select a time zone:\": \"Bitte wählen Sie eine Zeitzone:\", Previous: \"Vorherige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Verwandte Ressourcen\", Search: \"Suche\", \"Search emoji\": \"\", \"Search results\": \"Suchergebnisse\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Schlagwort auswählen\", \"Select provider\": \"\", Settings: \"Einstellungen\", \"Settings navigation\": \"Einstellungen für die Navigation\", \"Show password\": \"Passwort anzeigen\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotionen\", \"Start slideshow\": \"Diashow starten\", \"Start typing to search\": \"\", Submit: \"Einreichen\", Symbols: \"Symbole\", \"Travel & Places\": \"Reisen & Orte\", \"Type to search time zone\": \"Tippen, um Zeitzone zu suchen\", \"Unable to search the group\": \"Die Gruppe konnte nicht durchsucht werden\", \"Undo changes\": \"Änderungen rückgängig machen\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …' } }, { locale: \"de_DE\", translations: { \"{tag} (invisible)\": \"{tag} (unsichtbar)\", \"{tag} (restricted)\": \"{tag} (eingeschränkt)\", \"a few seconds ago\": \"vor ein paar Sekunden\", Actions: \"Aktionen\", 'Actions for item with name \"{name}\"': 'Aktionen für Element mit dem Namen \"{name}“', Activities: \"Aktivitäten\", \"Animals & Nature\": \"Tiere & Natur\", \"Any link\": \"Irgendein Link\", \"Anything shared with the same group of people will show up here\": \"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\", \"Avatar of {displayName}\": \"Avatar von {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar von {displayName}, {status}\", Back: \"Zurück\", \"Back to provider selection\": \"Zurück zur Anbieterauswahl\", \"Cancel changes\": \"Änderungen verwerfen\", \"Change name\": \"Namen ändern\", Choose: \"Auswählen\", \"Clear search\": \"Suche leeren\", \"Clear text\": \"Klartext\", Close: \"Schließen\", \"Close modal\": \"Modal schließen\", \"Close navigation\": \"Navigation schließen\", \"Close sidebar\": \"Seitenleiste schließen\", \"Close Smart Picker\": \"Intelligente Auswahl schließen\", \"Collapse menu\": \"Menü einklappen\", \"Confirm changes\": \"Änderungen bestätigen\", Custom: \"Benutzerdefiniert\", \"Edit item\": \"Objekt bearbeiten\", \"Enter link\": \"Link eingeben\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\", \"External documentation for {name}\": \"Externe Dokumentation für {name}\", Favorite: \"Favorit\", Flags: \"Flaggen\", \"Food & Drink\": \"Essen & Trinken\", \"Frequently used\": \"Häufig verwendet\", Global: \"Global\", \"Go back to the list\": \"Zurück zur Liste\", \"Hide password\": \"Passwort verbergen\", 'Load more \"{options}\"\"': 'Weitere \"{options}“ laden', \"Message limit of {count} characters reached\": \"Nachrichtenlimit von {count} Zeichen erreicht\", \"More items …\": \"Weitere Elemente …\", \"More options\": \"Mehr Optionen\", Next: \"Weiter\", \"No emoji found\": \"Kein Emoji gefunden\", \"No link provider found\": \"Kein Linkanbieter gefunden\", \"No results\": \"Keine Ergebnisse\", Objects: \"Objekte\", \"Open contact menu\": \"Kontaktmenü öffnen\", 'Open link to \"{resourceName}\"': 'Link zu \"{resourceName}“ öffnen', \"Open menu\": \"Menü öffnen\", \"Open navigation\": \"Navigation öffnen\", \"Open settings menu\": \"Einstellungsmenü öffnen\", \"Password is secure\": \"Passwort ist sicher\", \"Pause slideshow\": \"Diashow pausieren\", \"People & Body\": \"Menschen & Körper\", \"Pick a date\": \"Ein Datum auswählen\", \"Pick a date and a time\": \"Datum und Uhrzeit auswählen\", \"Pick a month\": \"Einen Monat auswählen\", \"Pick a time\": \"Eine Uhrzeit auswählen\", \"Pick a week\": \"Eine Woche auswählen\", \"Pick a year\": \"Ein Jahr auswählen\", \"Pick an emoji\": \"Ein Emoji auswählen\", \"Please select a time zone:\": \"Bitte eine Zeitzone auswählen:\", Previous: \"Vorherige\", \"Provider icon\": \"Anbietersymbol\", \"Raw link {options}\": \"Unverarbeiteter Link {Optionen}\", \"Related resources\": \"Verwandte Ressourcen\", Search: \"Suche\", \"Search emoji\": \"Emoji suchen\", \"Search results\": \"Suchergebnisse\", \"sec. ago\": \"Sek. zuvor\", \"seconds ago\": \"Sekunden zuvor\", \"Select a tag\": \"Schlagwort auswählen\", \"Select provider\": \"Anbieter auswählen\", Settings: \"Einstellungen\", \"Settings navigation\": \"Einstellungen für die Navigation\", \"Show password\": \"Passwort anzeigen\", \"Smart Picker\": \"Intelligente Auswahl\", \"Smileys & Emotion\": \"Smileys & Emotionen\", \"Start slideshow\": \"Diashow starten\", \"Start typing to search\": \"Mit der Eingabe beginnen, um zu suchen\", Submit: \"Einreichen\", Symbols: \"Symbole\", \"Travel & Places\": \"Reisen & Orte\", \"Type to search time zone\": \"Tippen, um eine Zeitzone zu suchen\", \"Unable to search the group\": \"Die Gruppe kann nicht durchsucht werden\", \"Undo changes\": \"Änderungen rückgängig machen\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …' } }, { locale: \"el\", translations: { \"{tag} (invisible)\": \"{tag} (αόρατο)\", \"{tag} (restricted)\": \"{tag} (περιορισμένο)\", \"a few seconds ago\": \"\", Actions: \"Ενέργειες\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Δραστηριότητες\", \"Animals & Nature\": \"Ζώα & Φύση\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\", \"Avatar of {displayName}\": \"Άβαταρ του {displayName}\", \"Avatar of {displayName}, {status}\": \"Άβαταρ του {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Ακύρωση αλλαγών\", \"Change name\": \"\", Choose: \"Επιλογή\", \"Clear search\": \"\", \"Clear text\": \"Εκκαθάριση κειμένου\", Close: \"Κλείσιμο\", \"Close modal\": \"Βοηθητικό κλείσιμο\", \"Close navigation\": \"Κλείσιμο πλοήγησης\", \"Close sidebar\": \"Κλείσιμο πλευρικής μπάρας\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Επιβεβαίωση αλλαγών\", Custom: \"Προσαρμογή\", \"Edit item\": \"Επεξεργασία\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Αγαπημένα\", Flags: \"Σημαίες\", \"Food & Drink\": \"Φαγητό & Ποτό\", \"Frequently used\": \"Συχνά χρησιμοποιούμενο\", Global: \"Καθολικό\", \"Go back to the list\": \"Επιστροφή στην αρχική λίστα \", \"Hide password\": \"Απόκρυψη κωδικού πρόσβασης\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\", \"More items …\": \"Περισσότερα στοιχεία …\", \"More options\": \"\", Next: \"Επόμενο\", \"No emoji found\": \"Δεν βρέθηκε emoji\", \"No link provider found\": \"\", \"No results\": \"Κανένα αποτέλεσμα\", Objects: \"Αντικείμενα\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Άνοιγμα πλοήγησης\", \"Open settings menu\": \"\", \"Password is secure\": \"Ο κωδικός πρόσβασης είναι ασφαλής\", \"Pause slideshow\": \"Παύση προβολής διαφανειών\", \"People & Body\": \"Άνθρωποι & Σώμα\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Επιλέξτε ένα emoji\", \"Please select a time zone:\": \"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\", Previous: \"Προηγούμενο\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Σχετικοί πόροι\", Search: \"Αναζήτηση\", \"Search emoji\": \"\", \"Search results\": \"Αποτελέσματα αναζήτησης\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Επιλογή ετικέτας\", \"Select provider\": \"\", Settings: \"Ρυθμίσεις\", \"Settings navigation\": \"Πλοήγηση ρυθμίσεων\", \"Show password\": \"Εμφάνιση κωδικού πρόσβασης\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Φατσούλες & Συναίσθημα\", \"Start slideshow\": \"Έναρξη προβολής διαφανειών\", \"Start typing to search\": \"\", Submit: \"Υποβολή\", Symbols: \"Σύμβολα\", \"Travel & Places\": \"Ταξίδια & Τοποθεσίες\", \"Type to search time zone\": \"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\", \"Unable to search the group\": \"Δεν είναι δυνατή η αναζήτηση της ομάδας\", \"Undo changes\": \"Αναίρεση Αλλαγών\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …' } }, { locale: \"en_GB\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restricted)\", \"a few seconds ago\": \"a few seconds ago\", Actions: \"Actions\", 'Actions for item with name \"{name}\"': 'Actions for item with name \"{name}\"', Activities: \"Activities\", \"Animals & Nature\": \"Animals & Nature\", \"Any link\": \"Any link\", \"Anything shared with the same group of people will show up here\": \"Anything shared with the same group of people will show up here\", \"Avatar of {displayName}\": \"Avatar of {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar of {displayName}, {status}\", Back: \"Back\", \"Back to provider selection\": \"Back to provider selection\", \"Cancel changes\": \"Cancel changes\", \"Change name\": \"Change name\", Choose: \"Choose\", \"Clear search\": \"Clear search\", \"Clear text\": \"Clear text\", Close: \"Close\", \"Close modal\": \"Close modal\", \"Close navigation\": \"Close navigation\", \"Close sidebar\": \"Close sidebar\", \"Close Smart Picker\": \"Close Smart Picker\", \"Collapse menu\": \"Collapse menu\", \"Confirm changes\": \"Confirm changes\", Custom: \"Custom\", \"Edit item\": \"Edit item\", \"Enter link\": \"Enter link\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error getting related resources. Please contact your system administrator if you have any questions.\", \"External documentation for {name}\": \"External documentation for {name}\", Favorite: \"Favourite\", Flags: \"Flags\", \"Food & Drink\": \"Food & Drink\", \"Frequently used\": \"Frequently used\", Global: \"Global\", \"Go back to the list\": \"Go back to the list\", \"Hide password\": \"Hide password\", 'Load more \"{options}\"\"': 'Load more \"{options}\"\"', \"Message limit of {count} characters reached\": \"Message limit of {count} characters reached\", \"More items …\": \"More items …\", \"More options\": \"More options\", Next: \"Next\", \"No emoji found\": \"No emoji found\", \"No link provider found\": \"No link provider found\", \"No results\": \"No results\", Objects: \"Objects\", \"Open contact menu\": \"Open contact menu\", 'Open link to \"{resourceName}\"': 'Open link to \"{resourceName}\"', \"Open menu\": \"Open menu\", \"Open navigation\": \"Open navigation\", \"Open settings menu\": \"Open settings menu\", \"Password is secure\": \"Password is secure\", \"Pause slideshow\": \"Pause slideshow\", \"People & Body\": \"People & Body\", \"Pick a date\": \"Pick a date\", \"Pick a date and a time\": \"Pick a date and a time\", \"Pick a month\": \"Pick a month\", \"Pick a time\": \"Pick a time\", \"Pick a week\": \"Pick a week\", \"Pick a year\": \"Pick a year\", \"Pick an emoji\": \"Pick an emoji\", \"Please select a time zone:\": \"Please select a time zone:\", Previous: \"Previous\", \"Provider icon\": \"Provider icon\", \"Raw link {options}\": \"Raw link {options}\", \"Related resources\": \"Related resources\", Search: \"Search\", \"Search emoji\": \"Search emoji\", \"Search results\": \"Search results\", \"sec. ago\": \"sec. ago\", \"seconds ago\": \"seconds ago\", \"Select a tag\": \"Select a tag\", \"Select provider\": \"Select provider\", Settings: \"Settings\", \"Settings navigation\": \"Settings navigation\", \"Show password\": \"Show password\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Smileys & Emotion\", \"Start slideshow\": \"Start slideshow\", \"Start typing to search\": \"Start typing to search\", Submit: \"Submit\", Symbols: \"Symbols\", \"Travel & Places\": \"Travel & Places\", \"Type to search time zone\": \"Type to search time zone\", \"Unable to search the group\": \"Unable to search the group\", \"Undo changes\": \"Undo changes\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …' } }, { locale: \"eo\", translations: { \"{tag} (invisible)\": \"{tag} (kaŝita)\", \"{tag} (restricted)\": \"{tag} (limigita)\", \"a few seconds ago\": \"\", Actions: \"Agoj\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiveco\", \"Animals & Nature\": \"Bestoj & Naturo\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Elektu\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Fermu\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Propra\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Flagoj\", \"Food & Drink\": \"Manĝaĵo & Trinkaĵo\", \"Frequently used\": \"Ofte uzataj\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"La limo je {count} da literoj atingita\", \"More items …\": \"\", \"More options\": \"\", Next: \"Sekva\", \"No emoji found\": \"La emoĝio forestas\", \"No link provider found\": \"\", \"No results\": \"La rezulto forestas\", Objects: \"Objektoj\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Payzi bildprezenton\", \"People & Body\": \"Homoj & Korpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Elekti emoĝion \", \"Please select a time zone:\": \"\", Previous: \"Antaŭa\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Serĉi\", \"Search emoji\": \"\", \"Search results\": \"Serĉrezultoj\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Elektu etikedon\", \"Select provider\": \"\", Settings: \"Agordo\", \"Settings navigation\": \"Agorda navigado\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Ridoj kaj Emocioj\", \"Start slideshow\": \"Komenci bildprezenton\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Signoj\", \"Travel & Places\": \"Vojaĵoj & Lokoj\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Ne eblas serĉi en la grupo\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restringido)\", \"a few seconds ago\": \"hace unos pocos segundos\", Actions: \"Acciones\", 'Actions for item with name \"{name}\"': 'Acciones para el elemento con nombre \"{name}\"', Activities: \"Actividades\", \"Animals & Nature\": \"Animales y naturaleza\", \"Any link\": \"Cualquier enlace\", \"Anything shared with the same group of people will show up here\": \"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Atrás\", \"Back to provider selection\": \"Volver a la selección de proveedor\", \"Cancel changes\": \"Cancelar cambios\", \"Change name\": \"Cambiar nombre\", Choose: \"Elegir\", \"Clear search\": \"Limpiar búsqueda\", \"Clear text\": \"Limpiar texto\", Close: \"Cerrar\", \"Close modal\": \"Cerrar modal\", \"Close navigation\": \"Cerrar navegación\", \"Close sidebar\": \"Cerrar barra lateral\", \"Close Smart Picker\": \"Cerrar selector inteligente\", \"Collapse menu\": \"Ocultar menú\", \"Confirm changes\": \"Confirmar cambios\", Custom: \"Personalizado\", \"Edit item\": \"Editar elemento\", \"Enter link\": \"Ingrese enlace\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\", \"External documentation for {name}\": \"Documentación externa para {name}\", Favorite: \"Favorito\", Flags: \"Banderas\", \"Food & Drink\": \"Comida y bebida\", \"Frequently used\": \"Usado con frecuenca\", Global: \"Global\", \"Go back to the list\": \"Volver a la lista\", \"Hide password\": \"Ocultar contraseña\", 'Load more \"{options}\"\"': 'Cargar más \"{options}\"', \"Message limit of {count} characters reached\": \"El mensaje ha alcanzado el límite de {count} caracteres\", \"More items …\": \"Más ítems...\", \"More options\": \"Más opciones\", Next: \"Siguiente\", \"No emoji found\": \"No hay ningún emoji\", \"No link provider found\": \"No se encontró ningún proveedor de enlaces\", \"No results\": \" Ningún resultado\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir menú de contactos\", 'Open link to \"{resourceName}\"': 'Abrir enlace a \"{resourceName}\"', \"Open menu\": \"Abrir menú\", \"Open navigation\": \"Abrir navegación\", \"Open settings menu\": \"Abrir menú de ajustes\", \"Password is secure\": \"La contraseña es segura\", \"Pause slideshow\": \"Pausar la presentación \", \"People & Body\": \"Personas y cuerpos\", \"Pick a date\": \"Seleccione una fecha\", \"Pick a date and a time\": \"Seleccione una fecha y hora\", \"Pick a month\": \"Seleccione un mes\", \"Pick a time\": \"Seleccione una hora\", \"Pick a week\": \"Seleccione una semana\", \"Pick a year\": \"Seleccione un año\", \"Pick an emoji\": \"Elegir un emoji\", \"Please select a time zone:\": \"Por favor elige un huso de horario:\", Previous: \"Anterior\", \"Provider icon\": \"Ícono del proveedor\", \"Raw link {options}\": \"Enlace directo {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Buscar\", \"Search emoji\": \"Buscar emoji\", \"Search results\": \"Resultados de la búsqueda\", \"sec. ago\": \"hace segundos\", \"seconds ago\": \"segundos atrás\", \"Select a tag\": \"Seleccione una etiqueta\", \"Select provider\": \"Seleccione proveedor\", Settings: \"Ajustes\", \"Settings navigation\": \"Navegación por ajustes\", \"Show password\": \"Mostrar contraseña\", \"Smart Picker\": \"Selector inteligente\", \"Smileys & Emotion\": \"Smileys y emoticonos\", \"Start slideshow\": \"Iniciar la presentación\", \"Start typing to search\": \"Comience a escribir para buscar\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viajes y lugares\", \"Type to search time zone\": \"Escribe para buscar un huso de horario\", \"Unable to search the group\": \"No es posible buscar en el grupo\", \"Undo changes\": \"Deshacer cambios\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...' } }, { locale: \"es_419\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_AR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CL\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_DO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_EC\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restricted)\", \"a few seconds ago\": \"hace unos segundos\", Actions: \"Acciones\", 'Actions for item with name \"{name}\"': 'Acciones para el elemento con nombre \"{name}\"', Activities: \"Actividades\", \"Animals & Nature\": \"Animales y Naturaleza\", \"Any link\": \"Cualquier enlace\", \"Anything shared with the same group of people will show up here\": \"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Atrás\", \"Back to provider selection\": \"Volver a la selección de proveedor\", \"Cancel changes\": \"Cancelar cambios\", \"Change name\": \"Cambiar nombre\", Choose: \"Elegir\", \"Clear search\": \"Limpiar búsqueda\", \"Clear text\": \"Limpiar texto\", Close: \"Cerrar\", \"Close modal\": \"Cerrar modal\", \"Close navigation\": \"Cerrar navegación\", \"Close sidebar\": \"Cerrar barra lateral\", \"Close Smart Picker\": \"Cerrar selector inteligente\", \"Collapse menu\": \"Ocultar menú\", \"Confirm changes\": \"Confirmar cambios\", Custom: \"Personalizado\", \"Edit item\": \"Editar elemento\", \"Enter link\": \"Ingresar enlace\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\", \"External documentation for {name}\": \"Documentación externa para {name}\", Favorite: \"Favorito\", Flags: \"Marcas\", \"Food & Drink\": \"Comida y Bebida\", \"Frequently used\": \"Frecuentemente utilizado\", Global: \"Global\", \"Go back to the list\": \"Volver a la lista\", \"Hide password\": \"Ocultar contraseña\", 'Load more \"{options}\"\"': 'Cargar más \"{options}\"', \"Message limit of {count} characters reached\": \"Se ha alcanzado el límite de caracteres del mensaje {count}\", \"More items …\": \"Más elementos...\", \"More options\": \"Más opciones\", Next: \"Siguiente\", \"No emoji found\": \"No se encontró ningún emoji\", \"No link provider found\": \"No se encontró ningún proveedor de enlaces\", \"No results\": \"Sin resultados\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir menú de contactos\", 'Open link to \"{resourceName}\"': 'Abrir enlace a \"{resourceName}\"', \"Open menu\": \"Abrir menú\", \"Open navigation\": \"Abrir navegación\", \"Open settings menu\": \"Abrir menú de configuración\", \"Password is secure\": \"La contraseña es segura\", \"Pause slideshow\": \"Pausar presentación de diapositivas\", \"People & Body\": \"Personas y Cuerpo\", \"Pick a date\": \"Seleccionar una fecha\", \"Pick a date and a time\": \"Seleccionar una fecha y una hora\", \"Pick a month\": \"Seleccionar un mes\", \"Pick a time\": \"Seleccionar una semana\", \"Pick a week\": \"Seleccionar una semana\", \"Pick a year\": \"Seleccionar un año\", \"Pick an emoji\": \"Seleccionar un emoji\", \"Please select a time zone:\": \"Por favor, selecciona una zona horaria:\", Previous: \"Anterior\", \"Provider icon\": \"Ícono del proveedor\", \"Raw link {options}\": \"Enlace directo {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Buscar\", \"Search emoji\": \"Buscar emoji\", \"Search results\": \"Resultados de búsqueda\", \"sec. ago\": \"hace segundos\", \"seconds ago\": \"Segundos atrás\", \"Select a tag\": \"Seleccionar una etiqueta\", \"Select provider\": \"Seleccionar proveedor\", Settings: \"Configuraciones\", \"Settings navigation\": \"Navegación de configuraciones\", \"Show password\": \"Mostrar contraseña\", \"Smart Picker\": \"Selector inteligente\", \"Smileys & Emotion\": \"Caritas y Emociones\", \"Start slideshow\": \"Iniciar presentación de diapositivas\", \"Start typing to search\": \"Comienza a escribir para buscar\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viajes y Lugares\", \"Type to search time zone\": \"Escribe para buscar la zona horaria\", \"Unable to search the group\": \"No se puede buscar en el grupo\", \"Undo changes\": \"Deshacer cambios\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...' } }, { locale: \"es_GT\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_HN\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_MX\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_NI\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PA\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_SV\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_UY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"et_EE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"eu\", translations: { \"{tag} (invisible)\": \"{tag} (ikusezina)\", \"{tag} (restricted)\": \"{tag} (mugatua)\", \"a few seconds ago\": \"\", Actions: \"Ekintzak\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Jarduerak\", \"Animals & Nature\": \"Animaliak eta Natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\", \"Avatar of {displayName}\": \"{displayName}-(e)n irudia\", \"Avatar of {displayName}, {status}\": \"{displayName} -(e)n irudia, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Ezeztatu aldaketak\", \"Change name\": \"\", Choose: \"Aukeratu\", \"Clear search\": \"\", \"Clear text\": \"Garbitu testua\", Close: \"Itxi\", \"Close modal\": \"Itxi modala\", \"Close navigation\": \"Itxi nabigazioa\", \"Close sidebar\": \"Itxi albo-barra\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Baieztatu aldaketak\", Custom: \"Pertsonalizatua\", \"Edit item\": \"Editatu elementua\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Gogokoa\", Flags: \"Banderak\", \"Food & Drink\": \"Janaria eta edariak\", \"Frequently used\": \"Askotan erabilia\", Global: \"Globala\", \"Go back to the list\": \"Bueltatu zerrendara\", \"Hide password\": \"Ezkutatu pasahitza\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Mezuaren {count} karaketere-limitera heldu zara\", \"More items …\": \"Elementu gehiago …\", \"More options\": \"\", Next: \"Hurrengoa\", \"No emoji found\": \"Ez da emojirik aurkitu\", \"No link provider found\": \"\", \"No results\": \"Emaitzarik ez\", Objects: \"Objektuak\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Ireki nabigazioa\", \"Open settings menu\": \"\", \"Password is secure\": \"Pasahitza segurua da\", \"Pause slideshow\": \"Pausatu diaporama\", \"People & Body\": \"Jendea eta gorputza\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Hautatu emoji bat\", \"Please select a time zone:\": \"Mesedez hautatu ordu-zona bat:\", Previous: \"Aurrekoa\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Erlazionatutako baliabideak\", Search: \"Bilatu\", \"Search emoji\": \"\", \"Search results\": \"Bilaketa emaitzak\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Hautatu etiketa bat\", \"Select provider\": \"\", Settings: \"Ezarpenak\", \"Settings navigation\": \"Nabigazio ezarpenak\", \"Show password\": \"Erakutsi pasahitza\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileyak eta emozioa\", \"Start slideshow\": \"Hasi diaporama\", \"Start typing to search\": \"\", Submit: \"Bidali\", Symbols: \"Sinboloak\", \"Travel & Places\": \"Bidaiak eta lekuak\", \"Type to search time zone\": \"Idatzi ordu-zona bat bilatzeko\", \"Unable to search the group\": \"Ezin izan da taldea bilatu\", \"Undo changes\": \"Aldaketak desegin\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...' } }, { locale: \"fa\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fi\", translations: { \"{tag} (invisible)\": \"{tag} (näkymätön)\", \"{tag} (restricted)\": \"{tag} (rajoitettu)\", \"a few seconds ago\": \"\", Actions: \"Toiminnot\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiviteetit\", \"Animals & Nature\": \"Eläimet & luonto\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Käyttäjän {displayName} avatar\", \"Avatar of {displayName}, {status}\": \"Käyttäjän {displayName} avatar, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Peruuta muutokset\", \"Change name\": \"\", Choose: \"Valitse\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Sulje\", \"Close modal\": \"\", \"Close navigation\": \"Sulje navigaatio\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Vahvista muutokset\", Custom: \"Mukautettu\", \"Edit item\": \"Muokkaa kohdetta\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Liput\", \"Food & Drink\": \"Ruoka & juoma\", \"Frequently used\": \"Usein käytetyt\", Global: \"Yleinen\", \"Go back to the list\": \"Siirry takaisin listaan\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Viestin merkken enimmäisimäärä {count} täynnä \", \"More items …\": \"\", \"More options\": \"\", Next: \"Seuraava\", \"No emoji found\": \"Emojia ei löytynyt\", \"No link provider found\": \"\", \"No results\": \"Ei tuloksia\", Objects: \"Esineet & asiat\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Avaa navigaatio\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Keskeytä diaesitys\", \"People & Body\": \"Ihmiset & keho\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Valitse emoji\", \"Please select a time zone:\": \"Valitse aikavyöhyke:\", Previous: \"Edellinen\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Etsi\", \"Search emoji\": \"\", \"Search results\": \"Hakutulokset\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Valitse tagi\", \"Select provider\": \"\", Settings: \"Asetukset\", \"Settings navigation\": \"Asetusnavigaatio\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Hymiöt & tunteet\", \"Start slideshow\": \"Aloita diaesitys\", \"Start typing to search\": \"\", Submit: \"Lähetä\", Symbols: \"Symbolit\", \"Travel & Places\": \"Matkustus & kohteet\", \"Type to search time zone\": \"Kirjoita etsiäksesi aikavyöhyke\", \"Unable to search the group\": \"Ryhmää ei voi hakea\", \"Undo changes\": \"Kumoa muutokset\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fo\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fr\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restreint)\", \"a few seconds ago\": \"il y a quelques instants\", Actions: \"Actions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activités\", \"Animals & Nature\": \"Animaux & Nature\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Retour\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Annuler les modifications\", \"Change name\": \"Modifier le nom\", Choose: \"Choisir\", \"Clear search\": \"Effacer la recherche\", \"Clear text\": \"Effacer le texte\", Close: \"Fermer\", \"Close modal\": \"Fermer la fenêtre\", \"Close navigation\": \"Fermer la navigation\", \"Close sidebar\": \"Fermer la barre latérale\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"Réduire le menu\", \"Confirm changes\": \"Confirmer les modifications\", Custom: \"Personnalisé\", \"Edit item\": \"Éditer l'élément\", \"Enter link\": \"Saisissez le lien\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"Documentation externe pour {name}\", Favorite: \"Favori\", Flags: \"Drapeaux\", \"Food & Drink\": \"Nourriture & Boissons\", \"Frequently used\": \"Utilisés fréquemment\", Global: \"Global\", \"Go back to the list\": \"Retourner à la liste\", \"Hide password\": \"Cacher le mot de passe\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite de messages de {count} caractères atteinte\", \"More items …\": \"Plus d'éléments...\", \"More options\": \"Plus d'options\", Next: \"Suivant\", \"No emoji found\": \"Pas d’émoji trouvé\", \"No link provider found\": \"\", \"No results\": \"Aucun résultat\", Objects: \"Objets\", \"Open contact menu\": \"Ouvrir le menu Contact\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"Ouvrir le menu\", \"Open navigation\": \"Ouvrir la navigation\", \"Open settings menu\": \"Ouvrir le menu Paramètres\", \"Password is secure\": \"Le mot de passe est sécurisé\", \"Pause slideshow\": \"Mettre le diaporama en pause\", \"People & Body\": \"Personnes & Corps\", \"Pick a date\": \"Sélectionner une date\", \"Pick a date and a time\": \"Sélectionner une date et une heure\", \"Pick a month\": \"Sélectionner un mois\", \"Pick a time\": \"Sélectionner une heure\", \"Pick a week\": \"Sélectionner une semaine\", \"Pick a year\": \"Sélectionner une année\", \"Pick an emoji\": \"Choisissez un émoji\", \"Please select a time zone:\": \"Sélectionnez un fuseau horaire : \", Previous: \"Précédent\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Ressources liées\", Search: \"Chercher\", \"Search emoji\": \"Rechercher un emoji\", \"Search results\": \"Résultats de recherche\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Sélectionnez une balise\", \"Select provider\": \"\", Settings: \"Paramètres\", \"Settings navigation\": \"Navigation dans les paramètres\", \"Show password\": \"Afficher le mot de passe\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Émotions\", \"Start slideshow\": \"Démarrer le diaporama\", \"Start typing to search\": \"\", Submit: \"Valider\", Symbols: \"Symboles\", \"Travel & Places\": \"Voyage & Lieux\", \"Type to search time zone\": \"Saisissez les premiers lettres pour rechercher un fuseau horaire\", \"Unable to search the group\": \"Impossible de chercher le groupe\", \"Undo changes\": \"Annuler les changements\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': `Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l'autocomplétion des émojis...` } }, { locale: \"gd\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"gl\", translations: { \"{tag} (invisible)\": \"{tag} (invisíbel)\", \"{tag} (restricted)\": \"{tag} (restrinxido)\", \"a few seconds ago\": \"\", Actions: \"Accións\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Actividades\", \"Animals & Nature\": \"Animais e natureza\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancelar os cambios\", \"Change name\": \"\", Choose: \"Escoller\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Pechar\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirma os cambios\", Custom: \"Personalizado\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida e bebida\", \"Frequently used\": \"Usado con frecuencia\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Acadouse o límite de {count} caracteres por mensaxe\", \"More items …\": \"\", \"More options\": \"\", Next: \"Seguinte\", \"No emoji found\": \"Non se atopou ningún «emoji»\", \"No link provider found\": \"\", \"No results\": \"Sen resultados\", Objects: \"Obxectos\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pausar o diaporama\", \"People & Body\": \"Persoas e corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Escolla un «emoji»\", \"Please select a time zone:\": \"\", Previous: \"Anterir\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Buscar\", \"Search emoji\": \"\", \"Search results\": \"Resultados da busca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccione unha etiqueta\", \"Select provider\": \"\", Settings: \"Axustes\", \"Settings navigation\": \"Navegación polos axustes\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Sorrisos e emocións\", \"Start slideshow\": \"Iniciar o diaporama\", \"Start typing to search\": \"\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viaxes e lugares\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Non foi posíbel buscar o grupo\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"he\", translations: { \"{tag} (invisible)\": \"{tag} (נסתר)\", \"{tag} (restricted)\": \"{tag} (מוגבל)\", \"a few seconds ago\": \"לפני מספר שניות\", Actions: \"פעולות\", 'Actions for item with name \"{name}\"': \"פעולות לפריט בשם „{name}”\", Activities: \"פעילויות\", \"Animals & Nature\": \"חיות וטבע\", \"Any link\": \"קישור כלשהו\", \"Anything shared with the same group of people will show up here\": \"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\", \"Avatar of {displayName}\": \"תמונה ייצוגית של {displayName}\", \"Avatar of {displayName}, {status}\": \"תמונה ייצוגית של {displayName}, {status}\", Back: \"חזרה\", \"Back to provider selection\": \"חזרה לבחירת ספק\", \"Cancel changes\": \"ביטול שינויים\", \"Change name\": \"החלפת שם\", Choose: \"בחירה\", \"Clear search\": \"פינוי חיפוש\", \"Clear text\": \"פינוי טקסט\", Close: \"סגירה\", \"Close modal\": \"סגירת החלונית\", \"Close navigation\": \"סגירת הניווט\", \"Close sidebar\": \"סגירת סרגל הצד\", \"Close Smart Picker\": \"סגירת הבורר החכם\", \"Collapse menu\": \"צמצום התפריט\", \"Confirm changes\": \"אישור השינויים\", Custom: \"בהתאמה אישית\", \"Edit item\": \"עריכת פריט\", \"Enter link\": \"מילוי קישור\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\", \"External documentation for {name}\": \"תיעוד חיצוני עבור {name}\", Favorite: \"למועדפים\", Flags: \"דגלים\", \"Food & Drink\": \"מזון ומשקאות\", \"Frequently used\": \"בשימוש תדיר\", Global: \"כללי\", \"Go back to the list\": \"חזרה לרשימה\", \"Hide password\": \"הסתרת סיסמה\", 'Load more \"{options}\"\"': \"טעינת „{options}” נוספות\", \"Message limit of {count} characters reached\": \"הגעת למגבלה של {count} תווים\", \"More items …\": \"פריטים נוספים…\", \"More options\": \"אפשרויות נוספות\", Next: \"הבא\", \"No emoji found\": \"לא נמצא אמוג׳י\", \"No link provider found\": \"לא נמצא ספק קישורים\", \"No results\": \"אין תוצאות\", Objects: \"חפצים\", \"Open contact menu\": \"פתיחת תפריט קשר\", 'Open link to \"{resourceName}\"': \"פתיחת קישור אל „{resourceName}”\", \"Open menu\": \"פתיחת תפריט\", \"Open navigation\": \"פתיחת ניווט\", \"Open settings menu\": \"פתיחת תפריט הגדרות\", \"Password is secure\": \"הסיסמה מאובטחת\", \"Pause slideshow\": \"השהיית מצגת\", \"People & Body\": \"אנשים וגוף\", \"Pick a date\": \"נא לבחור תאריך\", \"Pick a date and a time\": \"נא לבחור תאריך ושעה\", \"Pick a month\": \"נא לבחור חודש\", \"Pick a time\": \"נא לבחור שעה\", \"Pick a week\": \"נא לבחור שבוע\", \"Pick a year\": \"נא לבחור שנה\", \"Pick an emoji\": \"נא לבחור אמוג׳י\", \"Please select a time zone:\": \"נא לבחור אזור זמן:\", Previous: \"הקודם\", \"Provider icon\": \"סמל ספק\", \"Raw link {options}\": \"קישור גולמי {options}\", \"Related resources\": \"משאבים קשורים\", Search: \"חיפוש\", \"Search emoji\": \"חיפוש אמוג׳י\", \"Search results\": \"תוצאות חיפוש\", \"sec. ago\": \"לפני מספר שניות\", \"seconds ago\": \"לפני מס׳ שניות\", \"Select a tag\": \"בחירת תגית\", \"Select provider\": \"בחירת ספק\", Settings: \"הגדרות\", \"Settings navigation\": \"ניווט בהגדרות\", \"Show password\": \"הצגת סיסמה\", \"Smart Picker\": \"בורר חכם\", \"Smileys & Emotion\": \"חייכנים ורגשונים\", \"Start slideshow\": \"התחלת המצגת\", \"Start typing to search\": \"התחלת הקלדה מחפשת\", Submit: \"הגשה\", Symbols: \"סמלים\", \"Travel & Places\": \"טיולים ומקומות\", \"Type to search time zone\": \"יש להקליד כדי לחפש אזור זמן\", \"Unable to search the group\": \"לא ניתן לחפש בקבוצה\", \"Undo changes\": \"ביטול שינויים\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\" } }, { locale: \"hi_IN\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hr\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hsb\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hu\", translations: { \"{tag} (invisible)\": \"{tag} (láthatatlan)\", \"{tag} (restricted)\": \"{tag} (korlátozott)\", \"a few seconds ago\": \"\", Actions: \"Műveletek\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Tevékenységek\", \"Animals & Nature\": \"Állatok és természet\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\", \"Avatar of {displayName}\": \"{displayName} profilképe\", \"Avatar of {displayName}, {status}\": \"{displayName} profilképe, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Változtatások elvetése\", \"Change name\": \"\", Choose: \"Válassszon\", \"Clear search\": \"\", \"Clear text\": \"Szöveg törlése\", Close: \"Bezárás\", \"Close modal\": \"Ablak bezárása\", \"Close navigation\": \"Navigáció bezárása\", \"Close sidebar\": \"Oldalsáv bezárása\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Változtatások megerősítése\", Custom: \"Egyéni\", \"Edit item\": \"Elem szerkesztése\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Kedvenc\", Flags: \"Zászlók\", \"Food & Drink\": \"Étel és ital\", \"Frequently used\": \"Gyakran használt\", Global: \"Globális\", \"Go back to the list\": \"Ugrás vissza a listához\", \"Hide password\": \"Jelszó elrejtése\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"{count} karakteres üzenetkorlát elérve\", \"More items …\": \"További elemek...\", \"More options\": \"\", Next: \"Következő\", \"No emoji found\": \"Nem található emodzsi\", \"No link provider found\": \"\", \"No results\": \"Nincs találat\", Objects: \"Tárgyak\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigáció megnyitása\", \"Open settings menu\": \"\", \"Password is secure\": \"A jelszó biztonságos\", \"Pause slideshow\": \"Diavetítés szüneteltetése\", \"People & Body\": \"Emberek és test\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Válasszon egy emodzsit\", \"Please select a time zone:\": \"Válasszon időzónát:\", Previous: \"Előző\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Kapcsolódó erőforrások\", Search: \"Keresés\", \"Search emoji\": \"\", \"Search results\": \"Találatok\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Válasszon címkét\", \"Select provider\": \"\", Settings: \"Beállítások\", \"Settings navigation\": \"Navigáció a beállításokban\", \"Show password\": \"Jelszó megjelenítése\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Mosolyok és érzelmek\", \"Start slideshow\": \"Diavetítés indítása\", \"Start typing to search\": \"\", Submit: \"Beküldés\", Symbols: \"Szimbólumok\", \"Travel & Places\": \"Utazás és helyek\", \"Type to search time zone\": \"Gépeljen az időzóna kereséséhez\", \"Unable to search the group\": \"A csoport nem kereshető\", \"Undo changes\": \"Változtatások visszavonása\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\" } }, { locale: \"hy\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ia\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"id\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ig\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"is\", translations: { \"{tag} (invisible)\": \"{tag} (ósýnilegt)\", \"{tag} (restricted)\": \"{tag} (takmarkað)\", \"a few seconds ago\": \"\", Actions: \"Aðgerðir\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aðgerðir\", \"Animals & Nature\": \"Dýr og náttúra\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Velja\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Loka\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Sérsniðið\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Flögg\", \"Food & Drink\": \"Matur og drykkur\", \"Frequently used\": \"Oftast notað\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Næsta\", \"No emoji found\": \"Ekkert tjáningartákn fannst\", \"No link provider found\": \"\", \"No results\": \"Engar niðurstöður\", Objects: \"Hlutir\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Gera hlé á skyggnusýningu\", \"People & Body\": \"Fólk og líkami\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Veldu tjáningartákn\", \"Please select a time zone:\": \"\", Previous: \"Fyrri\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Leita\", \"Search emoji\": \"\", \"Search results\": \"Leitarniðurstöður\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Veldu merki\", \"Select provider\": \"\", Settings: \"Stillingar\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Broskallar og tilfinningar\", \"Start slideshow\": \"Byrja skyggnusýningu\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Tákn\", \"Travel & Places\": \"Staðir og ferðalög\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Get ekki leitað í hópnum\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"it\", translations: { \"{tag} (invisible)\": \"{tag} (invisibile)\", \"{tag} (restricted)\": \"{tag} (limitato)\", \"a few seconds ago\": \"\", Actions: \"Azioni\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Attività\", \"Animals & Nature\": \"Animali e natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\", \"Avatar of {displayName}\": \"Avatar di {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar di {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Annulla modifiche\", \"Change name\": \"\", Choose: \"Scegli\", \"Clear search\": \"\", \"Clear text\": \"Cancella il testo\", Close: \"Chiudi\", \"Close modal\": \"Chiudi il messaggio modale\", \"Close navigation\": \"Chiudi la navigazione\", \"Close sidebar\": \"Chiudi la barra laterale\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Conferma modifiche\", Custom: \"Personalizzato\", \"Edit item\": \"Modifica l'elemento\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Preferito\", Flags: \"Bandiere\", \"Food & Drink\": \"Cibo e bevande\", \"Frequently used\": \"Usati di frequente\", Global: \"Globale\", \"Go back to the list\": \"Torna all'elenco\", \"Hide password\": \"Nascondi la password\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite dei messaggi di {count} caratteri raggiunto\", \"More items …\": \"Più elementi ...\", \"More options\": \"\", Next: \"Successivo\", \"No emoji found\": \"Nessun emoji trovato\", \"No link provider found\": \"\", \"No results\": \"Nessun risultato\", Objects: \"Oggetti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Apri la navigazione\", \"Open settings menu\": \"\", \"Password is secure\": \"La password è sicura\", \"Pause slideshow\": \"Presentazione in pausa\", \"People & Body\": \"Persone e corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Scegli un emoji\", \"Please select a time zone:\": \"Si prega di selezionare un fuso orario:\", Previous: \"Precedente\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Risorse correlate\", Search: \"Cerca\", \"Search emoji\": \"\", \"Search results\": \"Risultati di ricerca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleziona un'etichetta\", \"Select provider\": \"\", Settings: \"Impostazioni\", \"Settings navigation\": \"Navigazione delle impostazioni\", \"Show password\": \"Mostra la password\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Faccine ed emozioni\", \"Start slideshow\": \"Avvia presentazione\", \"Start typing to search\": \"\", Submit: \"Invia\", Symbols: \"Simboli\", \"Travel & Places\": \"Viaggi e luoghi\", \"Type to search time zone\": \"Digita per cercare un fuso orario\", \"Unable to search the group\": \"Impossibile cercare il gruppo\", \"Undo changes\": \"Cancella i cambiamenti\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...' } }, { locale: \"ja\", translations: { \"{tag} (invisible)\": \"{タグ} (不可視)\", \"{tag} (restricted)\": \"{タグ} (制限付)\", \"a few seconds ago\": \"\", Actions: \"操作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"アクティビティ\", \"Animals & Nature\": \"動物と自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"同じグループで共有しているものは、全てここに表示されます\", \"Avatar of {displayName}\": \"{displayName} のアバター\", \"Avatar of {displayName}, {status}\": \"{displayName}, {status} のアバター\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"変更をキャンセル\", \"Change name\": \"\", Choose: \"選択\", \"Clear search\": \"\", \"Clear text\": \"テキストをクリア\", Close: \"閉じる\", \"Close modal\": \"モーダルを閉じる\", \"Close navigation\": \"ナビゲーションを閉じる\", \"Close sidebar\": \"サイドバーを閉じる\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"変更を承認\", Custom: \"カスタム\", \"Edit item\": \"編集\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"お気に入り\", Flags: \"国旗\", \"Food & Drink\": \"食べ物と飲み物\", \"Frequently used\": \"よく使うもの\", Global: \"全体\", \"Go back to the list\": \"リストに戻る\", \"Hide password\": \"パスワードを非表示\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"{count} 文字のメッセージ上限に達しています\", \"More items …\": \"他のアイテム\", \"More options\": \"\", Next: \"次\", \"No emoji found\": \"絵文字が見つかりません\", \"No link provider found\": \"\", \"No results\": \"なし\", Objects: \"物\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"ナビゲーションを開く\", \"Open settings menu\": \"\", \"Password is secure\": \"パスワードは保護されています\", \"Pause slideshow\": \"スライドショーを一時停止\", \"People & Body\": \"様々な人と体の部位\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"絵文字を選択\", \"Please select a time zone:\": \"タイムゾーンを選んで下さい:\", Previous: \"前\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"関連リソース\", Search: \"検索\", \"Search emoji\": \"\", \"Search results\": \"検索結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"タグを選択\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"ナビゲーション設定\", \"Show password\": \"パスワードを表示\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"感情表現\", \"Start slideshow\": \"スライドショーを開始\", \"Start typing to search\": \"\", Submit: \"提出\", Symbols: \"記号\", \"Travel & Places\": \"旅行と場所\", \"Type to search time zone\": \"タイムゾーン検索のため入力してください\", \"Unable to search the group\": \"グループを検索できません\", \"Undo changes\": \"変更を取り消し\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...' } }, { locale: \"ka\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ka_GE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kab\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kk\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"km\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kn\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ko\", translations: { \"{tag} (invisible)\": \"{tag}(숨김)\", \"{tag} (restricted)\": \"{tag}(제한)\", \"a few seconds ago\": \"방금 전\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"활동\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"la\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lb\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lo\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lt_LT\", translations: { \"{tag} (invisible)\": \"{tag} (nematoma)\", \"{tag} (restricted)\": \"{tag} (apribota)\", \"a few seconds ago\": \"\", Actions: \"Veiksmai\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Veiklos\", \"Animals & Nature\": \"Gyvūnai ir gamta\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Pasirinkti\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Užverti\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Tinkinti\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vėliavos\", \"Food & Drink\": \"Maistas ir gėrimai\", \"Frequently used\": \"Dažniausiai naudoti\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Pasiekta {count} simbolių žinutės riba\", \"More items …\": \"\", \"More options\": \"\", Next: \"Kitas\", \"No emoji found\": \"Nerasta jaustukų\", \"No link provider found\": \"\", \"No results\": \"Nėra rezultatų\", Objects: \"Objektai\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pristabdyti skaidrių rodymą\", \"People & Body\": \"Žmonės ir kūnas\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Pasirinkti jaustuką\", \"Please select a time zone:\": \"\", Previous: \"Ankstesnis\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Ieškoti\", \"Search emoji\": \"\", \"Search results\": \"Paieškos rezultatai\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Pasirinkti žymę\", \"Select provider\": \"\", Settings: \"Nustatymai\", \"Settings navigation\": \"Naršymas nustatymuose\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Šypsenos ir emocijos\", \"Start slideshow\": \"Pradėti skaidrių rodymą\", \"Start typing to search\": \"\", Submit: \"Pateikti\", Symbols: \"Simboliai\", \"Travel & Places\": \"Kelionės ir vietos\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Nepavyko atlikti paiešką grupėje\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lv\", translations: { \"{tag} (invisible)\": \"{tag} (neredzams)\", \"{tag} (restricted)\": \"{tag} (ierobežots)\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Izvēlēties\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Aizvērt\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Nākamais\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"Nav rezultātu\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pauzēt slaidrādi\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"Iepriekšējais\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Izvēlēties birku\", \"Select provider\": \"\", Settings: \"Iestatījumi\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"Sākt slaidrādi\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mk\", translations: { \"{tag} (invisible)\": \"{tag} (невидливо)\", \"{tag} (restricted)\": \"{tag} (ограничено)\", \"a few seconds ago\": \"\", Actions: \"Акции\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Активности\", \"Animals & Nature\": \"Животни & Природа\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Аватар на {displayName}\", \"Avatar of {displayName}, {status}\": \"Аватар на {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Откажи ги промените\", \"Change name\": \"\", Choose: \"Избери\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Затвори\", \"Close modal\": \"Затвори модал\", \"Close navigation\": \"Затвори навигација\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Потврди ги промените\", Custom: \"Прилагодени\", \"Edit item\": \"Уреди\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Фаворити\", Flags: \"Знамиња\", \"Food & Drink\": \"Храна & Пијалоци\", \"Frequently used\": \"Најчесто користени\", Global: \"Глобално\", \"Go back to the list\": \"Врати се на листата\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Ограничувањето на должината на пораката од {count} карактери е надминато\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следно\", \"No emoji found\": \"Не се пронајдени емотикони\", \"No link provider found\": \"\", \"No results\": \"Нема резултати\", Objects: \"Објекти\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Отвори навигација\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Пузирај слајдшоу\", \"People & Body\": \"Луѓе & Тело\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Избери емотикон\", \"Please select a time zone:\": \"Изберете временска зона:\", Previous: \"Предходно\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Барај\", \"Search emoji\": \"\", \"Search results\": \"Резултати од барувањето\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Избери ознака\", \"Select provider\": \"\", Settings: \"Параметри\", \"Settings navigation\": \"Параметри за навигација\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Смешковци & Емотикони\", \"Start slideshow\": \"Стартувај слајдшоу\", \"Start typing to search\": \"\", Submit: \"Испрати\", Symbols: \"Симболи\", \"Travel & Places\": \"Патувања & Места\", \"Type to search time zone\": \"Напишете за да пребарате временска зона\", \"Unable to search the group\": \"Неможе да се принајде групата\", \"Undo changes\": \"Врати ги промените\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mn\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mr\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ms_MY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"my\", translations: { \"{tag} (invisible)\": \"{tag} (ကွယ်ဝှက်ထား)\", \"{tag} (restricted)\": \"{tag} (ကန့်သတ်)\", \"a few seconds ago\": \"\", Actions: \"လုပ်ဆောင်ချက်များ\", 'Actions for item with name \"{name}\"': \"\", Activities: \"ပြုလုပ်ဆောင်တာများ\", \"Animals & Nature\": \"တိရစ္ဆာန်များနှင့် သဘာဝ\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"{displayName} ၏ ကိုယ်ပွား\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\", \"Change name\": \"\", Choose: \"ရွေးချယ်ရန်\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"ပိတ်ရန်\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"ပြောင်းလဲမှုများ အတည်ပြုရန်\", Custom: \"အလိုကျချိန်ညှိမှု\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"အလံများ\", \"Food & Drink\": \"အစားအသောက်\", \"Frequently used\": \"မကြာခဏအသုံးပြုသော\", Global: \"ကမ္ဘာလုံးဆိုင်ရာ\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\", \"More items …\": \"\", \"More options\": \"\", Next: \"နောက်သို့ဆက်ရန်\", \"No emoji found\": \"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\", \"No link provider found\": \"\", \"No results\": \"ရလဒ်မရှိပါ\", Objects: \"အရာဝတ္ထုများ\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"စလိုက်ရှိုး ခေတ္တရပ်ရန်\", \"People & Body\": \"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"အီမိုဂျီရွေးရန်\", \"Please select a time zone:\": \"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\", Previous: \"ယခင်\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"ရှာဖွေရန်\", \"Search emoji\": \"\", \"Search results\": \"ရှာဖွေမှု ရလဒ်များ\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"tag ရွေးချယ်ရန်\", \"Select provider\": \"\", Settings: \"ချိန်ညှိချက်များ\", \"Settings navigation\": \"ချိန်ညှိချက်အညွှန်း\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"စမိုင်လီများနှင့် အီမိုရှင်း\", \"Start slideshow\": \"စလိုက်ရှိုးအား စတင်ရန်\", \"Start typing to search\": \"\", Submit: \"တင်သွင်းရန်\", Symbols: \"သင်္ကေတများ\", \"Travel & Places\": \"ခရီးသွားလာခြင်းနှင့် နေရာများ\", \"Type to search time zone\": \"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\", \"Unable to search the group\": \"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nb\", translations: { \"{tag} (invisible)\": \"{tag} (usynlig)\", \"{tag} (restricted)\": \"{tag} (beskyttet)\", \"a few seconds ago\": \"\", Actions: \"Handlinger\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiviteter\", \"Animals & Nature\": \"Dyr og natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Alt som er delt med den samme gruppen vil vises her\", \"Avatar of {displayName}\": \"Avataren til {displayName}\", \"Avatar of {displayName}, {status}\": \"{displayName}'s avatar, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Avbryt endringer\", \"Change name\": \"\", Choose: \"Velg\", \"Clear search\": \"\", \"Clear text\": \"Fjern tekst\", Close: \"Lukk\", \"Close modal\": \"Lukk modal\", \"Close navigation\": \"Lukk navigasjon\", \"Close sidebar\": \"Lukk sidepanel\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Bekreft endringer\", Custom: \"Tilpasset\", \"Edit item\": \"Rediger\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favoritt\", Flags: \"Flagg\", \"Food & Drink\": \"Mat og drikke\", \"Frequently used\": \"Ofte brukt\", Global: \"Global\", \"Go back to the list\": \"Gå tilbake til listen\", \"Hide password\": \"Skjul passord\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Karakter begrensing {count} nådd i melding\", \"More items …\": \"Flere gjenstander...\", \"More options\": \"\", Next: \"Neste\", \"No emoji found\": \"Fant ingen emoji\", \"No link provider found\": \"\", \"No results\": \"Ingen resultater\", Objects: \"Objekter\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Åpne navigasjon\", \"Open settings menu\": \"\", \"Password is secure\": \"Passordet er sikkert\", \"Pause slideshow\": \"Pause lysbildefremvisning\", \"People & Body\": \"Mennesker og kropp\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Velg en emoji\", \"Please select a time zone:\": \"Vennligst velg tidssone\", Previous: \"Forrige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Relaterte ressurser\", Search: \"Søk\", \"Search emoji\": \"\", \"Search results\": \"Søkeresultater\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Velg en merkelapp\", \"Select provider\": \"\", Settings: \"Innstillinger\", \"Settings navigation\": \"Navigasjonsinstillinger\", \"Show password\": \"Vis passord\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smilefjes og følelser\", \"Start slideshow\": \"Start lysbildefremvisning\", \"Start typing to search\": \"\", Submit: \"Send\", Symbols: \"Symboler\", \"Travel & Places\": \"Reise og steder\", \"Type to search time zone\": \"Tast for å søke etter tidssone\", \"Unable to search the group\": \"Kunne ikke søke i gruppen\", \"Undo changes\": \"Tilbakestill endringer\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...' } }, { locale: \"ne\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nl\", translations: { \"{tag} (invisible)\": \"{tag} (onzichtbaar)\", \"{tag} (restricted)\": \"{tag} (beperkt)\", \"a few seconds ago\": \"\", Actions: \"Acties\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activiteiten\", \"Animals & Nature\": \"Dieren & Natuur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar van {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar van {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Wijzigingen annuleren\", \"Change name\": \"\", Choose: \"Kies\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Sluiten\", \"Close modal\": \"\", \"Close navigation\": \"Navigatie sluiten\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Wijzigingen bevestigen\", Custom: \"Aangepast\", \"Edit item\": \"Item bewerken\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vlaggen\", \"Food & Drink\": \"Eten & Drinken\", \"Frequently used\": \"Vaak gebruikt\", Global: \"Globaal\", \"Go back to the list\": \"Ga terug naar de lijst\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Berichtlimiet van {count} karakters bereikt\", \"More items …\": \"\", \"More options\": \"\", Next: \"Volgende\", \"No emoji found\": \"Geen emoji gevonden\", \"No link provider found\": \"\", \"No results\": \"Geen resultaten\", Objects: \"Objecten\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigatie openen\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pauzeer diavoorstelling\", \"People & Body\": \"Mensen & Lichaam\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Kies een emoji\", \"Please select a time zone:\": \"Selecteer een tijdzone:\", Previous: \"Vorige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Zoeken\", \"Search emoji\": \"\", \"Search results\": \"Zoekresultaten\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selecteer een label\", \"Select provider\": \"\", Settings: \"Instellingen\", \"Settings navigation\": \"Instellingen navigatie\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotie\", \"Start slideshow\": \"Start diavoorstelling\", \"Start typing to search\": \"\", Submit: \"Verwerken\", Symbols: \"Symbolen\", \"Travel & Places\": \"Reizen & Plaatsen\", \"Type to search time zone\": \"Type om de tijdzone te zoeken\", \"Unable to search the group\": \"Kan niet in de groep zoeken\", \"Undo changes\": \"Wijzigingen ongedaan maken\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nn_NO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"oc\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (limit)\", \"a few seconds ago\": \"\", Actions: \"Accions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Causir\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Tampar\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Seguent\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"Cap de resultat\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Metre en pausa lo diaporama\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"Precedent\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccionar una etiqueta\", \"Select provider\": \"\", Settings: \"Paramètres\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"Lançar lo diaporama\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"pl\", translations: { \"{tag} (invisible)\": \"{tag} (niewidoczna)\", \"{tag} (restricted)\": \"{tag} (ograniczona)\", \"a few seconds ago\": \"\", Actions: \"Działania\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktywność\", \"Animals & Nature\": \"Zwierzęta i natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\", \"Avatar of {displayName}\": \"Awatar {displayName}\", \"Avatar of {displayName}, {status}\": \"Awatar {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Anuluj zmiany\", \"Change name\": \"\", Choose: \"Wybierz\", \"Clear search\": \"\", \"Clear text\": \"Wyczyść tekst\", Close: \"Zamknij\", \"Close modal\": \"Zamknij modal\", \"Close navigation\": \"Zamknij nawigację\", \"Close sidebar\": \"Zamknij pasek boczny\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potwierdź zmiany\", Custom: \"Zwyczajne\", \"Edit item\": \"Edytuj element\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Ulubiony\", Flags: \"Flagi\", \"Food & Drink\": \"Jedzenie i picie\", \"Frequently used\": \"Często używane\", Global: \"Globalnie\", \"Go back to the list\": \"Powrót do listy\", \"Hide password\": \"Ukryj hasło\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Przekroczono limit wiadomości wynoszący {count} znaków\", \"More items …\": \"Więcej pozycji…\", \"More options\": \"\", Next: \"Następny\", \"No emoji found\": \"Nie znaleziono emoji\", \"No link provider found\": \"\", \"No results\": \"Brak wyników\", Objects: \"Obiekty\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otwórz nawigację\", \"Open settings menu\": \"\", \"Password is secure\": \"Hasło jest bezpieczne\", \"Pause slideshow\": \"Wstrzymaj pokaz slajdów\", \"People & Body\": \"Ludzie i ciało\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Wybierz emoji\", \"Please select a time zone:\": \"Wybierz strefę czasową:\", Previous: \"Poprzedni\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Powiązane zasoby\", Search: \"Szukaj\", \"Search emoji\": \"\", \"Search results\": \"Wyniki wyszukiwania\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Wybierz etykietę\", \"Select provider\": \"\", Settings: \"Ustawienia\", \"Settings navigation\": \"Ustawienia nawigacji\", \"Show password\": \"Pokaż hasło\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Buźki i emotikony\", \"Start slideshow\": \"Rozpocznij pokaz slajdów\", \"Start typing to search\": \"\", Submit: \"Wyślij\", Symbols: \"Symbole\", \"Travel & Places\": \"Podróże i miejsca\", \"Type to search time zone\": \"Wpisz, aby wyszukać strefę czasową\", \"Unable to search the group\": \"Nie można przeszukać grupy\", \"Undo changes\": \"Cofnij zmiany\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…' } }, { locale: \"ps\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"pt_BR\", translations: { \"{tag} (invisible)\": \"{tag} (invisível)\", \"{tag} (restricted)\": \"{tag} (restrito) \", \"a few seconds ago\": \"\", Actions: \"Ações\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Atividades\", \"Animals & Nature\": \"Animais & Natureza\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancelar alterações\", \"Change name\": \"\", Choose: \"Escolher\", \"Clear search\": \"\", \"Clear text\": \"Limpar texto\", Close: \"Fechar\", \"Close modal\": \"Fechar modal\", \"Close navigation\": \"Fechar navegação\", \"Close sidebar\": \"Fechar barra lateral\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmar alterações\", Custom: \"Personalizado\", \"Edit item\": \"Editar item\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorito\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida & Bebida\", \"Frequently used\": \"Mais usados\", Global: \"Global\", \"Go back to the list\": \"Volte para a lista\", \"Hide password\": \"Ocultar a senha\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite de mensagem de {count} caracteres atingido\", \"More items …\": \"Mais itens …\", \"More options\": \"\", Next: \"Próximo\", \"No emoji found\": \"Nenhum emoji encontrado\", \"No link provider found\": \"\", \"No results\": \"Sem resultados\", Objects: \"Objetos\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Abrir navegação\", \"Open settings menu\": \"\", \"Password is secure\": \"A senha é segura\", \"Pause slideshow\": \"Pausar apresentação de slides\", \"People & Body\": \"Pessoas & Corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Escolha um emoji\", \"Please select a time zone:\": \"Selecione um fuso horário: \", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Recursos relacionados\", Search: \"Pesquisar\", \"Search emoji\": \"\", \"Search results\": \"Resultados da pesquisa\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selecionar uma tag\", \"Select provider\": \"\", Settings: \"Configurações\", \"Settings navigation\": \"Navegação de configurações\", \"Show password\": \"Mostrar senha\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smiles & Emoções\", \"Start slideshow\": \"Iniciar apresentação de slides\", \"Start typing to search\": \"\", Submit: \"Enviar\", Symbols: \"Símbolo\", \"Travel & Places\": \"Viagem & Lugares\", \"Type to search time zone\": \"Digite para pesquisar o fuso horário \", \"Unable to search the group\": \"Não foi possível pesquisar o grupo\", \"Undo changes\": \"Desfazer modificações\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …' } }, { locale: \"pt_PT\", translations: { \"{tag} (invisible)\": \"{tag} (invisivel)\", \"{tag} (restricted)\": \"{tag} (restrito)\", \"a few seconds ago\": \"alguns segundos atrás\", Actions: \"Ações\", 'Actions for item with name \"{name}\"': 'Ações para objeto com o nome \"[name]\"', Activities: \"Atividades\", \"Animals & Nature\": \"Animais e Natureza\", \"Any link\": \"Qualquer link\", \"Anything shared with the same group of people will show up here\": \"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Voltar atrás\", \"Back to provider selection\": \"Voltar à seleção de fornecedor\", \"Cancel changes\": \"Cancelar alterações\", \"Change name\": \"Alterar nome\", Choose: \"Escolher\", \"Clear search\": \"Limpar a pesquisa\", \"Clear text\": \"Limpar texto\", Close: \"Fechar\", \"Close modal\": \"Fechar modal\", \"Close navigation\": \"Fechar navegação\", \"Close sidebar\": \"Fechar barra lateral\", \"Close Smart Picker\": 'Fechar \"Smart Picker\"', \"Collapse menu\": \"Comprimir menu\", \"Confirm changes\": \"Confirmar alterações\", Custom: \"Personalizado\", \"Edit item\": \"Editar item\", \"Enter link\": \"Introduzir link\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\", \"External documentation for {name}\": \"Documentação externa para {name}\", Favorite: \"Favorito\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida e Bebida\", \"Frequently used\": \"Mais utilizados\", Global: \"Global\", \"Go back to the list\": \"Voltar para a lista\", \"Hide password\": \"Ocultar a senha\", 'Load more \"{options}\"\"': 'Obter mais \"{options}\"\"', \"Message limit of {count} characters reached\": \"Atingido o limite de {count} carateres da mensagem.\", \"More items …\": \"Mais itens …\", \"More options\": \"Mais opções\", Next: \"Seguinte\", \"No emoji found\": \"Nenhum emoji encontrado\", \"No link provider found\": \"Nenhum fornecedor de link encontrado\", \"No results\": \"Sem resultados\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir o menu de contato\", 'Open link to \"{resourceName}\"': 'Abrir link para \"{resourceName}\"', \"Open menu\": \"Abrir menu\", \"Open navigation\": \"Abrir navegação\", \"Open settings menu\": \"Abrir menu de configurações\", \"Password is secure\": \"A senha é segura\", \"Pause slideshow\": \"Pausar diaporama\", \"People & Body\": \"Pessoas e Corpo\", \"Pick a date\": \"Escolha uma data\", \"Pick a date and a time\": \"Escolha uma data e um horário\", \"Pick a month\": \"Escolha um mês\", \"Pick a time\": \"Escolha um horário\", \"Pick a week\": \"Escolha uma semana\", \"Pick a year\": \"Escolha um ano\", \"Pick an emoji\": \"Escolha um emoji\", \"Please select a time zone:\": \"Por favor, selecione um fuso horário: \", Previous: \"Anterior\", \"Provider icon\": \"Icon do fornecedor\", \"Raw link {options}\": \"Link inicial {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Pesquisar\", \"Search emoji\": \"Pesquisar emoji\", \"Search results\": \"Resultados da pesquisa\", \"sec. ago\": \"seg. atrás\", \"seconds ago\": \"segundos atrás\", \"Select a tag\": \"Selecionar uma etiqueta\", \"Select provider\": \"Escolha de fornecedor\", Settings: \"Definições\", \"Settings navigation\": \"Navegação de configurações\", \"Show password\": \"Mostrar senha\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Sorrisos e Emoções\", \"Start slideshow\": \"Iniciar diaporama\", \"Start typing to search\": \"Comece a digitar para pesquisar\", Submit: \"Submeter\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viagem e Lugares\", \"Type to search time zone\": \"Digite para pesquisar o fuso horário \", \"Unable to search the group\": \"Não é possível pesquisar o grupo\", \"Undo changes\": \"Anular alterações\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …' } }, { locale: \"ro\", translations: { \"{tag} (invisible)\": \"{tag} (invizibil)\", \"{tag} (restricted)\": \"{tag} (restricționat)\", \"a few seconds ago\": \"\", Actions: \"Acțiuni\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activități\", \"Animals & Nature\": \"Animale și natură\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\", \"Avatar of {displayName}\": \"Avatarul lui {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatarul lui {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Anulează modificările\", \"Change name\": \"\", Choose: \"Alegeți\", \"Clear search\": \"\", \"Clear text\": \"Șterge textul\", Close: \"Închideți\", \"Close modal\": \"Închideți modulul\", \"Close navigation\": \"Închideți navigarea\", \"Close sidebar\": \"Închide bara laterală\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmați modificările\", Custom: \"Personalizat\", \"Edit item\": \"Editați elementul\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Marcaje\", \"Food & Drink\": \"Alimente și băuturi\", \"Frequently used\": \"Utilizate frecvent\", Global: \"Global\", \"Go back to the list\": \"Întoarceți-vă la listă\", \"Hide password\": \"Ascunde parola\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limita mesajului de {count} caractere a fost atinsă\", \"More items …\": \"Mai multe articole ...\", \"More options\": \"\", Next: \"Următorul\", \"No emoji found\": \"Nu s-a găsit niciun emoji\", \"No link provider found\": \"\", \"No results\": \"Nu există rezultate\", Objects: \"Obiecte\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Deschideți navigația\", \"Open settings menu\": \"\", \"Password is secure\": \"Parola este sigură\", \"Pause slideshow\": \"Pauză prezentare de diapozitive\", \"People & Body\": \"Oameni și corp\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Alege un emoji\", \"Please select a time zone:\": \"Vă rugăm să selectați un fus orar:\", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Resurse legate\", Search: \"Căutare\", \"Search emoji\": \"\", \"Search results\": \"Rezultatele căutării\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selectați o etichetă\", \"Select provider\": \"\", Settings: \"Setări\", \"Settings navigation\": \"Navigare setări\", \"Show password\": \"Arată parola\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Zâmbete și emoții\", \"Start slideshow\": \"Începeți prezentarea de diapozitive\", \"Start typing to search\": \"\", Submit: \"Trimiteți\", Symbols: \"Simboluri\", \"Travel & Places\": \"Călătorii și locuri\", \"Type to search time zone\": \"Tastați pentru a căuta fusul orar\", \"Unable to search the group\": \"Imposibilitatea de a căuta în grup\", \"Undo changes\": \"Anularea modificărilor\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...' } }, { locale: \"ru\", translations: { \"{tag} (invisible)\": \"{tag} (невидимое)\", \"{tag} (restricted)\": \"{tag} (ограниченное)\", \"a few seconds ago\": \"\", Actions: \"Действия \", 'Actions for item with name \"{name}\"': \"\", Activities: \"События\", \"Animals & Nature\": \"Животные и природа \", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Аватар {displayName}\", \"Avatar of {displayName}, {status}\": \"Фотография {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Отменить изменения\", \"Change name\": \"\", Choose: \"Выберите\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Закрыть\", \"Close modal\": \"Закрыть модальное окно\", \"Close navigation\": \"Закрыть навигацию\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Подтвердить изменения\", Custom: \"Пользовательское\", \"Edit item\": \"Изменить элемент\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Флаги\", \"Food & Drink\": \"Еда, напиток\", \"Frequently used\": \"Часто используемый\", Global: \"Глобальный\", \"Go back to the list\": \"Вернуться к списку\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Достигнуто ограничение на количество символов в {count}\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следующее\", \"No emoji found\": \"Эмодзи не найдено\", \"No link provider found\": \"\", \"No results\": \"Результаты отсуствуют\", Objects: \"Объекты\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Открыть навигацию\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Приостановить показ слйдов\", \"People & Body\": \"Люди и тело\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Выберите эмодзи\", \"Please select a time zone:\": \"Пожалуйста, выберите часовой пояс:\", Previous: \"Предыдущее\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Поиск\", \"Search emoji\": \"\", \"Search results\": \"Результаты поиска\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Выберите метку\", \"Select provider\": \"\", Settings: \"Параметры\", \"Settings navigation\": \"Навигация по настройкам\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Смайлики и эмоции\", \"Start slideshow\": \"Начать показ слайдов\", \"Start typing to search\": \"\", Submit: \"Утвердить\", Symbols: \"Символы\", \"Travel & Places\": \"Путешествия и места\", \"Type to search time zone\": \"Введите для поиска часового пояса\", \"Unable to search the group\": \"Невозможно найти группу\", \"Undo changes\": \"Отменить изменения\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sc\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"si\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sk\", translations: { \"{tag} (invisible)\": \"{tag} (neviditeľný)\", \"{tag} (restricted)\": \"{tag} (obmedzený)\", \"a few seconds ago\": \"\", Actions: \"Akcie\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivity\", \"Animals & Nature\": \"Zvieratá a príroda\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Zrušiť zmeny\", \"Change name\": \"\", Choose: \"Vybrať\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Zatvoriť\", \"Close modal\": \"\", \"Close navigation\": \"Zavrieť navigáciu\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potvrdiť zmeny\", Custom: \"Zvyk\", \"Edit item\": \"Upraviť položku\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vlajky\", \"Food & Drink\": \"Jedlo a nápoje\", \"Frequently used\": \"Často používané\", Global: \"Globálne\", \"Go back to the list\": \"Naspäť na zoznam\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limit správy na {count} znakov dosiahnutý\", \"More items …\": \"\", \"More options\": \"\", Next: \"Ďalší\", \"No emoji found\": \"Nenašli sa žiadne emodži\", \"No link provider found\": \"\", \"No results\": \"Žiadne výsledky\", Objects: \"Objekty\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otvoriť navigáciu\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pozastaviť prezentáciu\", \"People & Body\": \"Ľudia a telo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Vyberte si emodži\", \"Please select a time zone:\": \"Prosím vyberte časovú zónu:\", Previous: \"Predchádzajúci\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Hľadať\", \"Search emoji\": \"\", \"Search results\": \"Výsledky vyhľadávania\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Vybrať štítok\", \"Select provider\": \"\", Settings: \"Nastavenia\", \"Settings navigation\": \"Navigácia v nastaveniach\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smajlíky a emócie\", \"Start slideshow\": \"Začať prezentáciu\", \"Start typing to search\": \"\", Submit: \"Odoslať\", Symbols: \"Symboly\", \"Travel & Places\": \"Cestovanie a miesta\", \"Type to search time zone\": \"Začníte písať pre vyhľadávanie časovej zóny\", \"Unable to search the group\": \"Skupinu sa nepodarilo nájsť\", \"Undo changes\": \"Vrátiť zmeny\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sl\", translations: { \"{tag} (invisible)\": \"{tag} (nevidno)\", \"{tag} (restricted)\": \"{tag} (omejeno)\", \"a few seconds ago\": \"\", Actions: \"Dejanja\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Dejavnosti\", \"Animals & Nature\": \"Živali in Narava\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Podoba {displayName}\", \"Avatar of {displayName}, {status}\": \"Prikazna slika {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Prekliči spremembe\", \"Change name\": \"\", Choose: \"Izbor\", \"Clear search\": \"\", \"Clear text\": \"Počisti besedilo\", Close: \"Zapri\", \"Close modal\": \"Zapri pojavno okno\", \"Close navigation\": \"Zapri krmarjenje\", \"Close sidebar\": \"Zapri stransko vrstico\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potrdi spremembe\", Custom: \"Po meri\", \"Edit item\": \"Uredi predmet\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Priljubljeno\", Flags: \"Zastavice\", \"Food & Drink\": \"Hrana in Pijača\", \"Frequently used\": \"Pogostost uporabe\", Global: \"Splošno\", \"Go back to the list\": \"Vrni se na seznam\", \"Hide password\": \"Skrij geslo\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Dosežena omejitev {count} znakov na sporočilo.\", \"More items …\": \"Več predmetov ...\", \"More options\": \"\", Next: \"Naslednji\", \"No emoji found\": \"Ni najdenih izraznih ikon\", \"No link provider found\": \"\", \"No results\": \"Ni zadetkov\", Objects: \"Predmeti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Odpri krmarjenje\", \"Open settings menu\": \"\", \"Password is secure\": \"Geslo je varno\", \"Pause slideshow\": \"Ustavi predstavitev\", \"People & Body\": \"Ljudje in Telo\", \"Pick a date\": \"Izbor datuma\", \"Pick a date and a time\": \"Izbor datuma in časa\", \"Pick a month\": \"Izbor meseca\", \"Pick a time\": \"Izbor časa\", \"Pick a week\": \"Izbor tedna\", \"Pick a year\": \"Izbor leta\", \"Pick an emoji\": \"Izbor izrazne ikone\", \"Please select a time zone:\": \"Izbor časovnega pasu:\", Previous: \"Predhodni\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Povezani viri\", Search: \"Iskanje\", \"Search emoji\": \"\", \"Search results\": \"Zadetki iskanja\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Izbor oznake\", \"Select provider\": \"\", Settings: \"Nastavitve\", \"Settings navigation\": \"Krmarjenje nastavitev\", \"Show password\": \"Pokaži geslo\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Izrazne ikone\", \"Start slideshow\": \"Začni predstavitev\", \"Start typing to search\": \"\", Submit: \"Pošlji\", Symbols: \"Simboli\", \"Travel & Places\": \"Potovanja in Kraji\", \"Type to search time zone\": \"Vpišite niz za iskanje časovnega pasu\", \"Unable to search the group\": \"Ni mogoče iskati po skupini\", \"Undo changes\": \"Razveljavi spremembe\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sq\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sr\", translations: { \"{tag} (invisible)\": \"{tag} (nevidljivo)\", \"{tag} (restricted)\": \"{tag} (ograničeno)\", \"a few seconds ago\": \"\", Actions: \"Radnje\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivnosti\", \"Animals & Nature\": \"Životinje i Priroda\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar za {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar za {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Otkaži izmene\", \"Change name\": \"\", Choose: \"Изаберите\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Затвори\", \"Close modal\": \"Zatvori modal\", \"Close navigation\": \"Zatvori navigaciju\", \"Close sidebar\": \"Zatvori bočnu traku\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potvrdite promene\", Custom: \"Po meri\", \"Edit item\": \"Uredi stavku\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Omiljeni\", Flags: \"Zastave\", \"Food & Drink\": \"Hrana i Piće\", \"Frequently used\": \"Često korišćeno\", Global: \"Globalno\", \"Go back to the list\": \"Natrag na listu\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Dostignuto je ograničenje za poruke od {count} znakova\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следеће\", \"No emoji found\": \"Nije pronađen nijedan emodži\", \"No link provider found\": \"\", \"No results\": \"Нема резултата\", Objects: \"Objekti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otvori navigaciju\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Паузирај слајд шоу\", \"People & Body\": \"Ljudi i Telo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Izaberi emodži\", \"Please select a time zone:\": \"Molimo izaberite vremensku zonu:\", Previous: \"Претходно\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Pretraži\", \"Search emoji\": \"\", \"Search results\": \"Rezultati pretrage\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Изаберите ознаку\", \"Select provider\": \"\", Settings: \"Поставке\", \"Settings navigation\": \"Navigacija u podešavanjima\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smajli i Emocije\", \"Start slideshow\": \"Покрени слајд шоу\", \"Start typing to search\": \"\", Submit: \"Prihvati\", Symbols: \"Simboli\", \"Travel & Places\": \"Putovanja i Mesta\", \"Type to search time zone\": \"Ukucaj da pretražiš vremenske zone\", \"Unable to search the group\": \"Nije moguće pretražiti grupu\", \"Undo changes\": \"Poništi promene\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sr@latin\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sv\", translations: { \"{tag} (invisible)\": \"{tag} (osynlig)\", \"{tag} (restricted)\": \"{tag} (begränsad)\", \"a few seconds ago\": \"några sekunder sedan\", Actions: \"Åtgärder\", 'Actions for item with name \"{name}\"': 'Åtgärder för objekt med namn \"{name}\"', Activities: \"Aktiviteter\", \"Animals & Nature\": \"Djur & Natur\", \"Any link\": \"Vilken länk som helst\", \"Anything shared with the same group of people will show up here\": \"Något som delats med samma grupp av personer kommer att visas här\", \"Avatar of {displayName}\": \"{displayName}s avatar\", \"Avatar of {displayName}, {status}\": \"{displayName}s avatar, {status}\", Back: \"Tillbaka\", \"Back to provider selection\": \"Tillbaka till leverantörsval\", \"Cancel changes\": \"Avbryt ändringar\", \"Change name\": \"Ändra namn\", Choose: \"Välj\", \"Clear search\": \"Rensa sökning\", \"Clear text\": \"Ta bort text\", Close: \"Stäng\", \"Close modal\": \"Stäng modal\", \"Close navigation\": \"Stäng navigering\", \"Close sidebar\": \"Stäng sidopanel\", \"Close Smart Picker\": \"Stäng Smart Picker\", \"Collapse menu\": \"Komprimera menyn\", \"Confirm changes\": \"Bekräfta ändringar\", Custom: \"Anpassad\", \"Edit item\": \"Ändra\", \"Enter link\": \"Ange länk\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\", \"External documentation for {name}\": \"Extern dokumentation för {name}\", Favorite: \"Favorit\", Flags: \"Flaggor\", \"Food & Drink\": \"Mat & Dryck\", \"Frequently used\": \"Används ofta\", Global: \"Global\", \"Go back to the list\": \"Gå tillbaka till listan\", \"Hide password\": \"Göm lössenordet\", 'Load more \"{options}\"\"': 'Ladda fler \"{options}\"\"', \"Message limit of {count} characters reached\": \"Meddelandegräns {count} tecken används\", \"More items …\": \"Fler objekt\", \"More options\": \"Fler alternativ\", Next: \"Nästa\", \"No emoji found\": \"Hittade inga emojis\", \"No link provider found\": \"Ingen länkleverantör hittades\", \"No results\": \"Inga resultat\", Objects: \"Objekt\", \"Open contact menu\": \"Öppna kontaktmenyn\", 'Open link to \"{resourceName}\"': 'Öppna länken till \"{resourceName}\"', \"Open menu\": \"Öppna menyn\", \"Open navigation\": \"Öppna navigering\", \"Open settings menu\": \"Öppna inställningsmenyn\", \"Password is secure\": \"Lössenordet är säkert\", \"Pause slideshow\": \"Pausa bildspelet\", \"People & Body\": \"Kropp & Själ\", \"Pick a date\": \"Välj datum\", \"Pick a date and a time\": \"Välj datum och tid\", \"Pick a month\": \"Välj månad\", \"Pick a time\": \"Välj tid\", \"Pick a week\": \"Välj vecka\", \"Pick a year\": \"Välj år\", \"Pick an emoji\": \"Välj en emoji\", \"Please select a time zone:\": \"Välj tidszon:\", Previous: \"Föregående\", \"Provider icon\": \"Leverantörsikon\", \"Raw link {options}\": \"Oformaterad länk {options}\", \"Related resources\": \"Relaterade resurser\", Search: \"Sök\", \"Search emoji\": \"Sök emoji\", \"Search results\": \"Sökresultat\", \"sec. ago\": \"sek. sedan\", \"seconds ago\": \"sekunder sedan\", \"Select a tag\": \"Välj en tag\", \"Select provider\": \"Välj leverantör\", Settings: \"Inställningar\", \"Settings navigation\": \"Inställningsmeny\", \"Show password\": \"Visa lössenordet\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Selfies & Känslor\", \"Start slideshow\": \"Starta bildspelet\", \"Start typing to search\": \"Börja skriva för att söka\", Submit: \"Skicka\", Symbols: \"Symboler\", \"Travel & Places\": \"Resor & Sevärdigheter\", \"Type to search time zone\": \"Skriv för att välja tidszon\", \"Unable to search the group\": \"Kunde inte söka i gruppen\", \"Undo changes\": \"Ångra ändringar\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...' } }, { locale: \"sw\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ta\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"th\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"tk\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"tr\", translations: { \"{tag} (invisible)\": \"{tag} (görünmez)\", \"{tag} (restricted)\": \"{tag} (kısıtlı)\", \"a few seconds ago\": \"birkaç saniye önce\", Actions: \"İşlemler\", 'Actions for item with name \"{name}\"': \"{name} adındaki öge için işlemler\", Activities: \"Etkinlikler\", \"Animals & Nature\": \"Hayvanlar ve Doğa\", \"Any link\": \"Herhangi bir bağlantı\", \"Anything shared with the same group of people will show up here\": \"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\", \"Avatar of {displayName}\": \"{displayName} avatarı\", \"Avatar of {displayName}, {status}\": \"{displayName}, {status} avatarı\", Back: \"Geri\", \"Back to provider selection\": \"Sağlayıcı seçimine dön\", \"Cancel changes\": \"Değişiklikleri iptal et\", \"Change name\": \"Adı değiştir\", Choose: \"Seçin\", \"Clear search\": \"Aramayı temizle\", \"Clear text\": \"Metni temizle\", Close: \"Kapat\", \"Close modal\": \"Üste açılan pencereyi kapat\", \"Close navigation\": \"Gezinmeyi kapat\", \"Close sidebar\": \"Yan çubuğu kapat\", \"Close Smart Picker\": \"Akıllı seçimi kapat\", \"Collapse menu\": \"Menüyü daralt\", \"Confirm changes\": \"Değişiklikleri onayla\", Custom: \"Özel\", \"Edit item\": \"Ögeyi düzenle\", \"Enter link\": \"Bağlantıyı yazın\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \", \"External documentation for {name}\": \"{name} için dış belgeler\", Favorite: \"Sık kullanılanlara ekle\", Flags: \"Bayraklar\", \"Food & Drink\": \"Yeme ve içme\", \"Frequently used\": \"Sık kullanılanlar\", Global: \"Evrensel\", \"Go back to the list\": \"Listeye dön\", \"Hide password\": \"Parolayı gizle\", 'Load more \"{options}\"\"': 'Diğer \"{options}\"', \"Message limit of {count} characters reached\": \"{count} karakter ileti sınırına ulaşıldı\", \"More items …\": \"Diğer ögeler…\", \"More options\": \"Diğer seçenekler\", Next: \"Sonraki\", \"No emoji found\": \"Herhangi bir emoji bulunamadı\", \"No link provider found\": \"Bağlantı sağlayıcısı bulunamadı\", \"No results\": \"Herhangi bir sonuç bulunamadı\", Objects: \"Nesneler\", \"Open contact menu\": \"İletişim menüsünü aç\", 'Open link to \"{resourceName}\"': \"{resourceName} bağlantısını aç\", \"Open menu\": \"Menüyü aç\", \"Open navigation\": \"Gezinmeyi aç\", \"Open settings menu\": \"Ayarlar menüsünü aç\", \"Password is secure\": \"Parola güvenli\", \"Pause slideshow\": \"Slayt sunumunu duraklat\", \"People & Body\": \"İnsanlar ve beden\", \"Pick a date\": \"Bir tarih seçin\", \"Pick a date and a time\": \"Bir tarih ve saat seçin\", \"Pick a month\": \"Bir ay seçin\", \"Pick a time\": \"Bir saat seçin\", \"Pick a week\": \"Bir hafta seçin\", \"Pick a year\": \"Bir yıl seçin\", \"Pick an emoji\": \"Bir emoji seçin\", \"Please select a time zone:\": \"Lütfen bir saat dilimi seçin:\", Previous: \"Önceki\", \"Provider icon\": \"Sağlayıcı simgesi\", \"Raw link {options}\": \"Ham bağlantı {options}\", \"Related resources\": \"İlgili kaynaklar\", Search: \"Arama\", \"Search emoji\": \"Emoji ara\", \"Search results\": \"Arama sonuçları\", \"sec. ago\": \"sn. önce\", \"seconds ago\": \"saniye önce\", \"Select a tag\": \"Bir etiket seçin\", \"Select provider\": \"Sağlayıcı seçin\", Settings: \"Ayarlar\", \"Settings navigation\": \"Gezinme ayarları\", \"Show password\": \"Parolayı görüntüle\", \"Smart Picker\": \"Akıllı seçim\", \"Smileys & Emotion\": \"İfadeler ve duygular\", \"Start slideshow\": \"Slayt sunumunu başlat\", \"Start typing to search\": \"Aramak için yazmaya başlayın\", Submit: \"Gönder\", Symbols: \"Simgeler\", \"Travel & Places\": \"Gezi ve yerler\", \"Type to search time zone\": \"Saat dilimi aramak için yazmaya başlayın\", \"Unable to search the group\": \"Grupta arama yapılamadı\", \"Undo changes\": \"Değişiklikleri geri al\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…' } }, { locale: \"ug\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"uk\", translations: { \"{tag} (invisible)\": \"{tag} (невидимий)\", \"{tag} (restricted)\": \"{tag} (обмежений)\", \"a few seconds ago\": \"декілька секунд тому\", Actions: \"Дії\", 'Actions for item with name \"{name}\"': `Дії для об'єкту \"{name}\"`, Activities: \"Діяльність\", \"Animals & Nature\": \"Тварини та природа\", \"Any link\": \"Будь-яке посилання\", \"Anything shared with the same group of people will show up here\": \"Будь-що доступне для цієї же групи людей буде показано тут\", \"Avatar of {displayName}\": \"Аватар {displayName}\", \"Avatar of {displayName}, {status}\": \"Аватар {displayName}, {status}\", Back: \"Назад\", \"Back to provider selection\": \"Назад до вибору постачальника\", \"Cancel changes\": \"Скасувати зміни\", \"Change name\": \"Змінити назву\", Choose: \"Виберіть\", \"Clear search\": \"Очистити пошук\", \"Clear text\": \"Очистити текст\", Close: \"Закрити\", \"Close modal\": \"Закрити модаль\", \"Close navigation\": \"Закрити навігацію\", \"Close sidebar\": \"Закрити бічну панель\", \"Close Smart Picker\": \"Закрити асистент вибору\", \"Collapse menu\": \"Згорнути меню\", \"Confirm changes\": \"Підтвердити зміни\", Custom: \"Власне\", \"Edit item\": \"Редагувати елемент\", \"Enter link\": \"Зазначте посилання\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\", \"External documentation for {name}\": \"Зовнішня документація для {name}\", Favorite: \"Із зірочкою\", Flags: \"Прапори\", \"Food & Drink\": \"Їжа та напої\", \"Frequently used\": \"Найчастіші\", Global: \"Глобальний\", \"Go back to the list\": \"Повернутися до списку\", \"Hide password\": \"Приховати пароль\", 'Load more \"{options}\"\"': 'Завантажити більше \"{options}\"', \"Message limit of {count} characters reached\": \"Вичерпано ліміт у {count} символів для повідомлення\", \"More items …\": \"Більше об'єктів...\", \"More options\": \"Більше об'єктів\", Next: \"Вперед\", \"No emoji found\": \"Емоційки відсутні\", \"No link provider found\": \"Не наведено посилання\", \"No results\": \"Відсутні результати\", Objects: \"Об'єкти\", \"Open contact menu\": \"Відкрити меню контактів\", 'Open link to \"{resourceName}\"': 'Відкрити посилання на \"{resourceName}\"', \"Open menu\": \"Відкрити меню\", \"Open navigation\": \"Відкрити навігацію\", \"Open settings menu\": \"Відкрити меню налаштувань\", \"Password is secure\": \"Пароль безпечний\", \"Pause slideshow\": \"Пауза у показі слайдів\", \"People & Body\": \"Люди та жести\", \"Pick a date\": \"Вибрати дату\", \"Pick a date and a time\": \"Виберіть дату та час\", \"Pick a month\": \"Виберіть місяць\", \"Pick a time\": \"Виберіть час\", \"Pick a week\": \"Виберіть тиждень\", \"Pick a year\": \"Виберіть рік\", \"Pick an emoji\": \"Виберіть емоційку\", \"Please select a time zone:\": \"Виберіть часовий пояс:\", Previous: \"Назад\", \"Provider icon\": \"Піктограма постачальника\", \"Raw link {options}\": \"Пряме посилання {options}\", \"Related resources\": \"Пов'язані ресурси\", Search: \"Пошук\", \"Search emoji\": \"Шукати емоційки\", \"Search results\": \"Результати пошуку\", \"sec. ago\": \"с тому\", \"seconds ago\": \"с тому\", \"Select a tag\": \"Виберіть позначку\", \"Select provider\": \"Виберіть постачальника\", Settings: \"Налаштування\", \"Settings navigation\": \"Навігація у налаштуваннях\", \"Show password\": \"Показати пароль\", \"Smart Picker\": \"Асистент вибору\", \"Smileys & Emotion\": \"Смайли та емоції\", \"Start slideshow\": \"Почати показ слайдів\", \"Start typing to search\": \"Почніть вводити для пошуку\", Submit: \"Надіслати\", Symbols: \"Символи\", \"Travel & Places\": \"Поїздки та місця\", \"Type to search time zone\": \"Введіть для пошуку часовий пояс\", \"Unable to search the group\": \"Неможливо шукати в групі\", \"Undo changes\": \"Скасувати зміни\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...' } }, { locale: \"ur_PK\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"uz\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"vi\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"zh_CN\", translations: { \"{tag} (invisible)\": \"{tag} (不可见)\", \"{tag} (restricted)\": \"{tag} (受限)\", \"a few seconds ago\": \"\", Actions: \"行为\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活动\", \"Animals & Nature\": \"动物 & 自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"与同组用户分享的所有内容都会显示于此\", \"Avatar of {displayName}\": \"{displayName}的头像\", \"Avatar of {displayName}, {status}\": \"{displayName}的头像,{status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"取消更改\", \"Change name\": \"\", Choose: \"选择\", \"Clear search\": \"\", \"Clear text\": \"清除文本\", Close: \"关闭\", \"Close modal\": \"关闭窗口\", \"Close navigation\": \"关闭导航\", \"Close sidebar\": \"关闭侧边栏\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"确认更改\", Custom: \"自定义\", \"Edit item\": \"编辑项目\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"喜爱\", Flags: \"旗帜\", \"Food & Drink\": \"食物 & 饮品\", \"Frequently used\": \"经常使用\", Global: \"全局\", \"Go back to the list\": \"返回至列表\", \"Hide password\": \"隐藏密码\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已达到 {count} 个字符的消息限制\", \"More items …\": \"更多项目…\", \"More options\": \"\", Next: \"下一个\", \"No emoji found\": \"表情未找到\", \"No link provider found\": \"\", \"No results\": \"无结果\", Objects: \"物体\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"开启导航\", \"Open settings menu\": \"\", \"Password is secure\": \"密码安全\", \"Pause slideshow\": \"暂停幻灯片\", \"People & Body\": \"人 & 身体\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"选择一个表情\", \"Please select a time zone:\": \"请选择一个时区:\", Previous: \"上一个\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"相关资源\", Search: \"搜索\", \"Search emoji\": \"\", \"Search results\": \"搜索结果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"选择一个标签\", \"Select provider\": \"\", Settings: \"设置\", \"Settings navigation\": \"设置向导\", \"Show password\": \"显示密码\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"笑脸 & 情感\", \"Start slideshow\": \"开始幻灯片\", \"Start typing to search\": \"\", Submit: \"提交\", Symbols: \"符号\", \"Travel & Places\": \"旅游 & 地点\", \"Type to search time zone\": \"打字以搜索时区\", \"Unable to search the group\": \"无法搜索分组\", \"Undo changes\": \"撤销更改\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': '写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...' } }, { locale: \"zh_HK\", translations: { \"{tag} (invisible)\": \"{tag} (隱藏)\", \"{tag} (restricted)\": \"{tag} (受限)\", \"a few seconds ago\": \"\", Actions: \"動作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活動\", \"Animals & Nature\": \"動物與自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"與同一組人共享的任何內容都會顯示在此處\", \"Avatar of {displayName}\": \"{displayName} 的頭像\", \"Avatar of {displayName}, {status}\": \"{displayName} 的頭像,{status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"取消更改\", \"Change name\": \"\", Choose: \"選擇\", \"Clear search\": \"\", \"Clear text\": \"清除文本\", Close: \"關閉\", \"Close modal\": \"關閉模態\", \"Close navigation\": \"關閉導航\", \"Close sidebar\": \"關閉側邊欄\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"確認更改\", Custom: \"自定義\", \"Edit item\": \"編輯項目\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"喜愛\", Flags: \"旗幟\", \"Food & Drink\": \"食物與飲料\", \"Frequently used\": \"經常使用\", Global: \"全球的\", \"Go back to the list\": \"返回清單\", \"Hide password\": \"隱藏密碼\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已達到訊息最多 {count} 字元限制\", \"More items …\": \"更多項目 …\", \"More options\": \"\", Next: \"下一個\", \"No emoji found\": \"未找到表情符號\", \"No link provider found\": \"\", \"No results\": \"無結果\", Objects: \"物件\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"開啟導航\", \"Open settings menu\": \"\", \"Password is secure\": \"密碼是安全的\", \"Pause slideshow\": \"暫停幻燈片\", \"People & Body\": \"人物\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"選擇表情符號\", \"Please select a time zone:\": \"請選擇時區:\", Previous: \"上一個\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"相關資源\", Search: \"搜尋\", \"Search emoji\": \"\", \"Search results\": \"搜尋結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"選擇標籤\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"設定值導覽\", \"Show password\": \"顯示密碼\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"表情\", \"Start slideshow\": \"開始幻燈片\", \"Start typing to search\": \"\", Submit: \"提交\", Symbols: \"標誌\", \"Travel & Places\": \"旅遊與景點\", \"Type to search time zone\": \"鍵入以搜索時區\", \"Unable to search the group\": \"無法搜尋群組\", \"Undo changes\": \"取消更改\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': '寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...' } }, { locale: \"zh_TW\", translations: { \"{tag} (invisible)\": \"{tag}(隱藏)\", \"{tag} (restricted)\": \"{tag}(受限)\", \"a few seconds ago\": \"幾秒前\", Actions: \"動作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活動\", \"Animals & Nature\": \"動物與自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"選擇\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"關閉\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"自定義\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"旗幟\", \"Food & Drink\": \"食物與飲料\", \"Frequently used\": \"最近使用\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已達到訊息最多 {count} 字元限制\", \"More items …\": \"\", \"More options\": \"\", Next: \"下一個\", \"No emoji found\": \"未找到表情符號\", \"No link provider found\": \"\", \"No results\": \"無結果\", Objects: \"物件\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"暫停幻燈片\", \"People & Body\": \"人物\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"選擇表情符號\", \"Please select a time zone:\": \"\", Previous: \"上一個\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"搜尋\", \"Search emoji\": \"\", \"Search results\": \"搜尋結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"選擇標籤\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"設定值導覽\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"表情\", \"Start slideshow\": \"開始幻燈片\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"標誌\", \"Travel & Places\": \"旅遊與景點\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"無法搜尋群組\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"zu_ZA\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }].forEach(function(p) {\n var h = {};\n for (var y in p.translations)\n p.translations[y].pluralId ? h[y] = { msgid: y, msgid_plural: p.translations[y].pluralId, msgstr: p.translations[y].msgstr } : h[y] = { msgid: y, msgstr: [p.translations[y]] };\n c.addTranslation(p.locale, { translations: { \"\": h } });\n });\n var d = c.build(), m = (d.ngettext.bind(d), d.gettext.bind(d));\n }, 1205: (o, i, u) => {\n u.d(i, { Z: () => l });\n const l = function(c) {\n return Math.random().toString(36).replace(/[^a-z]+/g, \"\").slice(0, c || 5);\n };\n }, 1206: (o, i, u) => {\n u.d(i, { L: () => l });\n var l = function() {\n return Object.assign(window, { _nc_focus_trap: window._nc_focus_trap || [] }), window._nc_focus_trap;\n };\n }, 9546: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcActions/NcActions.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 5155: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcActions/NcActions.vue\"], names: [], mappings: \"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 7294: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcButton/NcButton.vue\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 1625: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcPopover/NcPopover.vue\"], names: [], mappings: \"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 5727: () => {\n }, 2102: () => {\n }, 2405: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n }, 7931: (o) => {\n o.exports = Yc();\n }, 9454: (o) => {\n o.exports = xv;\n }, 4505: (o) => {\n o.exports = Yv;\n }, 2734: (o) => {\n o.exports = Kc;\n }, 1441: (o) => {\n o.exports = s1;\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => fe });\n var o = s(3089), i = s(2297), u = s(1205), l = s(932), c = s(2734), d = s.n(c), m = s(1441), p = s.n(m);\n function h($) {\n return h = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(z) {\n return typeof z;\n } : function(z) {\n return z && typeof Symbol == \"function\" && z.constructor === Symbol && z !== Symbol.prototype ? \"symbol\" : typeof z;\n }, h($);\n }\n function y($, z) {\n var te = Object.keys($);\n if (Object.getOwnPropertySymbols) {\n var he = Object.getOwnPropertySymbols($);\n z && (he = he.filter(function(ye) {\n return Object.getOwnPropertyDescriptor($, ye).enumerable;\n })), te.push.apply(te, he);\n }\n return te;\n }\n function P($) {\n for (var z = 1; z < arguments.length; z++) {\n var te = arguments[z] != null ? arguments[z] : {};\n z % 2 ? y(Object(te), !0).forEach(function(he) {\n v($, he, te[he]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties($, Object.getOwnPropertyDescriptors(te)) : y(Object(te)).forEach(function(he) {\n Object.defineProperty($, he, Object.getOwnPropertyDescriptor(te, he));\n });\n }\n return $;\n }\n function v($, z, te) {\n return (z = function(he) {\n var ye = function(Be, je) {\n if (h(Be) !== \"object\" || Be === null)\n return Be;\n var Re = Be[Symbol.toPrimitive];\n if (Re !== void 0) {\n var Oe = Re.call(Be, je || \"default\");\n if (h(Oe) !== \"object\")\n return Oe;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (je === \"string\" ? String : Number)(Be);\n }(he, \"string\");\n return h(ye) === \"symbol\" ? ye : String(ye);\n }(z)) in $ ? Object.defineProperty($, z, { value: te, enumerable: !0, configurable: !0, writable: !0 }) : $[z] = te, $;\n }\n function g($) {\n return function(z) {\n if (Array.isArray(z))\n return b(z);\n }($) || function(z) {\n if (typeof Symbol < \"u\" && z[Symbol.iterator] != null || z[\"@@iterator\"] != null)\n return Array.from(z);\n }($) || function(z, te) {\n if (z) {\n if (typeof z == \"string\")\n return b(z, te);\n var he = Object.prototype.toString.call(z).slice(8, -1);\n if (he === \"Object\" && z.constructor && (he = z.constructor.name), he === \"Map\" || he === \"Set\")\n return Array.from(z);\n if (he === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(he))\n return b(z, te);\n }\n }($) || function() {\n throw new TypeError(`Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n }();\n }\n function b($, z) {\n (z == null || z > $.length) && (z = $.length);\n for (var te = 0, he = new Array(z); te < z; te++)\n he[te] = $[te];\n return he;\n }\n var x = \".focusable\";\n const _ = { name: \"NcActions\", components: { NcButton: o.default, DotsHorizontal: p(), NcPopover: i.default }, props: { open: { type: Boolean, default: !1 }, manualOpen: { type: Boolean, default: !1 }, forceMenu: { type: Boolean, default: !1 }, forceName: { type: Boolean, default: !1 }, menuName: { type: String, default: null }, primary: { type: Boolean, default: !1 }, type: { type: String, validator: function($) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf($) !== -1;\n }, default: null }, defaultIcon: { type: String, default: \"\" }, ariaLabel: { type: String, default: (0, l.t)(\"Actions\") }, ariaHidden: { type: Boolean, default: null }, placement: { type: String, default: \"bottom\" }, boundariesElement: { type: Element, default: function() {\n return document.querySelector(\"body\");\n } }, container: { type: [String, Object, Element, Boolean], default: \"body\" }, disabled: { type: Boolean, default: !1 }, inline: { type: Number, default: 0 } }, emits: [\"open\", \"update:open\", \"close\", \"focus\", \"blur\"], data: function() {\n return { opened: this.open, focusIndex: 0, randomId: \"menu-\".concat((0, u.Z)()) };\n }, computed: { triggerBtnType: function() {\n return this.type || (this.primary ? \"primary\" : this.menuName ? \"secondary\" : \"tertiary\");\n } }, watch: { open: function($) {\n $ !== this.opened && (this.opened = $);\n } }, methods: { isValidSingleAction: function($) {\n var z, te, he, ye = (z = $ == null || (te = $.componentOptions) === null || te === void 0 || (te = te.Ctor) === null || te === void 0 || (te = te.extendOptions) === null || te === void 0 ? void 0 : te.name) !== null && z !== void 0 ? z : $ == null || (he = $.componentOptions) === null || he === void 0 ? void 0 : he.tag;\n return [\"NcActionButton\", \"NcActionLink\", \"NcActionRouter\"].includes(ye);\n }, openMenu: function($) {\n this.opened || (this.opened = !0, this.$emit(\"update:open\", !0), this.$emit(\"open\"));\n }, closeMenu: function() {\n var $ = !(arguments.length > 0 && arguments[0] !== void 0) || arguments[0];\n this.opened && (this.opened = !1, this.$refs.popover.clearFocusTrap({ returnFocus: $ }), this.$emit(\"update:open\", !1), this.$emit(\"close\"), this.focusIndex = 0, this.$refs.menuButton.$el.focus());\n }, onOpen: function($) {\n var z = this;\n this.$nextTick(function() {\n z.focusFirstAction($);\n });\n }, onMouseFocusAction: function($) {\n if (document.activeElement !== $.target) {\n var z = $.target.closest(\"li\");\n if (z) {\n var te = z.querySelector(x);\n if (te) {\n var he = g(this.$refs.menu.querySelectorAll(x)).indexOf(te);\n he > -1 && (this.focusIndex = he, this.focusAction());\n }\n }\n }\n }, onKeydown: function($) {\n ($.keyCode === 38 || $.keyCode === 9 && $.shiftKey) && this.focusPreviousAction($), ($.keyCode === 40 || $.keyCode === 9 && !$.shiftKey) && this.focusNextAction($), $.keyCode === 33 && this.focusFirstAction($), $.keyCode === 34 && this.focusLastAction($), $.keyCode === 27 && (this.closeMenu(), $.preventDefault());\n }, removeCurrentActive: function() {\n var $ = this.$refs.menu.querySelector(\"li.active\");\n $ && $.classList.remove(\"active\");\n }, focusAction: function() {\n var $ = this.$refs.menu.querySelectorAll(x)[this.focusIndex];\n if ($) {\n this.removeCurrentActive();\n var z = $.closest(\"li.action\");\n $.focus(), z && z.classList.add(\"active\");\n }\n }, focusPreviousAction: function($) {\n this.opened && (this.focusIndex === 0 ? this.closeMenu() : (this.preventIfEvent($), this.focusIndex = this.focusIndex - 1), this.focusAction());\n }, focusNextAction: function($) {\n if (this.opened) {\n var z = this.$refs.menu.querySelectorAll(x).length - 1;\n this.focusIndex === z ? this.closeMenu() : (this.preventIfEvent($), this.focusIndex = this.focusIndex + 1), this.focusAction();\n }\n }, focusFirstAction: function($) {\n this.opened && (this.preventIfEvent($), this.focusIndex = 0, this.focusAction());\n }, focusLastAction: function($) {\n this.opened && (this.preventIfEvent($), this.focusIndex = this.$refs.menu.querySelectorAll(x).length - 1, this.focusAction());\n }, preventIfEvent: function($) {\n $ && ($.preventDefault(), $.stopPropagation());\n }, onFocus: function($) {\n this.$emit(\"focus\", $);\n }, onBlur: function($) {\n this.$emit(\"blur\", $);\n } }, render: function($) {\n var z = this, te = (this.$slots.default || []).filter(function(me) {\n var oe, Y;\n return (me == null || (oe = me.componentOptions) === null || oe === void 0 ? void 0 : oe.tag) || (me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.Ctor) === null || Y === void 0 || (Y = Y.extendOptions) === null || Y === void 0 ? void 0 : Y.name);\n }), he = te.every(function(me) {\n var oe, Y, de, re;\n return ((oe = me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.Ctor) === null || Y === void 0 || (Y = Y.extendOptions) === null || Y === void 0 ? void 0 : Y.name) !== null && oe !== void 0 ? oe : me == null || (de = me.componentOptions) === null || de === void 0 ? void 0 : de.tag) === \"NcActionLink\" && (me == null || (re = me.componentOptions) === null || re === void 0 || (re = re.propsData) === null || re === void 0 || (re = re.href) === null || re === void 0 ? void 0 : re.startsWith(window.location.origin));\n }), ye = te.filter(this.isValidSingleAction);\n if (this.forceMenu && ye.length > 0 && this.inline > 0 && (d().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"), ye = []), te.length !== 0) {\n var Be = function(me) {\n var oe, Y, de, re, xe, Se, V, q, X, ce, ne, M, I = (me == null || (oe = me.data) === null || oe === void 0 || (oe = oe.scopedSlots) === null || oe === void 0 || (oe = oe.icon()) === null || oe === void 0 ? void 0 : oe[0]) || $(\"span\", { class: [\"icon\", me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.propsData) === null || Y === void 0 ? void 0 : Y.icon] }), Z = me == null || (de = me.componentOptions) === null || de === void 0 || (de = de.listeners) === null || de === void 0 ? void 0 : de.click, ie = me == null || (re = me.componentOptions) === null || re === void 0 || (re = re.children) === null || re === void 0 || (re = re[0]) === null || re === void 0 || (re = re.text) === null || re === void 0 || (xe = re.trim) === null || xe === void 0 ? void 0 : xe.call(re), se = (me == null || (Se = me.componentOptions) === null || Se === void 0 || (Se = Se.propsData) === null || Se === void 0 ? void 0 : Se.ariaLabel) || ie, Ce = z.forceName ? ie : \"\", Ae = me == null || (V = me.componentOptions) === null || V === void 0 || (V = V.propsData) === null || V === void 0 ? void 0 : V.title;\n return z.forceName || Ae || (Ae = ie), $(\"NcButton\", { class: [\"action-item action-item--single\", me == null || (q = me.data) === null || q === void 0 ? void 0 : q.staticClass, me == null || (X = me.data) === null || X === void 0 ? void 0 : X.class], attrs: { \"aria-label\": se, title: Ae }, ref: me == null || (ce = me.data) === null || ce === void 0 ? void 0 : ce.ref, props: P({ type: z.type || (Ce ? \"secondary\" : \"tertiary\"), disabled: z.disabled || (me == null || (ne = me.componentOptions) === null || ne === void 0 || (ne = ne.propsData) === null || ne === void 0 ? void 0 : ne.disabled), ariaHidden: z.ariaHidden }, me == null || (M = me.componentOptions) === null || M === void 0 ? void 0 : M.propsData), on: P({ focus: z.onFocus, blur: z.onBlur }, !!Z && { click: function(Le) {\n Z && Z(Le);\n } }) }, [$(\"template\", { slot: \"icon\" }, [I]), Ce]);\n }, je = function(me) {\n var oe, Y, de = ((oe = z.$slots.icon) === null || oe === void 0 ? void 0 : oe[0]) || (z.defaultIcon ? $(\"span\", { class: [\"icon\", z.defaultIcon] }) : $(\"DotsHorizontal\", { props: { size: 20 } }));\n return $(\"NcPopover\", { ref: \"popover\", props: { delay: 0, handleResize: !0, shown: z.opened, placement: z.placement, boundary: z.boundariesElement, container: z.container, popoverBaseClass: \"action-item__popper\", setReturnFocus: (Y = z.$refs.menuButton) === null || Y === void 0 ? void 0 : Y.$el }, attrs: P(P({ delay: 0, handleResize: !0, shown: z.opened, placement: z.placement, boundary: z.boundariesElement, container: z.container }, z.manualOpen && { triggers: [] }), {}, { popoverBaseClass: \"action-item__popper\" }), on: { show: z.openMenu, \"after-show\": z.onOpen, hide: z.closeMenu } }, [$(\"NcButton\", { class: \"action-item__menutoggle\", props: { type: z.triggerBtnType, disabled: z.disabled, ariaHidden: z.ariaHidden }, slot: \"trigger\", ref: \"menuButton\", attrs: { \"aria-haspopup\": he ? null : \"menu\", \"aria-label\": z.menuName ? null : z.ariaLabel, \"aria-controls\": z.opened ? z.randomId : null, \"aria-expanded\": z.opened.toString() }, on: { focus: z.onFocus, blur: z.onBlur } }, [$(\"template\", { slot: \"icon\" }, [de]), z.menuName]), $(\"div\", { class: { open: z.opened }, attrs: { tabindex: \"-1\" }, on: { keydown: z.onKeydown, mousemove: z.onMouseFocusAction }, ref: \"menu\" }, [$(\"ul\", { attrs: { id: z.randomId, tabindex: \"-1\", role: he ? null : \"menu\" } }, [me])])]);\n };\n if (te.length === 1 && ye.length === 1 && !this.forceMenu)\n return Be(ye[0]);\n if (ye.length > 0 && this.inline > 0) {\n var Re = ye.slice(0, this.inline), Oe = te.filter(function(me) {\n return !Re.includes(me);\n });\n return $(\"div\", { class: [\"action-items\", \"action-item--\".concat(this.triggerBtnType)] }, [].concat(g(Re.map(Be)), [Oe.length > 0 ? $(\"div\", { class: [\"action-item\", { \"action-item--open\": this.opened }] }, [je(Oe)]) : null]));\n }\n return $(\"div\", { class: [\"action-item action-item--default-popover\", \"action-item--\".concat(this.triggerBtnType), { \"action-item--open\": this.opened }] }, [je(te)]);\n }\n } };\n var w = s(3379), L = s.n(w), H = s(7795), C = s.n(H), E = s(569), T = s.n(E), f = s(3565), A = s.n(f), S = s(9216), D = s.n(S), R = s(4589), B = s.n(R), F = s(9546), W = {};\n W.styleTagTransform = B(), W.setAttributes = A(), W.insert = T().bind(null, \"head\"), W.domAPI = C(), W.insertStyleElement = D(), L()(F.Z, W), F.Z && F.Z.locals && F.Z.locals;\n var U = s(5155), j = {};\n j.styleTagTransform = B(), j.setAttributes = A(), j.insert = T().bind(null, \"head\"), j.domAPI = C(), j.insertStyleElement = D(), L()(U.Z, j), U.Z && U.Z.locals && U.Z.locals;\n var ee = s(1900), J = s(5727), le = s.n(J), ge = (0, ee.Z)(_, void 0, void 0, !1, null, \"55038265\", null);\n typeof le() == \"function\" && le()(ge);\n const fe = ge.exports;\n })(), r;\n })());\n})(Jc);\nvar o1 = Jc.exports;\nconst r1 = mn(o1);\nvar Tm = { exports: {} };\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 7294: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcButton/NcButton.vue\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 2102: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n function o(S) {\n return o = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(D) {\n return typeof D;\n } : function(D) {\n return D && typeof Symbol == \"function\" && D.constructor === Symbol && D !== Symbol.prototype ? \"symbol\" : typeof D;\n }, o(S);\n }\n function i(S, D) {\n var R = Object.keys(S);\n if (Object.getOwnPropertySymbols) {\n var B = Object.getOwnPropertySymbols(S);\n D && (B = B.filter(function(F) {\n return Object.getOwnPropertyDescriptor(S, F).enumerable;\n })), R.push.apply(R, B);\n }\n return R;\n }\n function u(S) {\n for (var D = 1; D < arguments.length; D++) {\n var R = arguments[D] != null ? arguments[D] : {};\n D % 2 ? i(Object(R), !0).forEach(function(B) {\n l(S, B, R[B]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(S, Object.getOwnPropertyDescriptors(R)) : i(Object(R)).forEach(function(B) {\n Object.defineProperty(S, B, Object.getOwnPropertyDescriptor(R, B));\n });\n }\n return S;\n }\n function l(S, D, R) {\n return (D = function(B) {\n var F = function(W, U) {\n if (o(W) !== \"object\" || W === null)\n return W;\n var j = W[Symbol.toPrimitive];\n if (j !== void 0) {\n var ee = j.call(W, U || \"default\");\n if (o(ee) !== \"object\")\n return ee;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (U === \"string\" ? String : Number)(W);\n }(B, \"string\");\n return o(F) === \"symbol\" ? F : String(F);\n }(D)) in S ? Object.defineProperty(S, D, { value: R, enumerable: !0, configurable: !0, writable: !0 }) : S[D] = R, S;\n }\n s.r(r), s.d(r, { default: () => A });\n const c = { name: \"NcButton\", props: { alignment: { type: String, default: \"center\", validator: function(S) {\n return [\"start\", \"start-reverse\", \"center\", \"center-reverse\", \"end\", \"end-reverse\"].includes(S);\n } }, disabled: { type: Boolean, default: !1 }, type: { type: String, validator: function(S) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf(S) !== -1;\n }, default: \"secondary\" }, nativeType: { type: String, validator: function(S) {\n return [\"submit\", \"reset\", \"button\"].indexOf(S) !== -1;\n }, default: \"button\" }, wide: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: null }, href: { type: String, default: null }, download: { type: String, default: null }, to: { type: [String, Object], default: null }, exact: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null }, pressed: { type: Boolean, default: null } }, emits: [\"update:pressed\", \"click\"], computed: { realType: function() {\n return this.pressed ? \"primary\" : this.pressed === !1 && this.type === \"primary\" ? \"secondary\" : this.type;\n }, flexAlignment: function() {\n return this.alignment.split(\"-\")[0];\n }, isReverseAligned: function() {\n return this.alignment.includes(\"-\");\n } }, render: function(S) {\n var D, R, B, F = this, W = (D = this.$slots.default) === null || D === void 0 || (D = D[0]) === null || D === void 0 || (D = D.text) === null || D === void 0 || (R = D.trim) === null || R === void 0 ? void 0 : R.call(D), U = !!W, j = (B = this.$slots) === null || B === void 0 ? void 0 : B.icon;\n W || this.ariaLabel || console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\", { text: W, ariaLabel: this.ariaLabel }, this);\n var ee = function() {\n var J, le = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, ge = le.navigate, fe = le.isActive, $ = le.isExactActive;\n return S(F.to || !F.href ? \"button\" : \"a\", { class: [\"button-vue\", (J = { \"button-vue--icon-only\": j && !U, \"button-vue--text-only\": U && !j, \"button-vue--icon-and-text\": j && U }, l(J, \"button-vue--vue-\".concat(F.realType), F.realType), l(J, \"button-vue--wide\", F.wide), l(J, \"button-vue--\".concat(F.flexAlignment), F.flexAlignment !== \"center\"), l(J, \"button-vue--reverse\", F.isReverseAligned), l(J, \"active\", fe), l(J, \"router-link-exact-active\", $), J)], attrs: u({ \"aria-label\": F.ariaLabel, \"aria-pressed\": F.pressed, disabled: F.disabled, type: F.href ? null : F.nativeType, role: F.href ? \"button\" : null, href: !F.to && F.href ? F.href : null, target: !F.to && F.href ? \"_self\" : null, rel: !F.to && F.href ? \"nofollow noreferrer noopener\" : null, download: !F.to && F.href && F.download ? F.download : null }, F.$attrs), on: u(u({}, F.$listeners), {}, { click: function(z) {\n typeof F.pressed == \"boolean\" && F.$emit(\"update:pressed\", !F.pressed), F.$emit(\"click\", z), ge?.(z);\n } }) }, [S(\"span\", { class: \"button-vue__wrapper\" }, [j ? S(\"span\", { class: \"button-vue__icon\", attrs: { \"aria-hidden\": F.ariaHidden } }, [F.$slots.icon]) : null, U ? S(\"span\", { class: \"button-vue__text\" }, [W]) : null])]);\n };\n return this.to ? S(\"router-link\", { props: { custom: !0, to: this.to, exact: this.exact }, scopedSlots: { default: ee } }) : ee();\n } };\n var d = s(3379), m = s.n(d), p = s(7795), h = s.n(p), y = s(569), P = s.n(y), v = s(3565), g = s.n(v), b = s(9216), x = s.n(b), _ = s(4589), w = s.n(_), L = s(7294), H = {};\n H.styleTagTransform = w(), H.setAttributes = g(), H.insert = P().bind(null, \"head\"), H.domAPI = h(), H.insertStyleElement = x(), m()(L.Z, H), L.Z && L.Z.locals && L.Z.locals;\n var C = s(1900), E = s(2102), T = s.n(E), f = (0, C.Z)(c, void 0, void 0, !1, null, \"7aad13a0\", null);\n typeof T() == \"function\" && T()(f);\n const A = f.exports;\n })(), r;\n })());\n})(Tm);\nvar i1 = Tm.exports;\nconst u1 = mn(i1);\nvar Fm = { exports: {} }, Nn = {}, On = { exports: {} }, ho = {}, ul = {}, ll;\nfunction qr() {\n return ll || (ll = 1, function(e) {\n const t = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", a = t + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", n = \"[\" + t + \"][\" + a + \"]*\", s = new RegExp(\"^\" + n + \"$\"), r = function(i, u) {\n const l = [];\n let c = u.exec(i);\n for (; c; ) {\n const d = [];\n d.startIndex = u.lastIndex - c[0].length;\n const m = c.length;\n for (let p = 0; p < m; p++)\n d.push(c[p]);\n l.push(d), c = u.exec(i);\n }\n return l;\n }, o = function(i) {\n const u = s.exec(i);\n return !(u === null || typeof u > \"u\");\n };\n e.isExist = function(i) {\n return typeof i < \"u\";\n }, e.isEmptyObject = function(i) {\n return Object.keys(i).length === 0;\n }, e.merge = function(i, u, l) {\n if (u) {\n const c = Object.keys(u), d = c.length;\n for (let m = 0; m < d; m++)\n l === \"strict\" ? i[c[m]] = [u[c[m]]] : i[c[m]] = u[c[m]];\n }\n }, e.getValue = function(i) {\n return e.isExist(i) ? i : \"\";\n }, e.isName = o, e.getAllMatches = r, e.nameRegexp = n;\n }(ul)), ul;\n}\nvar cl;\nfunction Dm() {\n if (cl)\n return ho;\n cl = 1;\n const e = qr(), t = { allowBooleanAttributes: !1, unpairedTags: [] };\n ho.validate = function(v, g) {\n g = Object.assign({}, t, g);\n const b = [];\n let x = !1, _ = !1;\n v[0] === \"\\uFEFF\" && (v = v.substr(1));\n for (let w = 0; w < v.length; w++)\n if (v[w] === \"<\" && v[w + 1] === \"?\") {\n if (w += 2, w = n(v, w), w.err)\n return w;\n } else if (v[w] === \"<\") {\n let L = w;\n if (w++, v[w] === \"!\") {\n w = s(v, w);\n continue;\n } else {\n let H = !1;\n v[w] === \"/\" && (H = !0, w++);\n let C = \"\";\n for (; w < v.length && v[w] !== \">\" && v[w] !== \" \" && v[w] !== \"\t\" && v[w] !== `\n` && v[w] !== \"\\r\"; w++)\n C += v[w];\n if (C = C.trim(), C[C.length - 1] === \"/\" && (C = C.substring(0, C.length - 1), w--), !h(C)) {\n let f;\n return C.trim().length === 0 ? f = \"Invalid space after '<'.\" : f = \"Tag '\" + C + \"' is an invalid name.\", m(\"InvalidTag\", f, y(v, w));\n }\n const E = i(v, w);\n if (E === !1)\n return m(\"InvalidAttr\", \"Attributes for '\" + C + \"' have open quote.\", y(v, w));\n let T = E.value;\n if (w = E.index, T[T.length - 1] === \"/\") {\n const f = w - T.length;\n T = T.substring(0, T.length - 1);\n const A = l(T, g);\n if (A === !0)\n x = !0;\n else\n return m(A.err.code, A.err.msg, y(v, f + A.err.line));\n } else if (H)\n if (E.tagClosed) {\n if (T.trim().length > 0)\n return m(\"InvalidTag\", \"Closing tag '\" + C + \"' can't have attributes or invalid starting.\", y(v, L));\n {\n const f = b.pop();\n if (C !== f.tagName) {\n let A = y(v, f.tagStartPos);\n return m(\"InvalidTag\", \"Expected closing tag '\" + f.tagName + \"' (opened in line \" + A.line + \", col \" + A.col + \") instead of closing tag '\" + C + \"'.\", y(v, L));\n }\n b.length == 0 && (_ = !0);\n }\n } else\n return m(\"InvalidTag\", \"Closing tag '\" + C + \"' doesn't have proper closing.\", y(v, w));\n else {\n const f = l(T, g);\n if (f !== !0)\n return m(f.err.code, f.err.msg, y(v, w - T.length + f.err.line));\n if (_ === !0)\n return m(\"InvalidXml\", \"Multiple possible root nodes found.\", y(v, w));\n g.unpairedTags.indexOf(C) !== -1 || b.push({ tagName: C, tagStartPos: L }), x = !0;\n }\n for (w++; w < v.length; w++)\n if (v[w] === \"<\")\n if (v[w + 1] === \"!\") {\n w++, w = s(v, w);\n continue;\n } else if (v[w + 1] === \"?\") {\n if (w = n(v, ++w), w.err)\n return w;\n } else\n break;\n else if (v[w] === \"&\") {\n const f = d(v, w);\n if (f == -1)\n return m(\"InvalidChar\", \"char '&' is not expected.\", y(v, w));\n w = f;\n } else if (_ === !0 && !a(v[w]))\n return m(\"InvalidXml\", \"Extra text at the end\", y(v, w));\n v[w] === \"<\" && w--;\n }\n } else {\n if (a(v[w]))\n continue;\n return m(\"InvalidChar\", \"char '\" + v[w] + \"' is not expected.\", y(v, w));\n }\n if (x) {\n if (b.length == 1)\n return m(\"InvalidTag\", \"Unclosed tag '\" + b[0].tagName + \"'.\", y(v, b[0].tagStartPos));\n if (b.length > 0)\n return m(\"InvalidXml\", \"Invalid '\" + JSON.stringify(b.map((w) => w.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return m(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n };\n function a(v) {\n return v === \" \" || v === \"\t\" || v === `\n` || v === \"\\r\";\n }\n function n(v, g) {\n const b = g;\n for (; g < v.length; g++)\n if (v[g] == \"?\" || v[g] == \" \") {\n const x = v.substr(b, g - b);\n if (g > 5 && x === \"xml\")\n return m(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", y(v, g));\n if (v[g] == \"?\" && v[g + 1] == \">\") {\n g++;\n break;\n } else\n continue;\n }\n return g;\n }\n function s(v, g) {\n if (v.length > g + 5 && v[g + 1] === \"-\" && v[g + 2] === \"-\") {\n for (g += 3; g < v.length; g++)\n if (v[g] === \"-\" && v[g + 1] === \"-\" && v[g + 2] === \">\") {\n g += 2;\n break;\n }\n } else if (v.length > g + 8 && v[g + 1] === \"D\" && v[g + 2] === \"O\" && v[g + 3] === \"C\" && v[g + 4] === \"T\" && v[g + 5] === \"Y\" && v[g + 6] === \"P\" && v[g + 7] === \"E\") {\n let b = 1;\n for (g += 8; g < v.length; g++)\n if (v[g] === \"<\")\n b++;\n else if (v[g] === \">\" && (b--, b === 0))\n break;\n } else if (v.length > g + 9 && v[g + 1] === \"[\" && v[g + 2] === \"C\" && v[g + 3] === \"D\" && v[g + 4] === \"A\" && v[g + 5] === \"T\" && v[g + 6] === \"A\" && v[g + 7] === \"[\") {\n for (g += 8; g < v.length; g++)\n if (v[g] === \"]\" && v[g + 1] === \"]\" && v[g + 2] === \">\") {\n g += 2;\n break;\n }\n }\n return g;\n }\n const r = '\"', o = \"'\";\n function i(v, g) {\n let b = \"\", x = \"\", _ = !1;\n for (; g < v.length; g++) {\n if (v[g] === r || v[g] === o)\n x === \"\" ? x = v[g] : x !== v[g] || (x = \"\");\n else if (v[g] === \">\" && x === \"\") {\n _ = !0;\n break;\n }\n b += v[g];\n }\n return x !== \"\" ? !1 : { value: b, index: g, tagClosed: _ };\n }\n const u = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\n function l(v, g) {\n const b = e.getAllMatches(v, u), x = {};\n for (let _ = 0; _ < b.length; _++) {\n if (b[_][1].length === 0)\n return m(\"InvalidAttr\", \"Attribute '\" + b[_][2] + \"' has no space in starting.\", P(b[_]));\n if (b[_][3] !== void 0 && b[_][4] === void 0)\n return m(\"InvalidAttr\", \"Attribute '\" + b[_][2] + \"' is without value.\", P(b[_]));\n if (b[_][3] === void 0 && !g.allowBooleanAttributes)\n return m(\"InvalidAttr\", \"boolean attribute '\" + b[_][2] + \"' is not allowed.\", P(b[_]));\n const w = b[_][2];\n if (!p(w))\n return m(\"InvalidAttr\", \"Attribute '\" + w + \"' is an invalid name.\", P(b[_]));\n if (!x.hasOwnProperty(w))\n x[w] = 1;\n else\n return m(\"InvalidAttr\", \"Attribute '\" + w + \"' is repeated.\", P(b[_]));\n }\n return !0;\n }\n function c(v, g) {\n let b = /\\d/;\n for (v[g] === \"x\" && (g++, b = /[\\da-fA-F]/); g < v.length; g++) {\n if (v[g] === \";\")\n return g;\n if (!v[g].match(b))\n break;\n }\n return -1;\n }\n function d(v, g) {\n if (g++, v[g] === \";\")\n return -1;\n if (v[g] === \"#\")\n return g++, c(v, g);\n let b = 0;\n for (; g < v.length; g++, b++)\n if (!(v[g].match(/\\w/) && b < 20)) {\n if (v[g] === \";\")\n break;\n return -1;\n }\n return g;\n }\n function m(v, g, b) {\n return { err: { code: v, msg: g, line: b.line || b, col: b.col } };\n }\n function p(v) {\n return e.isName(v);\n }\n function h(v) {\n return e.isName(v);\n }\n function y(v, g) {\n const b = v.substring(0, g).split(/\\r?\\n/);\n return { line: b.length, col: b[b.length - 1].length + 1 };\n }\n function P(v) {\n return v.startIndex + v[1].length;\n }\n return ho;\n}\nvar jn = {}, ml;\nfunction l1() {\n if (ml)\n return jn;\n ml = 1;\n const e = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(a, n) {\n return n;\n }, attributeValueProcessor: function(a, n) {\n return n;\n }, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(a, n, s) {\n return a;\n } }, t = function(a) {\n return Object.assign({}, e, a);\n };\n return jn.buildOptions = t, jn.defaultOptions = e, jn;\n}\nvar fo, dl;\nfunction c1() {\n if (dl)\n return fo;\n dl = 1;\n class e {\n constructor(a) {\n this.tagname = a, this.child = [], this[\":@\"] = {};\n }\n add(a, n) {\n a === \"__proto__\" && (a = \"#__proto__\"), this.child.push({ [a]: n });\n }\n addChild(a) {\n a.tagname === \"__proto__\" && (a.tagname = \"#__proto__\"), a[\":@\"] && Object.keys(a[\":@\"]).length > 0 ? this.child.push({ [a.tagname]: a.child, \":@\": a[\":@\"] }) : this.child.push({ [a.tagname]: a.child });\n }\n }\n return fo = e, fo;\n}\nvar vo, pl;\nfunction m1() {\n if (pl)\n return vo;\n pl = 1;\n const e = qr();\n function t(l, c) {\n const d = {};\n if (l[c + 3] === \"O\" && l[c + 4] === \"C\" && l[c + 5] === \"T\" && l[c + 6] === \"Y\" && l[c + 7] === \"P\" && l[c + 8] === \"E\") {\n c = c + 9;\n let m = 1, p = !1, h = !1, y = \"\";\n for (; c < l.length; c++)\n if (l[c] === \"<\" && !h) {\n if (p && s(l, c))\n c += 7, [entityName, val, c] = a(l, c + 1), val.indexOf(\"&\") === -1 && (d[u(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (p && r(l, c))\n c += 8;\n else if (p && o(l, c))\n c += 8;\n else if (p && i(l, c))\n c += 9;\n else if (n)\n h = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n m++, y = \"\";\n } else if (l[c] === \">\") {\n if (h ? l[c - 1] === \"-\" && l[c - 2] === \"-\" && (h = !1, m--) : m--, m === 0)\n break;\n } else\n l[c] === \"[\" ? p = !0 : y += l[c];\n if (m !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: d, i: c };\n }\n function a(l, c) {\n let d = \"\";\n for (; c < l.length && l[c] !== \"'\" && l[c] !== '\"'; c++)\n d += l[c];\n if (d = d.trim(), d.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const m = l[c++];\n let p = \"\";\n for (; c < l.length && l[c] !== m; c++)\n p += l[c];\n return [d, p, c];\n }\n function n(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"-\" && l[c + 3] === \"-\";\n }\n function s(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"E\" && l[c + 3] === \"N\" && l[c + 4] === \"T\" && l[c + 5] === \"I\" && l[c + 6] === \"T\" && l[c + 7] === \"Y\";\n }\n function r(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"E\" && l[c + 3] === \"L\" && l[c + 4] === \"E\" && l[c + 5] === \"M\" && l[c + 6] === \"E\" && l[c + 7] === \"N\" && l[c + 8] === \"T\";\n }\n function o(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"A\" && l[c + 3] === \"T\" && l[c + 4] === \"T\" && l[c + 5] === \"L\" && l[c + 6] === \"I\" && l[c + 7] === \"S\" && l[c + 8] === \"T\";\n }\n function i(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"N\" && l[c + 3] === \"O\" && l[c + 4] === \"T\" && l[c + 5] === \"A\" && l[c + 6] === \"T\" && l[c + 7] === \"I\" && l[c + 8] === \"O\" && l[c + 9] === \"N\";\n }\n function u(l) {\n if (e.isName(l))\n return l;\n throw new Error(`Invalid entity name ${l}`);\n }\n return vo = t, vo;\n}\nvar Co, gl;\nfunction d1() {\n if (gl)\n return Co;\n gl = 1;\n const e = /^[-+]?0x[a-fA-F0-9]+$/, t = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n !Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\n const a = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\n function n(r, o = {}) {\n if (o = Object.assign({}, a, o), !r || typeof r != \"string\")\n return r;\n let i = r.trim();\n if (o.skipLike !== void 0 && o.skipLike.test(i))\n return r;\n if (o.hex && e.test(i))\n return Number.parseInt(i, 16);\n {\n const u = t.exec(i);\n if (u) {\n const l = u[1], c = u[2];\n let d = s(u[3]);\n const m = u[4] || u[6];\n if (!o.leadingZeros && c.length > 0 && l && i[2] !== \".\" || !o.leadingZeros && c.length > 0 && !l && i[1] !== \".\")\n return r;\n {\n const p = Number(i), h = \"\" + p;\n return h.search(/[eE]/) !== -1 || m ? o.eNotation ? p : r : i.indexOf(\".\") !== -1 ? h === \"0\" && d === \"\" || h === d || l && h === \"-\" + d ? p : r : c ? d === h || l + d === h ? p : r : i === h || i === l + h ? p : r;\n }\n } else\n return r;\n }\n }\n function s(r) {\n return r && r.indexOf(\".\") !== -1 && (r = r.replace(/0+$/, \"\"), r === \".\" ? r = \"0\" : r[0] === \".\" ? r = \"0\" + r : r[r.length - 1] === \".\" && (r = r.substr(0, r.length - 1))), r;\n }\n return Co = n, Co;\n}\nvar yo, hl;\nfunction p1() {\n if (hl)\n return yo;\n hl = 1;\n const e = qr(), t = c1(), a = m1(), n = d1();\n \"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, e.nameRegexp);\n class s {\n constructor(_) {\n this.options = _, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = r, this.parseXml = c, this.parseTextData = o, this.resolveNameSpace = i, this.buildAttributesMap = l, this.isItStopNode = h, this.replaceEntitiesValue = m, this.readStopNodeData = g, this.saveTextToParentTag = p, this.addChild = d;\n }\n }\n function r(x) {\n const _ = Object.keys(x);\n for (let w = 0; w < _.length; w++) {\n const L = _[w];\n this.lastEntities[L] = { regex: new RegExp(\"&\" + L + \";\", \"g\"), val: x[L] };\n }\n }\n function o(x, _, w, L, H, C, E) {\n if (x !== void 0 && (this.options.trimValues && !L && (x = x.trim()), x.length > 0)) {\n E || (x = this.replaceEntitiesValue(x));\n const T = this.options.tagValueProcessor(_, x, w, H, C);\n return T == null ? x : typeof T != typeof x || T !== x ? T : this.options.trimValues ? b(x, this.options.parseTagValue, this.options.numberParseOptions) : x.trim() === x ? b(x, this.options.parseTagValue, this.options.numberParseOptions) : x;\n }\n }\n function i(x) {\n if (this.options.removeNSPrefix) {\n const _ = x.split(\":\"), w = x.charAt(0) === \"/\" ? \"/\" : \"\";\n if (_[0] === \"xmlns\")\n return \"\";\n _.length === 2 && (x = w + _[1]);\n }\n return x;\n }\n const u = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\n function l(x, _, w) {\n if (!this.options.ignoreAttributes && typeof x == \"string\") {\n const L = e.getAllMatches(x, u), H = L.length, C = {};\n for (let E = 0; E < H; E++) {\n const T = this.resolveNameSpace(L[E][1]);\n let f = L[E][4], A = this.options.attributeNamePrefix + T;\n if (T.length)\n if (this.options.transformAttributeName && (A = this.options.transformAttributeName(A)), A === \"__proto__\" && (A = \"#__proto__\"), f !== void 0) {\n this.options.trimValues && (f = f.trim()), f = this.replaceEntitiesValue(f);\n const S = this.options.attributeValueProcessor(T, f, _);\n S == null ? C[A] = f : typeof S != typeof f || S !== f ? C[A] = S : C[A] = b(f, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (C[A] = !0);\n }\n if (!Object.keys(C).length)\n return;\n if (this.options.attributesGroupName) {\n const E = {};\n return E[this.options.attributesGroupName] = C, E;\n }\n return C;\n }\n }\n const c = function(x) {\n x = x.replace(/\\r\\n?/g, `\n`);\n const _ = new t(\"!xml\");\n let w = _, L = \"\", H = \"\";\n for (let C = 0; C < x.length; C++)\n if (x[C] === \"<\")\n if (x[C + 1] === \"/\") {\n const E = P(x, \">\", C, \"Closing Tag is not closed.\");\n let T = x.substring(C + 2, E).trim();\n if (this.options.removeNSPrefix) {\n const S = T.indexOf(\":\");\n S !== -1 && (T = T.substr(S + 1));\n }\n this.options.transformTagName && (T = this.options.transformTagName(T)), w && (L = this.saveTextToParentTag(L, w, H));\n const f = H.substring(H.lastIndexOf(\".\") + 1);\n if (T && this.options.unpairedTags.indexOf(T) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let A = 0;\n f && this.options.unpairedTags.indexOf(f) !== -1 ? (A = H.lastIndexOf(\".\", H.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : A = H.lastIndexOf(\".\"), H = H.substring(0, A), w = this.tagsNodeStack.pop(), L = \"\", C = E;\n } else if (x[C + 1] === \"?\") {\n let E = v(x, C, !1, \"?>\");\n if (!E)\n throw new Error(\"Pi Tag is not closed.\");\n if (L = this.saveTextToParentTag(L, w, H), !(this.options.ignoreDeclaration && E.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const T = new t(E.tagName);\n T.add(this.options.textNodeName, \"\"), E.tagName !== E.tagExp && E.attrExpPresent && (T[\":@\"] = this.buildAttributesMap(E.tagExp, H, E.tagName)), this.addChild(w, T, H);\n }\n C = E.closeIndex + 1;\n } else if (x.substr(C + 1, 3) === \"!--\") {\n const E = P(x, \"-->\", C + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const T = x.substring(C + 4, E - 2);\n L = this.saveTextToParentTag(L, w, H), w.add(this.options.commentPropName, [{ [this.options.textNodeName]: T }]);\n }\n C = E;\n } else if (x.substr(C + 1, 2) === \"!D\") {\n const E = a(x, C);\n this.docTypeEntities = E.entities, C = E.i;\n } else if (x.substr(C + 1, 2) === \"![\") {\n const E = P(x, \"]]>\", C, \"CDATA is not closed.\") - 2, T = x.substring(C + 9, E);\n if (L = this.saveTextToParentTag(L, w, H), this.options.cdataPropName)\n w.add(this.options.cdataPropName, [{ [this.options.textNodeName]: T }]);\n else {\n let f = this.parseTextData(T, w.tagname, H, !0, !1, !0);\n f == null && (f = \"\"), w.add(this.options.textNodeName, f);\n }\n C = E + 2;\n } else {\n let E = v(x, C, this.options.removeNSPrefix), T = E.tagName, f = E.tagExp, A = E.attrExpPresent, S = E.closeIndex;\n this.options.transformTagName && (T = this.options.transformTagName(T)), w && L && w.tagname !== \"!xml\" && (L = this.saveTextToParentTag(L, w, H, !1));\n const D = w;\n if (D && this.options.unpairedTags.indexOf(D.tagname) !== -1 && (w = this.tagsNodeStack.pop(), H = H.substring(0, H.lastIndexOf(\".\"))), T !== _.tagname && (H += H ? \".\" + T : T), this.isItStopNode(this.options.stopNodes, H, T)) {\n let R = \"\";\n if (f.length > 0 && f.lastIndexOf(\"/\") === f.length - 1)\n C = E.closeIndex;\n else if (this.options.unpairedTags.indexOf(T) !== -1)\n C = E.closeIndex;\n else {\n const F = this.readStopNodeData(x, T, S + 1);\n if (!F)\n throw new Error(`Unexpected end of ${T}`);\n C = F.i, R = F.tagContent;\n }\n const B = new t(T);\n T !== f && A && (B[\":@\"] = this.buildAttributesMap(f, H, T)), R && (R = this.parseTextData(R, T, H, !0, A, !0, !0)), H = H.substr(0, H.lastIndexOf(\".\")), B.add(this.options.textNodeName, R), this.addChild(w, B, H);\n } else {\n if (f.length > 0 && f.lastIndexOf(\"/\") === f.length - 1) {\n T[T.length - 1] === \"/\" ? (T = T.substr(0, T.length - 1), f = T) : f = f.substr(0, f.length - 1), this.options.transformTagName && (T = this.options.transformTagName(T));\n const R = new t(T);\n T !== f && A && (R[\":@\"] = this.buildAttributesMap(f, H, T)), this.addChild(w, R, H), H = H.substr(0, H.lastIndexOf(\".\"));\n } else {\n const R = new t(T);\n this.tagsNodeStack.push(w), T !== f && A && (R[\":@\"] = this.buildAttributesMap(f, H, T)), this.addChild(w, R, H), w = R;\n }\n L = \"\", C = S;\n }\n }\n else\n L += x[C];\n return _.child;\n };\n function d(x, _, w) {\n const L = this.options.updateTag(_.tagname, w, _[\":@\"]);\n L === !1 || (typeof L == \"string\" && (_.tagname = L), x.addChild(_));\n }\n const m = function(x) {\n if (this.options.processEntities) {\n for (let _ in this.docTypeEntities) {\n const w = this.docTypeEntities[_];\n x = x.replace(w.regx, w.val);\n }\n for (let _ in this.lastEntities) {\n const w = this.lastEntities[_];\n x = x.replace(w.regex, w.val);\n }\n if (this.options.htmlEntities)\n for (let _ in this.htmlEntities) {\n const w = this.htmlEntities[_];\n x = x.replace(w.regex, w.val);\n }\n x = x.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return x;\n };\n function p(x, _, w, L) {\n return x && (L === void 0 && (L = Object.keys(_.child).length === 0), x = this.parseTextData(x, _.tagname, w, !1, _[\":@\"] ? Object.keys(_[\":@\"]).length !== 0 : !1, L), x !== void 0 && x !== \"\" && _.add(this.options.textNodeName, x), x = \"\"), x;\n }\n function h(x, _, w) {\n const L = \"*.\" + w;\n for (const H in x) {\n const C = x[H];\n if (L === C || _ === C)\n return !0;\n }\n return !1;\n }\n function y(x, _, w = \">\") {\n let L, H = \"\";\n for (let C = _; C < x.length; C++) {\n let E = x[C];\n if (L)\n E === L && (L = \"\");\n else if (E === '\"' || E === \"'\")\n L = E;\n else if (E === w[0])\n if (w[1]) {\n if (x[C + 1] === w[1])\n return { data: H, index: C };\n } else\n return { data: H, index: C };\n else\n E === \"\t\" && (E = \" \");\n H += E;\n }\n }\n function P(x, _, w, L) {\n const H = x.indexOf(_, w);\n if (H === -1)\n throw new Error(L);\n return H + _.length - 1;\n }\n function v(x, _, w, L = \">\") {\n const H = y(x, _ + 1, L);\n if (!H)\n return;\n let C = H.data;\n const E = H.index, T = C.search(/\\s/);\n let f = C, A = !0;\n if (T !== -1 && (f = C.substr(0, T).replace(/\\s\\s*$/, \"\"), C = C.substr(T + 1)), w) {\n const S = f.indexOf(\":\");\n S !== -1 && (f = f.substr(S + 1), A = f !== H.data.substr(S + 1));\n }\n return { tagName: f, tagExp: C, closeIndex: E, attrExpPresent: A };\n }\n function g(x, _, w) {\n const L = w;\n let H = 1;\n for (; w < x.length; w++)\n if (x[w] === \"<\")\n if (x[w + 1] === \"/\") {\n const C = P(x, \">\", w, `${_} is not closed`);\n if (x.substring(w + 2, C).trim() === _ && (H--, H === 0))\n return { tagContent: x.substring(L, w), i: C };\n w = C;\n } else if (x[w + 1] === \"?\")\n w = P(x, \"?>\", w + 1, \"StopNode is not closed.\");\n else if (x.substr(w + 1, 3) === \"!--\")\n w = P(x, \"-->\", w + 3, \"StopNode is not closed.\");\n else if (x.substr(w + 1, 2) === \"![\")\n w = P(x, \"]]>\", w, \"StopNode is not closed.\") - 2;\n else {\n const C = v(x, w, \">\");\n C && ((C && C.tagName) === _ && C.tagExp[C.tagExp.length - 1] !== \"/\" && H++, w = C.closeIndex);\n }\n }\n function b(x, _, w) {\n if (_ && typeof x == \"string\") {\n const L = x.trim();\n return L === \"true\" ? !0 : L === \"false\" ? !1 : n(x, w);\n } else\n return e.isExist(x) ? x : \"\";\n }\n return yo = s, yo;\n}\nvar Ao = {}, fl;\nfunction g1() {\n if (fl)\n return Ao;\n fl = 1;\n function e(r, o) {\n return t(r, o);\n }\n function t(r, o, i) {\n let u;\n const l = {};\n for (let c = 0; c < r.length; c++) {\n const d = r[c], m = a(d);\n let p = \"\";\n if (i === void 0 ? p = m : p = i + \".\" + m, m === o.textNodeName)\n u === void 0 ? u = d[m] : u += \"\" + d[m];\n else {\n if (m === void 0)\n continue;\n if (d[m]) {\n let h = t(d[m], o, p);\n const y = s(h, o);\n d[\":@\"] ? n(h, d[\":@\"], p, o) : Object.keys(h).length === 1 && h[o.textNodeName] !== void 0 && !o.alwaysCreateTextNode ? h = h[o.textNodeName] : Object.keys(h).length === 0 && (o.alwaysCreateTextNode ? h[o.textNodeName] = \"\" : h = \"\"), l[m] !== void 0 && l.hasOwnProperty(m) ? (Array.isArray(l[m]) || (l[m] = [l[m]]), l[m].push(h)) : o.isArray(m, p, y) ? l[m] = [h] : l[m] = h;\n }\n }\n }\n return typeof u == \"string\" ? u.length > 0 && (l[o.textNodeName] = u) : u !== void 0 && (l[o.textNodeName] = u), l;\n }\n function a(r) {\n const o = Object.keys(r);\n for (let i = 0; i < o.length; i++) {\n const u = o[i];\n if (u !== \":@\")\n return u;\n }\n }\n function n(r, o, i, u) {\n if (o) {\n const l = Object.keys(o), c = l.length;\n for (let d = 0; d < c; d++) {\n const m = l[d];\n u.isArray(m, i + \".\" + m, !0, !0) ? r[m] = [o[m]] : r[m] = o[m];\n }\n }\n }\n function s(r, o) {\n const { textNodeName: i } = o, u = Object.keys(r).length;\n return !!(u === 0 || u === 1 && (r[i] || typeof r[i] == \"boolean\" || r[i] === 0));\n }\n return Ao.prettify = e, Ao;\n}\nvar wo, vl;\nfunction h1() {\n if (vl)\n return wo;\n vl = 1;\n const { buildOptions: e } = l1(), t = p1(), { prettify: a } = g1(), n = Dm();\n class s {\n constructor(o) {\n this.externalEntities = {}, this.options = e(o);\n }\n parse(o, i) {\n if (typeof o != \"string\")\n if (o.toString)\n o = o.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (i) {\n i === !0 && (i = {});\n const c = n.validate(o, i);\n if (c !== !0)\n throw Error(`${c.err.msg}:${c.err.line}:${c.err.col}`);\n }\n const u = new t(this.options);\n u.addExternalEntities(this.externalEntities);\n const l = u.parseXml(o);\n return this.options.preserveOrder || l === void 0 ? l : a(l, this.options);\n }\n addEntity(o, i) {\n if (i.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (o.indexOf(\"&\") !== -1 || o.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (i === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[o] = i;\n }\n }\n return wo = s, wo;\n}\nvar bo, Cl;\nfunction f1() {\n if (Cl)\n return bo;\n Cl = 1;\n const e = `\n`;\n function t(i, u) {\n let l = \"\";\n return u.format && u.indentBy.length > 0 && (l = e), a(i, u, \"\", l);\n }\n function a(i, u, l, c) {\n let d = \"\", m = !1;\n for (let p = 0; p < i.length; p++) {\n const h = i[p], y = n(h);\n let P = \"\";\n if (l.length === 0 ? P = y : P = `${l}.${y}`, y === u.textNodeName) {\n let _ = h[y];\n r(P, u) || (_ = u.tagValueProcessor(y, _), _ = o(_, u)), m && (d += c), d += _, m = !1;\n continue;\n } else if (y === u.cdataPropName) {\n m && (d += c), d += ``, m = !1;\n continue;\n } else if (y === u.commentPropName) {\n d += c + ``, m = !0;\n continue;\n } else if (y[0] === \"?\") {\n const _ = s(h[\":@\"], u), w = y === \"?xml\" ? \"\" : c;\n let L = h[y][0][u.textNodeName];\n L = L.length !== 0 ? \" \" + L : \"\", d += w + `<${y}${L}${_}?>`, m = !0;\n continue;\n }\n let v = c;\n v !== \"\" && (v += u.indentBy);\n const g = s(h[\":@\"], u), b = c + `<${y}${g}`, x = a(h[y], u, P, v);\n u.unpairedTags.indexOf(y) !== -1 ? u.suppressUnpairedNode ? d += b + \">\" : d += b + \"/>\" : (!x || x.length === 0) && u.suppressEmptyNode ? d += b + \"/>\" : x && x.endsWith(\">\") ? d += b + `>${x}${c}` : (d += b + \">\", x && c !== \"\" && (x.includes(\"/>\") || x.includes(\"`), m = !0;\n }\n return d;\n }\n function n(i) {\n const u = Object.keys(i);\n for (let l = 0; l < u.length; l++) {\n const c = u[l];\n if (c !== \":@\")\n return c;\n }\n }\n function s(i, u) {\n let l = \"\";\n if (i && !u.ignoreAttributes)\n for (let c in i) {\n let d = u.attributeValueProcessor(c, i[c]);\n d = o(d, u), d === !0 && u.suppressBooleanAttributes ? l += ` ${c.substr(u.attributeNamePrefix.length)}` : l += ` ${c.substr(u.attributeNamePrefix.length)}=\"${d}\"`;\n }\n return l;\n }\n function r(i, u) {\n i = i.substr(0, i.length - u.textNodeName.length - 1);\n let l = i.substr(i.lastIndexOf(\".\") + 1);\n for (let c in u.stopNodes)\n if (u.stopNodes[c] === i || u.stopNodes[c] === \"*.\" + l)\n return !0;\n return !1;\n }\n function o(i, u) {\n if (i && i.length > 0 && u.processEntities)\n for (let l = 0; l < u.entities.length; l++) {\n const c = u.entities[l];\n i = i.replace(c.regex, c.val);\n }\n return i;\n }\n return bo = t, bo;\n}\nvar xo, yl;\nfunction v1() {\n if (yl)\n return xo;\n yl = 1;\n const e = f1(), t = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(o, i) {\n return i;\n }, attributeValueProcessor: function(o, i) {\n return i;\n }, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\n function a(o) {\n this.options = Object.assign({}, t, o), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = r), this.processTextOrObjNode = n, this.options.format ? (this.indentate = s, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n }\n a.prototype.build = function(o) {\n return this.options.preserveOrder ? e(o, this.options) : (Array.isArray(o) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (o = { [this.options.arrayNodeName]: o }), this.j2x(o, 0).val);\n }, a.prototype.j2x = function(o, i) {\n let u = \"\", l = \"\";\n for (let c in o)\n if (!(typeof o[c] > \"u\"))\n if (o[c] === null)\n c[0] === \"?\" ? l += this.indentate(i) + \"<\" + c + \"?\" + this.tagEndChar : l += this.indentate(i) + \"<\" + c + \"/\" + this.tagEndChar;\n else if (o[c] instanceof Date)\n l += this.buildTextValNode(o[c], c, \"\", i);\n else if (typeof o[c] != \"object\") {\n const d = this.isAttribute(c);\n if (d)\n u += this.buildAttrPairStr(d, \"\" + o[c]);\n else if (c === this.options.textNodeName) {\n let m = this.options.tagValueProcessor(c, \"\" + o[c]);\n l += this.replaceEntitiesValue(m);\n } else\n l += this.buildTextValNode(o[c], c, \"\", i);\n } else if (Array.isArray(o[c])) {\n const d = o[c].length;\n let m = \"\";\n for (let p = 0; p < d; p++) {\n const h = o[c][p];\n typeof h > \"u\" || (h === null ? c[0] === \"?\" ? l += this.indentate(i) + \"<\" + c + \"?\" + this.tagEndChar : l += this.indentate(i) + \"<\" + c + \"/\" + this.tagEndChar : typeof h == \"object\" ? this.options.oneListGroup ? m += this.j2x(h, i + 1).val : m += this.processTextOrObjNode(h, c, i) : m += this.buildTextValNode(h, c, \"\", i));\n }\n this.options.oneListGroup && (m = this.buildObjectNode(m, c, \"\", i)), l += m;\n } else if (this.options.attributesGroupName && c === this.options.attributesGroupName) {\n const d = Object.keys(o[c]), m = d.length;\n for (let p = 0; p < m; p++)\n u += this.buildAttrPairStr(d[p], \"\" + o[c][d[p]]);\n } else\n l += this.processTextOrObjNode(o[c], c, i);\n return { attrStr: u, val: l };\n }, a.prototype.buildAttrPairStr = function(o, i) {\n return i = this.options.attributeValueProcessor(o, \"\" + i), i = this.replaceEntitiesValue(i), this.options.suppressBooleanAttributes && i === \"true\" ? \" \" + o : \" \" + o + '=\"' + i + '\"';\n };\n function n(o, i, u) {\n const l = this.j2x(o, u + 1);\n return o[this.options.textNodeName] !== void 0 && Object.keys(o).length === 1 ? this.buildTextValNode(o[this.options.textNodeName], i, l.attrStr, u) : this.buildObjectNode(l.val, i, l.attrStr, u);\n }\n a.prototype.buildObjectNode = function(o, i, u, l) {\n if (o === \"\")\n return i[0] === \"?\" ? this.indentate(l) + \"<\" + i + u + \"?\" + this.tagEndChar : this.indentate(l) + \"<\" + i + u + this.closeTag(i) + this.tagEndChar;\n {\n let c = \"\" + o + c : this.options.commentPropName !== !1 && i === this.options.commentPropName && d.length === 0 ? this.indentate(l) + `` + this.newLine : this.indentate(l) + \"<\" + i + u + d + this.tagEndChar + o + this.indentate(l) + c;\n }\n }, a.prototype.closeTag = function(o) {\n let i = \"\";\n return this.options.unpairedTags.indexOf(o) !== -1 ? this.options.suppressUnpairedNode || (i = \"/\") : this.options.suppressEmptyNode ? i = \"/\" : i = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && i === this.options.commentPropName)\n return this.indentate(l) + `` + this.newLine;\n if (i[0] === \"?\")\n return this.indentate(l) + \"<\" + i + u + \"?\" + this.tagEndChar;\n {\n let c = this.options.tagValueProcessor(i, o);\n return c = this.replaceEntitiesValue(c), c === \"\" ? this.indentate(l) + \"<\" + i + u + this.closeTag(i) + this.tagEndChar : this.indentate(l) + \"<\" + i + u + \">\" + c + \" 0 && this.options.processEntities)\n for (let i = 0; i < this.options.entities.length; i++) {\n const u = this.options.entities[i];\n o = o.replace(u.regex, u.val);\n }\n return o;\n };\n function s(o) {\n return this.options.indentBy.repeat(o);\n }\n function r(o) {\n return o.startsWith(this.options.attributeNamePrefix) ? o.substr(this.attrPrefixLen) : !1;\n }\n return xo = a, xo;\n}\nvar ko, Al;\nfunction C1() {\n if (Al)\n return ko;\n Al = 1;\n const e = Dm(), t = h1(), a = v1();\n return ko = { XMLParser: t, XMLValidator: e, XMLBuilder: a }, ko;\n}\nvar wl;\nfunction y1() {\n if (wl)\n return On.exports;\n wl = 1;\n const { XMLParser: e, XMLValidator: t } = C1(), a = (n) => {\n if (n == null || (n = n.toString().trim(), n.length === 0) || t.validate(n) !== !0)\n return !1;\n let s;\n const r = new e();\n try {\n s = r.parse(n);\n } catch {\n return !1;\n }\n return !(!s || !(\"svg\" in s));\n };\n return On.exports = a, On.exports.default = a, On.exports;\n}\nvar bl;\nfunction A1() {\n if (bl)\n return Nn;\n bl = 1, Object.defineProperty(Nn, \"__esModule\", { value: !0 });\n var e = Qm, t = y1();\n function a(l) {\n return l && typeof l == \"object\" && \"default\" in l ? l : { default: l };\n }\n var n = a(t);\n function s(l, c, d, m) {\n function p(h) {\n return h instanceof d ? h : new d(function(y) {\n y(h);\n });\n }\n return new (d || (d = Promise))(function(h, y) {\n function P(b) {\n try {\n g(m.next(b));\n } catch (x) {\n y(x);\n }\n }\n function v(b) {\n try {\n g(m.throw(b));\n } catch (x) {\n y(x);\n }\n }\n function g(b) {\n b.done ? h(b.value) : p(b.value).then(P, v);\n }\n g((m = m.apply(l, c || [])).next());\n });\n }\n function r(l, c) {\n var d = { label: 0, sent: function() {\n if (h[0] & 1)\n throw h[1];\n return h[1];\n }, trys: [], ops: [] }, m, p, h, y;\n return y = { next: P(0), throw: P(1), return: P(2) }, typeof Symbol == \"function\" && (y[Symbol.iterator] = function() {\n return this;\n }), y;\n function P(g) {\n return function(b) {\n return v([g, b]);\n };\n }\n function v(g) {\n if (m)\n throw new TypeError(\"Generator is already executing.\");\n for (; d; )\n try {\n if (m = 1, p && (h = g[0] & 2 ? p.return : g[0] ? p.throw || ((h = p.return) && h.call(p), 0) : p.next) && !(h = h.call(p, g[1])).done)\n return h;\n switch (p = 0, h && (g = [g[0] & 2, h.value]), g[0]) {\n case 0:\n case 1:\n h = g;\n break;\n case 4:\n return d.label++, { value: g[1], done: !1 };\n case 5:\n d.label++, p = g[1], g = [0];\n continue;\n case 7:\n g = d.ops.pop(), d.trys.pop();\n continue;\n default:\n if (h = d.trys, !(h = h.length > 0 && h[h.length - 1]) && (g[0] === 6 || g[0] === 2)) {\n d = 0;\n continue;\n }\n if (g[0] === 3 && (!h || g[1] > h[0] && g[1] < h[3])) {\n d.label = g[1];\n break;\n }\n if (g[0] === 6 && d.label < h[1]) {\n d.label = h[1], h = g;\n break;\n }\n if (h && d.label < h[2]) {\n d.label = h[2], d.ops.push(g);\n break;\n }\n h[2] && d.ops.pop(), d.trys.pop();\n continue;\n }\n g = c.call(l, d);\n } catch (b) {\n g = [6, b], p = 0;\n } finally {\n m = h = 0;\n }\n if (g[0] & 5)\n throw g[1];\n return { value: g[0] ? g[1] : void 0, done: !0 };\n }\n }\n var o = function(l) {\n return new Promise(function(c) {\n if (!i(l))\n c(l.toString(\"utf-8\"));\n else {\n var d = new FileReader();\n d.onload = function() {\n c(d.result);\n }, d.readAsText(l);\n }\n });\n }, i = function(l) {\n return l.size !== void 0;\n }, u = function(l) {\n return s(void 0, void 0, void 0, function() {\n var c, d, m, p, h, y;\n return r(this, function(P) {\n switch (P.label) {\n case 0:\n if (!l)\n throw new Error(\"Not an svg\");\n return c = \"\", e.Buffer.isBuffer(l) || l instanceof File ? [4, o(l)] : [3, 2];\n case 1:\n return c = P.sent(), [3, 3];\n case 2:\n c = l, P.label = 3;\n case 3:\n if (!n.default(c))\n throw new Error(\"Not an svg\");\n return d = document.createElement(\"div\"), d.innerHTML = c, m = d.firstElementChild, p = Array.from(m.attributes).map(function(v) {\n var g = v.name;\n return g;\n }), h = !!p.find(function(v) {\n return v.startsWith(\"on\");\n }), y = m.getElementsByTagName(\"script\"), [2, y.length === 0 && !h ? l : null];\n }\n });\n });\n };\n return Nn.sanitizeSVG = u, Nn;\n}\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 2105: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.icon-vue {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: 44px;\n\tmin-height: 44px;\n\topacity: 1;\n\n\t&:deep(svg) {\n\t\tfill: currentColor;\n\t\tmax-width: 20px;\n\t\tmax-height: 20px;\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 1287: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => S });\n const o = A1();\n function i(D) {\n return i = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(R) {\n return typeof R;\n } : function(R) {\n return R && typeof Symbol == \"function\" && R.constructor === Symbol && R !== Symbol.prototype ? \"symbol\" : typeof R;\n }, i(D);\n }\n function u() {\n u = function() {\n return D;\n };\n var D = {}, R = Object.prototype, B = R.hasOwnProperty, F = Object.defineProperty || function(V, q, X) {\n V[q] = X.value;\n }, W = typeof Symbol == \"function\" ? Symbol : {}, U = W.iterator || \"@@iterator\", j = W.asyncIterator || \"@@asyncIterator\", ee = W.toStringTag || \"@@toStringTag\";\n function J(V, q, X) {\n return Object.defineProperty(V, q, { value: X, enumerable: !0, configurable: !0, writable: !0 }), V[q];\n }\n try {\n J({}, \"\");\n } catch {\n J = function(V, q, X) {\n return V[q] = X;\n };\n }\n function le(V, q, X, ce) {\n var ne = q && q.prototype instanceof $ ? q : $, M = Object.create(ne.prototype), I = new re(ce || []);\n return F(M, \"_invoke\", { value: me(V, X, I) }), M;\n }\n function ge(V, q, X) {\n try {\n return { type: \"normal\", arg: V.call(q, X) };\n } catch (ce) {\n return { type: \"throw\", arg: ce };\n }\n }\n D.wrap = le;\n var fe = {};\n function $() {\n }\n function z() {\n }\n function te() {\n }\n var he = {};\n J(he, U, function() {\n return this;\n });\n var ye = Object.getPrototypeOf, Be = ye && ye(ye(xe([])));\n Be && Be !== R && B.call(Be, U) && (he = Be);\n var je = te.prototype = $.prototype = Object.create(he);\n function Re(V) {\n [\"next\", \"throw\", \"return\"].forEach(function(q) {\n J(V, q, function(X) {\n return this._invoke(q, X);\n });\n });\n }\n function Oe(V, q) {\n function X(ne, M, I, Z) {\n var ie = ge(V[ne], V, M);\n if (ie.type !== \"throw\") {\n var se = ie.arg, Ce = se.value;\n return Ce && i(Ce) == \"object\" && B.call(Ce, \"__await\") ? q.resolve(Ce.__await).then(function(Ae) {\n X(\"next\", Ae, I, Z);\n }, function(Ae) {\n X(\"throw\", Ae, I, Z);\n }) : q.resolve(Ce).then(function(Ae) {\n se.value = Ae, I(se);\n }, function(Ae) {\n return X(\"throw\", Ae, I, Z);\n });\n }\n Z(ie.arg);\n }\n var ce;\n F(this, \"_invoke\", { value: function(ne, M) {\n function I() {\n return new q(function(Z, ie) {\n X(ne, M, Z, ie);\n });\n }\n return ce = ce ? ce.then(I, I) : I();\n } });\n }\n function me(V, q, X) {\n var ce = \"suspendedStart\";\n return function(ne, M) {\n if (ce === \"executing\")\n throw new Error(\"Generator is already running\");\n if (ce === \"completed\") {\n if (ne === \"throw\")\n throw M;\n return Se();\n }\n for (X.method = ne, X.arg = M; ; ) {\n var I = X.delegate;\n if (I) {\n var Z = oe(I, X);\n if (Z) {\n if (Z === fe)\n continue;\n return Z;\n }\n }\n if (X.method === \"next\")\n X.sent = X._sent = X.arg;\n else if (X.method === \"throw\") {\n if (ce === \"suspendedStart\")\n throw ce = \"completed\", X.arg;\n X.dispatchException(X.arg);\n } else\n X.method === \"return\" && X.abrupt(\"return\", X.arg);\n ce = \"executing\";\n var ie = ge(V, q, X);\n if (ie.type === \"normal\") {\n if (ce = X.done ? \"completed\" : \"suspendedYield\", ie.arg === fe)\n continue;\n return { value: ie.arg, done: X.done };\n }\n ie.type === \"throw\" && (ce = \"completed\", X.method = \"throw\", X.arg = ie.arg);\n }\n };\n }\n function oe(V, q) {\n var X = q.method, ce = V.iterator[X];\n if (ce === void 0)\n return q.delegate = null, X === \"throw\" && V.iterator.return && (q.method = \"return\", q.arg = void 0, oe(V, q), q.method === \"throw\") || X !== \"return\" && (q.method = \"throw\", q.arg = new TypeError(\"The iterator does not provide a '\" + X + \"' method\")), fe;\n var ne = ge(ce, V.iterator, q.arg);\n if (ne.type === \"throw\")\n return q.method = \"throw\", q.arg = ne.arg, q.delegate = null, fe;\n var M = ne.arg;\n return M ? M.done ? (q[V.resultName] = M.value, q.next = V.nextLoc, q.method !== \"return\" && (q.method = \"next\", q.arg = void 0), q.delegate = null, fe) : M : (q.method = \"throw\", q.arg = new TypeError(\"iterator result is not an object\"), q.delegate = null, fe);\n }\n function Y(V) {\n var q = { tryLoc: V[0] };\n 1 in V && (q.catchLoc = V[1]), 2 in V && (q.finallyLoc = V[2], q.afterLoc = V[3]), this.tryEntries.push(q);\n }\n function de(V) {\n var q = V.completion || {};\n q.type = \"normal\", delete q.arg, V.completion = q;\n }\n function re(V) {\n this.tryEntries = [{ tryLoc: \"root\" }], V.forEach(Y, this), this.reset(!0);\n }\n function xe(V) {\n if (V) {\n var q = V[U];\n if (q)\n return q.call(V);\n if (typeof V.next == \"function\")\n return V;\n if (!isNaN(V.length)) {\n var X = -1, ce = function ne() {\n for (; ++X < V.length; )\n if (B.call(V, X))\n return ne.value = V[X], ne.done = !1, ne;\n return ne.value = void 0, ne.done = !0, ne;\n };\n return ce.next = ce;\n }\n }\n return { next: Se };\n }\n function Se() {\n return { value: void 0, done: !0 };\n }\n return z.prototype = te, F(je, \"constructor\", { value: te, configurable: !0 }), F(te, \"constructor\", { value: z, configurable: !0 }), z.displayName = J(te, ee, \"GeneratorFunction\"), D.isGeneratorFunction = function(V) {\n var q = typeof V == \"function\" && V.constructor;\n return !!q && (q === z || (q.displayName || q.name) === \"GeneratorFunction\");\n }, D.mark = function(V) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(V, te) : (V.__proto__ = te, J(V, ee, \"GeneratorFunction\")), V.prototype = Object.create(je), V;\n }, D.awrap = function(V) {\n return { __await: V };\n }, Re(Oe.prototype), J(Oe.prototype, j, function() {\n return this;\n }), D.AsyncIterator = Oe, D.async = function(V, q, X, ce, ne) {\n ne === void 0 && (ne = Promise);\n var M = new Oe(le(V, q, X, ce), ne);\n return D.isGeneratorFunction(q) ? M : M.next().then(function(I) {\n return I.done ? I.value : M.next();\n });\n }, Re(je), J(je, ee, \"Generator\"), J(je, U, function() {\n return this;\n }), J(je, \"toString\", function() {\n return \"[object Generator]\";\n }), D.keys = function(V) {\n var q = Object(V), X = [];\n for (var ce in q)\n X.push(ce);\n return X.reverse(), function ne() {\n for (; X.length; ) {\n var M = X.pop();\n if (M in q)\n return ne.value = M, ne.done = !1, ne;\n }\n return ne.done = !0, ne;\n };\n }, D.values = xe, re.prototype = { constructor: re, reset: function(V) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = void 0, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = void 0, this.tryEntries.forEach(de), !V)\n for (var q in this)\n q.charAt(0) === \"t\" && B.call(this, q) && !isNaN(+q.slice(1)) && (this[q] = void 0);\n }, stop: function() {\n this.done = !0;\n var V = this.tryEntries[0].completion;\n if (V.type === \"throw\")\n throw V.arg;\n return this.rval;\n }, dispatchException: function(V) {\n if (this.done)\n throw V;\n var q = this;\n function X(ie, se) {\n return M.type = \"throw\", M.arg = V, q.next = ie, se && (q.method = \"next\", q.arg = void 0), !!se;\n }\n for (var ce = this.tryEntries.length - 1; ce >= 0; --ce) {\n var ne = this.tryEntries[ce], M = ne.completion;\n if (ne.tryLoc === \"root\")\n return X(\"end\");\n if (ne.tryLoc <= this.prev) {\n var I = B.call(ne, \"catchLoc\"), Z = B.call(ne, \"finallyLoc\");\n if (I && Z) {\n if (this.prev < ne.catchLoc)\n return X(ne.catchLoc, !0);\n if (this.prev < ne.finallyLoc)\n return X(ne.finallyLoc);\n } else if (I) {\n if (this.prev < ne.catchLoc)\n return X(ne.catchLoc, !0);\n } else {\n if (!Z)\n throw new Error(\"try statement without catch or finally\");\n if (this.prev < ne.finallyLoc)\n return X(ne.finallyLoc);\n }\n }\n }\n }, abrupt: function(V, q) {\n for (var X = this.tryEntries.length - 1; X >= 0; --X) {\n var ce = this.tryEntries[X];\n if (ce.tryLoc <= this.prev && B.call(ce, \"finallyLoc\") && this.prev < ce.finallyLoc) {\n var ne = ce;\n break;\n }\n }\n ne && (V === \"break\" || V === \"continue\") && ne.tryLoc <= q && q <= ne.finallyLoc && (ne = null);\n var M = ne ? ne.completion : {};\n return M.type = V, M.arg = q, ne ? (this.method = \"next\", this.next = ne.finallyLoc, fe) : this.complete(M);\n }, complete: function(V, q) {\n if (V.type === \"throw\")\n throw V.arg;\n return V.type === \"break\" || V.type === \"continue\" ? this.next = V.arg : V.type === \"return\" ? (this.rval = this.arg = V.arg, this.method = \"return\", this.next = \"end\") : V.type === \"normal\" && q && (this.next = q), fe;\n }, finish: function(V) {\n for (var q = this.tryEntries.length - 1; q >= 0; --q) {\n var X = this.tryEntries[q];\n if (X.finallyLoc === V)\n return this.complete(X.completion, X.afterLoc), de(X), fe;\n }\n }, catch: function(V) {\n for (var q = this.tryEntries.length - 1; q >= 0; --q) {\n var X = this.tryEntries[q];\n if (X.tryLoc === V) {\n var ce = X.completion;\n if (ce.type === \"throw\") {\n var ne = ce.arg;\n de(X);\n }\n return ne;\n }\n }\n throw new Error(\"illegal catch attempt\");\n }, delegateYield: function(V, q, X) {\n return this.delegate = { iterator: xe(V), resultName: q, nextLoc: X }, this.method === \"next\" && (this.arg = void 0), fe;\n } }, D;\n }\n function l(D, R, B, F, W, U, j) {\n try {\n var ee = D[U](j), J = ee.value;\n } catch (le) {\n return void B(le);\n }\n ee.done ? R(J) : Promise.resolve(J).then(F, W);\n }\n function c(D) {\n return function() {\n var R = this, B = arguments;\n return new Promise(function(F, W) {\n var U = D.apply(R, B);\n function j(J) {\n l(U, F, W, j, ee, \"next\", J);\n }\n function ee(J) {\n l(U, F, W, j, ee, \"throw\", J);\n }\n j(void 0);\n });\n };\n }\n const d = { name: \"NcIconSvgWrapper\", props: { svg: { type: String, default: \"\" }, name: { type: String, default: \"\" } }, data: function() {\n return { cleanSvg: \"\" };\n }, beforeMount: function() {\n var D = this;\n return c(u().mark(function R() {\n return u().wrap(function(B) {\n for (; ; )\n switch (B.prev = B.next) {\n case 0:\n return B.next = 2, D.sanitizeSVG();\n case 2:\n case \"end\":\n return B.stop();\n }\n }, R);\n }))();\n }, methods: { sanitizeSVG: function() {\n var D = this;\n return c(u().mark(function R() {\n return u().wrap(function(B) {\n for (; ; )\n switch (B.prev = B.next) {\n case 0:\n if (D.svg) {\n B.next = 2;\n break;\n }\n return B.abrupt(\"return\");\n case 2:\n return B.next = 4, (0, o.sanitizeSVG)(D.svg);\n case 4:\n D.cleanSvg = B.sent;\n case 5:\n case \"end\":\n return B.stop();\n }\n }, R);\n }))();\n } } };\n var m = s(3379), p = s.n(m), h = s(7795), y = s.n(h), P = s(569), v = s.n(P), g = s(3565), b = s.n(g), x = s(9216), _ = s.n(x), w = s(4589), L = s.n(w), H = s(2105), C = {};\n C.styleTagTransform = L(), C.setAttributes = b(), C.insert = v().bind(null, \"head\"), C.domAPI = y(), C.insertStyleElement = _(), p()(H.Z, C), H.Z && H.Z.locals && H.Z.locals;\n var E = s(1900), T = s(1287), f = s.n(T), A = (0, E.Z)(d, function() {\n var D = this;\n return (0, D._self._c)(\"span\", { staticClass: \"icon-vue\", attrs: { role: \"img\", \"aria-hidden\": !D.name, \"aria-label\": D.name }, domProps: { innerHTML: D._s(D.cleanSvg) } });\n }, [], !1, null, \"5937dacc\", null);\n typeof f() == \"function\" && f()(A);\n const S = A.exports;\n })(), r;\n })());\n})(Fm);\nvar w1 = Fm.exports;\nconst b1 = mn(w1);\nvar Bm = { exports: {} };\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 8235: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-67f460e0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.progress-bar[data-v-67f460e0]{display:block;height:var(--progress-bar-height);width:100%;overflow:hidden;border:0;padding:0;background:var(--color-background-dark);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar[data-v-67f460e0]::-webkit-progress-bar{height:var(--progress-bar-height);background-color:rgba(0,0,0,0)}.progress-bar[data-v-67f460e0]::-webkit-progress-value{background:var(--gradient-primary-background);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar[data-v-67f460e0]::-moz-progress-bar{background:var(--gradient-primary-background);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar--error[data-v-67f460e0]::-moz-progress-bar{background:var(--color-error) !important}.progress-bar--error[data-v-67f460e0]::-webkit-progress-value{background:var(--color-error) !important}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcProgressBar/NcProgressBar.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,aAAA,CACA,iCAAA,CACA,UAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,uCAAA,CACA,gDAAA,CAGA,qDACC,iCAAA,CACA,8BAAA,CAED,uDACC,6CAAA,CACA,gDAAA,CAED,kDACC,6CAAA,CACA,gDAAA,CAIA,yDACC,wCAAA,CAED,8DACC,wCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.progress-bar {\n\tdisplay: block;\n\theight: var(--progress-bar-height);\n\twidth: 100%;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tbackground: var(--color-background-dark);\n\tborder-radius: calc(var(--progress-bar-height) / 2);\n\n\t// Browser specific rules\n\t&::-webkit-progress-bar {\n\t\theight: var(--progress-bar-height);\n\t\tbackground-color: transparent;\n\t}\n\t&::-webkit-progress-value {\n\t\tbackground: var(--gradient-primary-background);\n\t\tborder-radius: calc(var(--progress-bar-height) / 2);\n\t}\n\t&::-moz-progress-bar {\n\t\tbackground: var(--gradient-primary-background);\n\t\tborder-radius: calc(var(--progress-bar-height) / 2);\n\t}\n\t&--error {\n\t\t// Override previous values\n\t\t&::-moz-progress-bar {\n\t\t\tbackground: var(--color-error) !important;\n\t\t}\n\t\t&::-webkit-progress-value {\n\t\t\tbackground: var(--color-error) !important;\n\t\t}\n\t}\n}\n\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 8070: () => {\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => H });\n const o = { name: \"NcProgressBar\", props: { value: { type: Number, default: 0, validator: function(C) {\n return C >= 0 && C <= 100;\n } }, size: { type: String, default: \"small\", validator: function(C) {\n return [\"small\", \"medium\"].indexOf(C) !== -1;\n } }, error: { type: Boolean, default: !1 } }, computed: { height: function() {\n return this.size === \"small\" ? \"4px\" : \"6px\";\n } } };\n var i = s(3379), u = s.n(i), l = s(7795), c = s.n(l), d = s(569), m = s.n(d), p = s(3565), h = s.n(p), y = s(9216), P = s.n(y), v = s(4589), g = s.n(v), b = s(8235), x = {};\n x.styleTagTransform = g(), x.setAttributes = h(), x.insert = m().bind(null, \"head\"), x.domAPI = c(), x.insertStyleElement = P(), u()(b.Z, x), b.Z && b.Z.locals && b.Z.locals;\n var _ = s(8070), w = s.n(_), L = function(C, E, T, f, A, S, D, R) {\n var B, F = typeof C == \"function\" ? C.options : C;\n if (E && (F.render = E, F.staticRenderFns = T, F._compiled = !0), f && (F.functional = !0), S && (F._scopeId = \"data-v-\" + S), D ? (B = function(j) {\n (j = j || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (j = __VUE_SSR_CONTEXT__), A && A.call(this, j), j && j._registeredComponents && j._registeredComponents.add(D);\n }, F._ssrRegister = B) : A && (B = R ? function() {\n A.call(this, (F.functional ? this.parent : this).$root.$options.shadowRoot);\n } : A), B)\n if (F.functional) {\n F._injectStyles = B;\n var W = F.render;\n F.render = function(j, ee) {\n return B.call(ee), W(j, ee);\n };\n } else {\n var U = F.beforeCreate;\n F.beforeCreate = U ? [].concat(U, B) : [B];\n }\n return { exports: C, options: F };\n }(o, function() {\n var C = this;\n return (0, C._self._c)(\"progress\", { staticClass: \"progress-bar vue\", class: { \"progress-bar--error\": C.error }, style: { \"--progress-bar-height\": C.height }, attrs: { max: \"100\" }, domProps: { value: C.value } });\n }, [], !1, null, \"67f460e0\", null);\n typeof w() == \"function\" && w()(L);\n const H = L.exports;\n })(), r;\n })());\n})(Bm);\nvar x1 = Bm.exports;\nconst k1 = mn(x1), E1 = { name: \"CancelIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar P1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, S1 = [], T1 = pn(E1, P1, S1, !1, null, null, null, null);\nconst F1 = T1.exports, D1 = { name: \"PlusIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar B1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, _1 = [], N1 = pn(D1, B1, _1, !1, null, null, null, null);\nconst O1 = N1.exports, j1 = { name: \"UploadIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar L1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, z1 = [], U1 = pn(j1, L1, z1, !1, null, null, null, null);\nconst M1 = U1.exports;\nvar R1 = Yc();\nconst _m = R1.getGettextBuilder().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali , 2023\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nomv nas , 2023\nAli , 2023\n` }, msgstr: [`Last-Translator: Ali , 2023\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: 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;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Add: { msgid: \"Add\", msgstr: [\"أضف\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Asturian (https://www.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Asturian (https://www.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev , 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev , 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev , 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido , 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera , 2022\nToni Hermoso Pulido , 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido , 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki , 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki , 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2023\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki , 2023\n` }, msgstr: [`Last-Translator: Pavel Borecki , 2023\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Henrik Dunch, 2022\", \"Language-Team\": \"Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nHenrik Dunch, 2022\n` }, msgstr: [`Last-Translator: Henrik Dunch, 2022\nLanguage-Team: Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Add: { msgid: \"Add\", msgstr: [\"Tilføj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mark Ziegler , 2023\", \"Language-Team\": \"German (https://www.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nkaekimaster, 2023\nMark Ziegler , 2023\n` }, msgstr: [`Last-Translator: Mark Ziegler , 2023\nLanguage-Team: German (https://www.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Add: { msgid: \"Add\", msgstr: [\"Hinzufügen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann , 2022\", \"Language-Team\": \"German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMario Siegmann , 2022\n` }, msgstr: [`Last-Translator: Mario Siegmann , 2022\nLanguage-Team: German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleibend\"] }, Add: { msgid: \"Add\", msgstr: [\"Hinzufügen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler , 2022\", \"Language-Team\": \"English (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nAndi Chandler , 2022\n` }, msgstr: [`Last-Translator: Andi Chandler , 2022\nLanguage-Team: English (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Next Cloud , 2022\", \"Language-Team\": \"Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFlorin Baras, 2022\nHecbert Gonzalez, 2022\nNext Cloud , 2022\n` }, msgstr: [`Last-Translator: Next Cloud , 2022\nLanguage-Team: Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimación del tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta , 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta , 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta , 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos , 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos , 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos , 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jérôme Herbinet, 2022\", \"Language-Team\": \"French (https://www.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ , 2022\nJérôme Herbinet, 2022\n` }, msgstr: [`Last-Translator: Jérôme Herbinet, 2022\nLanguage-Team: French (https://www.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Add: { msgid: \"Add\", msgstr: [\"Ajouter\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléverser des fichiers\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Xosé, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nXosé, 2023\n` }, msgstr: [`Last-Translator: Xosé, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Engadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: 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;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó , 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rainy Merlin, 2022\", \"Language-Team\": \"Indonesian (https://www.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRainy Merlin, 2022\n` }, msgstr: [`Last-Translator: Rainy Merlin, 2022\nLanguage-Team: Indonesian (https://www.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, Add: { msgid: \"Add\", msgstr: [\"Tambah\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"marcotrevisan , 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nGianluca Montalbano, 2022\nmarcotrevisan , 2023\n` }, msgstr: [`Last-Translator: marcotrevisan , 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, Add: { msgid: \"Add\", msgstr: [\"Aggiungi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2022\", \"Language-Team\": \"Korean (https://www.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBrandon Han, 2022\n` }, msgstr: [`Last-Translator: Brandon Han, 2022\nLanguage-Team: Korean (https://www.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, Add: { msgid: \"Add\", msgstr: [\"추가\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산중\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров , 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров , 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров , 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ari Selseng , 2022\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nAri Selseng , 2022\n` }, msgstr: [`Last-Translator: Ari Selseng , 2022\nLanguage-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, Add: { msgid: \"Add\", msgstr: [\"Legg til\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico , 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico , 2023\n` }, msgstr: [`Last-Translator: Rico , 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2022\", \"Language-Team\": \"Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nValdnet, 2022\n` }, msgstr: [`Last-Translator: Valdnet, 2022\nLanguage-Team: Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: 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);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Flávio Veras , 2022\", \"Language-Team\": \"Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLeonardo Colman , 2022\nJeann Cavalcante , 2022\nFlávio Veras , 2022\n` }, msgstr: [`Last-Translator: Flávio Veras , 2022\nLanguage-Team: Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva , 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva , 2022\n` }, msgstr: [`Last-Translator: Manuela Silva , 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu , 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu , 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu , 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Тёма Лапин, 2022\", \"Language-Team\": \"Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nАлексей Хрусталёв, 2022\nТёма Лапин, 2022\n` }, msgstr: [`Last-Translator: Тёма Лапин, 2022\nLanguage-Team: Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: 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);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Оценка оставшегося времени\"] }, paused: { msgid: \"paused\", msgstr: [\"Приостановлено\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://www.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://www.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додај\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Max Bäckström, 2022\", \"Language-Team\": \"Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMax Bäckström, 2022\n` }, msgstr: [`Last-Translator: Max Bäckström, 2022\nLanguage-Team: Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Add: { msgid: \"Add\", msgstr: [\"Lägg till\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat , 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat , 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat , 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren , 2022\", \"Language-Team\": \"Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nKaya Zeren , 2022\n` }, msgstr: [`Last-Translator: Kaya Zeren , 2022\nLanguage-Team: Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Add: { msgid: \"Add\", msgstr: [\"Ekle\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Vitaliy , 2022\", \"Language-Team\": \"Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nVitaliy , 2022\n` }, msgstr: [`Last-Translator: Vitaliy , 2022\nLanguage-Team: Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Додати\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажте файли\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"blakduk, 2023\", \"Language-Team\": \"Vietnamese (https://www.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nblakduk, 2023\n` }, msgstr: [`Last-Translator: blakduk, 2023\nLanguage-Team: Vietnamese (https://www.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, Add: { msgid: \"Add\", msgstr: [\"Thêm\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"yue wang, 2022\", \"Language-Team\": \"Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJack Frost, 2022\nyue wang, 2022\n` }, msgstr: [`Last-Translator: yue wang, 2022\nLanguage-Team: Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2022\", \"Language-Team\": \"Chinese (Hong Kong) (https://www.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nCafé Tango, 2022\n` }, msgstr: [`Last-Translator: Café Tango, 2022\nLanguage-Team: Chinese (Hong Kong) (https://www.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tragic Life, 2022\", \"Language-Team\": \"Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPin-Hsien Lee, 2022\nTragic Life, 2022\n` }, msgstr: [`Last-Translator: Tragic Life, 2022\nLanguage-Team: Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"新增\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] } } } } }].map((e) => _m.addTranslation(e.locale, e.json));\nconst fs = _m.build(), y3 = fs.ngettext.bind(fs), At = fs.gettext.bind(fs), $1 = Ne.extend({ name: \"UploadPicker\", components: { Cancel: F1, NcActionButton: Ff, NcActions: r1, NcButton: u1, NcIconSvgWrapper: b1, NcProgressBar: k1, Plus: O1, Upload: M1 }, props: { accept: { type: Array, default: null }, disabled: { type: Boolean, default: !1 }, multiple: { type: Boolean, default: !1 }, destination: { type: kl, default: void 0 }, content: { type: Array, default: () => [] } }, data() {\n return { addLabel: At(\"Add\"), cancelLabel: At(\"Cancel uploads\"), uploadLabel: At(\"Upload files\"), eta: null, timeLeft: \"\", newFileMenuEntries: [], uploadManager: Nm() };\n}, computed: { totalQueueSize() {\n return this.uploadManager.info?.size || 0;\n}, uploadedQueueSize() {\n return this.uploadManager.info?.progress || 0;\n}, progress() {\n return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n}, queue() {\n return this.uploadManager.queue;\n}, hasFailure() {\n return this.queue?.filter((e) => e.status === pt.FAILED).length !== 0;\n}, isUploading() {\n return this.queue?.length > 0;\n}, isAssembling() {\n return this.queue?.filter((e) => e.status === pt.ASSEMBLING).length !== 0;\n}, isPaused() {\n return this.uploadManager.info?.status === Il.PAUSED;\n} }, watch: { destination(e) {\n this.setDestination(e);\n}, totalQueueSize(e) {\n this.eta = Xm({ min: 0, max: e }), this.updateStatus();\n}, uploadedQueueSize(e) {\n this.eta?.report?.(e), this.updateStatus();\n}, isPaused(e) {\n e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n} }, beforeMount() {\n this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), lt.debug(\"UploadPicker initialised\");\n}, methods: { onClick() {\n this.$refs.input.click();\n}, async onPick() {\n let e = [...this.$refs.input.files];\n if (V1(e, this.content)) {\n const t = e.filter((n) => this.content.find((s) => s.basename === n.name)).filter(Boolean), a = e.filter((n) => !t.includes(n));\n try {\n const { selected: n, renamed: s } = await q1(this.destination.basename, t, this.content);\n e = [...a, ...n, ...s];\n } catch {\n Ym(At(\"Upload cancelled\"));\n return;\n }\n }\n e.forEach((t) => {\n this.uploadManager.upload(t.name, t).catch(() => {\n });\n }), this.$refs.form.reset();\n}, onCancel() {\n this.uploadManager.queue.forEach((e) => {\n e.cancel();\n }), this.$refs.form.reset();\n}, updateStatus() {\n if (this.isPaused) {\n this.timeLeft = At(\"paused\");\n return;\n }\n const e = Math.round(this.eta.estimate());\n if (e === 1 / 0) {\n this.timeLeft = At(\"estimating time left\");\n return;\n }\n if (e < 10) {\n this.timeLeft = At(\"a few seconds left\");\n return;\n }\n if (e > 60) {\n const t = /* @__PURE__ */ new Date(0);\n t.setSeconds(e);\n const a = t.toISOString().slice(11, 11 + 8);\n this.timeLeft = At(\"{time} left\", { time: a });\n return;\n }\n this.timeLeft = At(\"{seconds} seconds left\", { seconds: e });\n}, setDestination(e) {\n if (!this.destination) {\n lt.debug(\"Invalid destination\");\n return;\n }\n lt.debug(\"Destination set\", { destination: e }), this.uploadManager.destination = e, this.newFileMenuEntries = Wm(e);\n}, onUploadCompletion(e) {\n e.status === pt.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n} } });\nvar I1 = function() {\n var e = this, t = e._self._c;\n return e._self._setupProxy, e.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": e.isUploading, \"upload-picker--paused\": e.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [e.newFileMenuEntries && e.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: e.disabled, \"data-cy-upload-picker-add\": \"\" }, on: { click: e.onClick }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [e._v(\" \" + e._s(e.addLabel) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-title\": e.addLabel }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: e.onClick }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 3606034491) }, [e._v(\" \" + e._s(e.uploadLabel) + \" \")]), e._l(e.newFileMenuEntries, function(a) {\n return t(\"NcActionButton\", { key: a.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: a.iconClass, \"close-after-click\": !0 }, on: { click: function(n) {\n return a.handler(e.destination, e.content);\n } }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"NcIconSvgWrapper\", { attrs: { svg: a.iconSvgInline } })];\n }, proxy: !0 }], null, !0) }, [e._v(\" \" + e._s(a.displayName) + \" \")]);\n })], 2), t(\"div\", { staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { error: e.hasFailure, value: e.progress, size: \"medium\" } }), t(\"p\", [e._v(e._s(e.timeLeft))])], 1), e.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": e.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: e.onCancel }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n }, proxy: !0 }], null, !1, 4076886712) }) : e._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: e.accept?.join?.(\", \"), multiple: e.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: e.onPick } })], 1) : e._e();\n}, G1 = [], H1 = pn($1, I1, G1, !1, null, \"5f1bec03\", null, null);\nconst A3 = H1.exports;\nlet Eo = null;\nfunction Nm() {\n const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n return Eo instanceof Bi || (Eo = new Bi(e)), Eo;\n}\nfunction w3(e, t) {\n const a = Nm();\n return a.upload(e, t), a;\n}\nasync function q1(e, t, a) {\n const { default: n } = await import(\"./ConflictPicker-a1dcd9bc.mjs\");\n return new Promise((s, r) => {\n const o = new n({ propsData: { dirname: e, conflicts: t, content: a } });\n o.$on(\"submit\", (i) => {\n s(i), o.$destroy(), o.$el?.parentNode?.removeChild(o.$el);\n }), o.$on(\"cancel\", (i) => {\n r(i ?? new Error(\"Canceled\")), o.$destroy(), o.$el?.parentNode?.removeChild(o.$el);\n }), o.$mount(), document.body.appendChild(o.$el);\n });\n}\nfunction V1(e, t) {\n const a = t.map((n) => n.basename);\n return e.filter((n) => {\n const s = n instanceof File ? n.name : n.basename;\n return a.indexOf(s) !== -1;\n }).length > 0;\n}\nexport {\n u1 as N,\n Il as S,\n A3 as U,\n Ne as V,\n mn as a,\n Kc as b,\n Ia as c,\n xv as d,\n Yv as e,\n s1 as f,\n Ps as g,\n y3 as h,\n Nm as i,\n V1 as j,\n Ad as k,\n lt as l,\n pt as m,\n pn as n,\n q1 as o,\n Yc as r,\n At as t,\n w3 as u\n};\n","import { getGettextBuilder as c } from \"@nextcloud/l10n/gettext\";\nimport { defineAsyncComponent as T } from \"vue\";\nvar h = Object.defineProperty, d = (t, a, n) => a in t ? h(t, a, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[a] = n, s = (t, a, n) => (d(t, typeof a != \"symbol\" ? a + \"\" : a, n), n), x = ((t) => (t[t.Choose = 1] = \"Choose\", t[t.Move = 2] = \"Move\", t[t.Copy = 3] = \"Copy\", t[t.CopyMove = 4] = \"CopyMove\", t[t.Custom = 5] = \"Custom\", t))(x || {});\nclass L {\n constructor(a, n, r, o, e, i, u, p, g) {\n s(this, \"title\"), s(this, \"multiSelect\"), s(this, \"mimeTypeFiler\"), s(this, \"modal\"), s(this, \"type\"), s(this, \"directoriesAllowed\"), s(this, \"buttons\"), s(this, \"path\"), s(this, \"filter\"), this.title = a, this.multiSelect = n, this.mimeTypeFiler = r, this.modal = o, this.type = e, this.directoriesAllowed = i, this.path = u, this.filter = p, this.buttons = g;\n }\n async pick() {\n const a = (await import(\"../legacy.mjs\")).filepicker;\n return new Promise((n) => {\n var r;\n const o = (r = this.buttons) == null ? void 0 : r.map((e) => ({ defaultButton: e.type === \"primary\", label: e.text, type: e.id }));\n a(this.title, n, this.multiSelect, this.mimeTypeFiler, this.modal, this.type, this.path, { allowDirectoryChooser: this.directoriesAllowed, filter: this.filter, buttons: o });\n });\n }\n}\nclass f {\n constructor(a) {\n s(this, \"title\"), s(this, \"multiSelect\", !1), s(this, \"mimeTypeFiler\", []), s(this, \"modal\", !0), s(this, \"type\", 1), s(this, \"directoriesAllowed\", !1), s(this, \"path\"), s(this, \"filter\"), s(this, \"buttons\", []), this.title = a;\n }\n setMultiSelect(a) {\n return this.multiSelect = a, this;\n }\n addMimeTypeFilter(a) {\n return this.mimeTypeFiler.push(a), this;\n }\n setMimeTypeFilter(a) {\n return this.mimeTypeFiler = a, this;\n }\n addButton(a) {\n return this.buttons.push(a), this;\n }\n setModal(a) {\n return this.modal = a, this;\n }\n setType(a) {\n return this.type = a, this;\n }\n allowDirectories(a = !0) {\n return this.directoriesAllowed = a, this;\n }\n startAt(a) {\n return this.path = a, this;\n }\n setFilter(a) {\n return this.filter = a, this;\n }\n build() {\n return this.buttons && this.type !== 5 && console.error(\"FilePickerBuilder: When adding custom buttons the `type` must be set to `FilePickerType.Custom`.\"), new L(this.title, this.multiSelect, this.mimeTypeFiler, this.modal, this.type, this.directoriesAllowed, this.path, this.filter, this.buttons);\n }\n}\nfunction C(t) {\n return new f(t);\n}\nconst m = c().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: af\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ar\\nPlural-Forms: 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;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"تراجع\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ast\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfacer\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: az\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: be\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bg_BG\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bn_BD\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: br\\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Disober\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bs\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ca\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfés\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2020\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nPavel Borecki , 2020\\n\" }, msgstr: [\"Last-Translator: Pavel Borecki , 2020\\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cs\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:187\" }, msgstr: [\"Zpět\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cs_CZ\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Zpět\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cy_GB\\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: da\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Fortryd\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rückgängig\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de_DE\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rückgängig machen\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: el\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Αναίρεση\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: en_GB\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Undo\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: eo\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Malfari\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_419\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_AR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CL\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CO\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_DO\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_EC\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_GT\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_HN\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_MX\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_NI\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PA\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PE\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PY\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_SV\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_UY\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: et_EE\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: eu\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desegin\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fa\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"بازگردانی\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fi_FI\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Kumoa\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fo\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ldm Public , 2023\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nLdm Public , 2023\\n\" }, msgstr: [\"Last-Translator: Ldm Public , 2023\\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fr\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rétablir\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: gd\\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: gl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfacer\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: he\\nPlural-Forms: 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;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"ביטול\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hi_IN\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hr\\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hsb\\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hu_HU\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Visszavonás\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hy\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ia\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: id\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Tidak jadi\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ig\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: is\\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Afturkalla\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: it\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Annulla\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ja_JP\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"元に戻す\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ka\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ka_GE\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kab\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Sefsex\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kk\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: km\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kn\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ko\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"되돌리기\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: la\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lb\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lo\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lt_LT\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Atšaukti\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lv\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mk\\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Врати\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mn\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Буцаах\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mr\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"पूर्ववत करा\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ms_MY\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: my\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"နဂိုအတိုင်းပြန်ထားရန်\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nb_NO\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Angre\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ne\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Ongedaan maken\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nn_NO\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: oc\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anullar\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pl\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Cofnij\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ps\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_BR\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfazer\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_PT\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anular\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ro\\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anulează\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ru\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Отменить\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sc\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: si\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"පෙරසේ\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sk_SK\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Späť\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sl\\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Razveljavi\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sq\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sr\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Поништи\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sr@latin\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sv\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Ångra\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sw\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ta\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"செயல்தவிர்\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: th_TH\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"เลิกทำ\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: tk\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: tr\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Geri al\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ug\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: uk\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Скасувати дію\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ur_PK\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: uz\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: vi\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Hoàn tác\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_CN\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\" 撤消\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_HK\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"還原\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_TW\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"復原\"] } } } } }, { locale: \"zu_ZA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zu_ZA\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zu_ZA\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }].map((t) => m.addTranslation(t.locale, t.json));\nconst l = m.build();\nl.ngettext.bind(l);\nconst y = l.gettext.bind(l);\nconst P = T(() => import(\"./FilePicker-ad781544.mjs\"));\nexport {\n L as F,\n x as a,\n f as b,\n P as c,\n C as g,\n y as t\n};\n","import d from \"toastify-js\";\nimport { t as l } from \"./index-03982120.mjs\";\nconst p = \"off\", f = \"polite\", m = \"assertive\";\nvar r = ((t) => (t[t.OFF = p] = \"OFF\", t[t.POLITE = f] = \"POLITE\", t[t.ASSERTIVE = m] = \"ASSERTIVE\", t))(r || {});\nconst T = 1e4, v = 7e3, L = -1;\nfunction c(t, o) {\n var s;\n if (o = Object.assign({ timeout: v, isHTML: !1, type: void 0, selector: void 0, onRemove: () => {\n }, onClick: void 0, close: !0 }, o), typeof t == \"string\" && !o.isHTML) {\n const u = document.createElement(\"div\");\n u.innerHTML = t, t = u.innerText;\n }\n let n = (s = o.type) != null ? s : \"\";\n typeof o.onClick == \"function\" && (n += \" toast-with-click \");\n const a = t instanceof Node;\n let e = r.POLITE;\n o.ariaLive ? e = o.ariaLive : (o.type === \"toast-error\" || o.type === \"toast-undo\") && (e = r.ASSERTIVE);\n const i = d({ [a ? \"node\" : \"text\"]: t, duration: o.timeout, callback: o.onRemove, onClick: o.onClick, close: o.close, gravity: \"top\", selector: o.selector, position: \"right\", backgroundColor: \"\", className: \"dialogs \" + n, escapeMarkup: !o.isHTML, ariaLive: e });\n return i.showToast(), i;\n}\nfunction g(t, o) {\n return c(t, { ...o, type: \"toast-error\" });\n}\nfunction h(t, o) {\n return c(t, { ...o, type: \"toast-warning\" });\n}\nfunction k(t, o) {\n return c(t, { ...o, type: \"toast-info\" });\n}\nfunction O(t, o) {\n return c(t, { ...o, type: \"toast-success\" });\n}\nfunction b(t, o, s) {\n if (!(o instanceof Function))\n throw new Error(\"Please provide a valid onUndo method\");\n let n;\n s = Object.assign(s || {}, { timeout: T, close: !1 });\n const a = document.createElement(\"span\"), e = document.createElement(\"button\");\n return a.classList.add(\"toast-undo-container\"), e.classList.add(\"toast-undo-button\"), e.innerText = l(\"Undo\"), a.innerText = t, a.appendChild(e), e.addEventListener(\"click\", function(i) {\n i.stopPropagation(), o(i), (n == null ? void 0 : n.hideToast) instanceof Function && n.hideToast();\n }), n = c(a, { ...s, type: \"toast-undo\" }), n;\n}\nexport {\n T,\n v as a,\n L as b,\n p as c,\n f as d,\n m as e,\n O as f,\n h as g,\n k as h,\n g as i,\n b as j,\n c as s\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"50\":\"247715e61164d71d3665\",\"2719\":\"aca3641238db4ec94a9a\",\"3609\":\"93fa96d23b2f5334810f\",\"4221\":\"8176a71aa66260e1e1b2\",\"6870\":\"3b66be39570778909421\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2181;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2181: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(27866); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","exports","path","split","map","encodeURIComponent","join","base64","ieee754","customInspectSymbol","Symbol","Buffer","SlowBuffer","length","alloc","INSPECT_MAX_BYTES","K_MAX_LENGTH","createBuffer","RangeError","buf","Uint8Array","Object","setPrototypeOf","prototype","arg","encodingOrOffset","TypeError","allocUnsafe","from","value","string","encoding","isEncoding","byteLength","actual","write","slice","fromString","ArrayBuffer","isView","arrayView","isInstance","copy","fromArrayBuffer","buffer","byteOffset","fromArrayLike","fromArrayView","SharedArrayBuffer","valueOf","b","obj","isBuffer","len","checked","undefined","numberIsNaN","type","Array","isArray","data","fromObject","toPrimitive","assertSize","size","array","i","toString","mustMatch","arguments","loweredCase","utf8ToBytes","base64ToBytes","toLowerCase","slowToString","start","end","this","hexSlice","utf8Slice","asciiSlice","latin1Slice","base64Slice","utf16leSlice","swap","n","m","bidirectionalIndexOf","val","dir","arrayIndexOf","indexOf","call","lastIndexOf","arr","indexSize","arrLength","valLength","String","read","readUInt16BE","foundIndex","found","j","hexWrite","offset","Number","remaining","strLen","parsed","parseInt","substr","utf8Write","blitBuffer","asciiWrite","str","byteArray","push","charCodeAt","asciiToBytes","base64Write","ucs2Write","units","c","hi","lo","utf16leToBytes","fromByteArray","Math","min","res","firstByte","codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","codePoints","MAX_ARGUMENTS_LENGTH","fromCharCode","apply","decodeCodePointsArray","kMaxLength","TYPED_ARRAY_SUPPORT","proto","foo","e","typedArraySupport","console","error","defineProperty","enumerable","get","poolSize","fill","allocUnsafeSlow","_isBuffer","compare","a","x","y","concat","list","pos","set","swap16","swap32","swap64","toLocaleString","equals","inspect","max","replace","trim","target","thisStart","thisEnd","thisCopy","targetCopy","includes","isFinite","Error","toJSON","_arr","ret","out","hexSliceLookupTable","bytes","checkOffset","ext","checkInt","wrtBigUInt64LE","checkIntBI","BigInt","wrtBigUInt64BE","checkIEEE754","writeFloat","littleEndian","noAssert","writeDouble","newBuf","subarray","readUintLE","readUIntLE","mul","readUintBE","readUIntBE","readUint8","readUInt8","readUint16LE","readUInt16LE","readUint16BE","readUint32LE","readUInt32LE","readUint32BE","readUInt32BE","readBigUInt64LE","defineBigIntMethod","validateNumber","first","last","boundsError","readBigUInt64BE","readIntLE","pow","readIntBE","readInt8","readInt16LE","readInt16BE","readInt32LE","readInt32BE","readBigInt64LE","readBigInt64BE","readFloatLE","readFloatBE","readDoubleLE","readDoubleBE","writeUintLE","writeUIntLE","writeUintBE","writeUIntBE","writeUint8","writeUInt8","writeUint16LE","writeUInt16LE","writeUint16BE","writeUInt16BE","writeUint32LE","writeUInt32LE","writeUint32BE","writeUInt32BE","writeBigUInt64LE","writeBigUInt64BE","writeIntLE","limit","sub","writeIntBE","writeInt8","writeInt16LE","writeInt16BE","writeInt32LE","writeInt32BE","writeBigInt64LE","writeBigInt64BE","writeFloatLE","writeFloatBE","writeDoubleLE","writeDoubleBE","targetStart","copyWithin","code","errors","E","sym","getMessage","Base","constructor","super","writable","configurable","name","stack","message","addNumericalSeparator","range","ERR_OUT_OF_RANGE","checkBounds","ERR_INVALID_ARG_TYPE","floor","ERR_BUFFER_OUT_OF_BOUNDS","input","msg","received","isInteger","abs","INVALID_BASE64_RE","Infinity","leadSurrogate","toByteArray","base64clean","src","dst","alphabet","table","i16","fn","BufferBigIntNotDefined","t","module","self","d","default","R","o","r","s","l","iterator","u","keys","getOwnPropertySymbols","filter","getOwnPropertyDescriptor","p","forEach","h","getOwnPropertyDescriptors","defineProperties","g","v","test","A","k","components","NcButton","DotsHorizontal","NcPopover","props","open","Boolean","manualOpen","forceMenu","forceName","menuName","primary","validator","defaultIcon","ariaLabel","ariaHidden","placement","boundariesElement","Element","document","querySelector","container","disabled","inline","emits","opened","focusIndex","randomId","Z","computed","triggerBtnType","watch","methods","isValidSingleAction","componentOptions","Ctor","extendOptions","tag","openMenu","$emit","closeMenu","$refs","popover","clearFocusTrap","returnFocus","menuButton","$el","focus","onOpen","$nextTick","focusFirstAction","onMouseFocusAction","activeElement","closest","menu","querySelectorAll","focusAction","onKeydown","keyCode","shiftKey","focusPreviousAction","focusNextAction","focusLastAction","preventDefault","removeCurrentActive","classList","remove","add","preventIfEvent","stopPropagation","onFocus","onBlur","render","$slots","every","propsData","href","startsWith","window","location","origin","util","warn","scopedSlots","icon","class","listeners","click","children","text","f","C","title","staticClass","attrs","ref","on","blur","slot","delay","handleResize","shown","boundary","popoverBaseClass","setReturnFocus","triggers","show","hide","tabindex","keydown","mousemove","id","role","w","P","S","N","O","B","z","styleTagTransform","setAttributes","insert","bind","domAPI","insertStyleElement","locals","F","M","T","_","D","G","alignment","nativeType","wide","download","to","exact","pressed","realType","flexAlignment","isReverseAligned","navigate","isActive","isExactActive","rel","$attrs","$listeners","custom","Y","Date","setTimeout","pause","clearTimeout","clear","getTimeLeft","getStateRunning","hasOwnProperty","asyncIterator","toStringTag","create","wrap","getPrototypeOf","_invoke","resolve","__await","then","done","method","delegate","sent","_sent","dispatchException","abrupt","return","resultName","next","nextLoc","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","completion","reset","isNaN","displayName","isGeneratorFunction","mark","__proto__","awrap","AsyncIterator","async","Promise","reverse","pop","values","prev","charAt","stop","rval","complete","finish","catch","delegateYield","NcActions","ChevronLeft","ChevronRight","Close","Pause","Play","directives","tooltip","mixins","hasPrevious","hasNext","outTransition","enableSlideshow","slideshowDelay","slideshowPaused","enableSwipe","spreadNavigation","canClose","closeOnClickOutside","dark","closeButtonContained","additionalTrapElements","inlineActions","mc","playing","slideshowTimeout","iconSize","focusTrap","randId","internalShow","showModal","modalTransitionName","playPauseName","cssVariables","closeButtonAriaLabel","prevButtonAriaLabel","nextButtonAriaLabel","mask","updateContainerElements","beforeMount","addEventListener","handleKeydown","beforeDestroy","removeEventListener","mounted","useFocusTrap","useSwipe","onSwipeEnd","handleSwipe","body","insertBefore","lastChild","appendChild","destroyed","previous","resetSlideshow","close","handleClickModalWrapper","key","ArrowLeft","ArrowRight","contains","togglePlayPause","handleSlideshow","clearSlideshowTimeout","allowOutsideClick","fallbackFocus","trapStack","L","escapeDeactivates","createFocusTrap","activate","deactivate","U","q","I","$","W","H","V","_self","_c","appear","rawName","expression","style","_v","_s","_e","modifiers","auto","height","width","stroke","cx","cy","_t","_u","proxy","mousedown","currentTarget","invisible","K","setAttribute","Dropdown","inheritAttrs","HTMLElement","SVGElement","popperContent","$focusTrap","afterShow","afterHide","_g","_b","distance","options","themes","html","VTooltip","getGettextBuilder","detectLocale","locale","translations","Actions","Activities","Back","Choose","Custom","Favorite","Flags","Global","Next","Objects","Previous","Search","Settings","Submit","Symbols","pluralId","msgid","msgid_plural","msgstr","addTranslation","build","ngettext","gettext","isMobile","created","handleWindowResize","documentElement","clientWidth","$on","onIsMobileChanged","$off","random","assign","_nc_focus_trap","version","sources","names","mappings","sourcesContent","sourceRoot","btoa","unescape","JSON","stringify","identifier","base","css","media","sourceMap","supports","layer","references","updater","byIndex","splice","update","HTMLIFrameElement","contentDocument","head","createElement","attributes","nc","parentNode","removeChild","styleSheet","cssText","firstChild","createTextNode","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","$options","shadowRoot","_injectStyles","beforeCreate","__esModule","NcModal","required","showNavigation","selectedSection","linkClicked","addedScrollListener","scroller","hasNavigation","settingsNavigationAriaLabel","updated","settingsScroller","handleScroll","getSettingsNavigation","handleSettingsNavigationClick","getElementById","scrollIntoView","behavior","handleCloseModal","scrollTop","unfocusNavigationItem","className","handleLinkKeydown","event","htmlId","disableDrop","hovering","crumbId","linkAttributes","onOpenChange","dropped","$parent","dragEnter","dragLeave","relatedTarget","crumb","draggable","dragstart","drop","dragover","dragenter","dragleave","_d","isFocusable","focusable","onClick","isIconUrl","backgroundImage","domProps","textContent","isLongText","URL","nativeOn","before","$destroy","beforeUpdate","getText","closeAfterClick","NcActionButton","NcActionRouter","NcActionLink","NcBreadcrumb","IconFolder","rootIcon","hiddenIndices","menuBreadcrumbProps","breadcrumbsRefs","subscribe","delayedResize","hideCrumbs","unsubscribe","closeActions","actionsBreadcrumb","offsetWidth","getTotalWidth","breadcrumb__actions","getWidth","elm","arraysEqual","sort","reduce","minWidth","dragStart","dragOver","isBreadcrumb","Fragment","round","actions","svg","cleanSvg","sanitizeSVG","innerHTML","AlertCircle","Check","label","labelOutside","placeholder","showTrailingButton","trailingButtonLabel","success","helperText","inputClass","computedId","inputName","hasLeadingIcon","hasTrailingIcon","hasPlaceholder","computedPlaceholder","isValidLabel","ariaDescribedby","select","handleInput","handleTrailingButtonClick","for","staticStyle","color","getCurrentDirectory","_OCA","currentDirInfo","OCA","Files","App","currentFileList","dirInfo","_regeneratorRuntime","Op","hasOwn","desc","$Symbol","iteratorSymbol","asyncIteratorSymbol","toStringTagSymbol","define","err","innerFn","outerFn","tryLocsList","protoGenerator","Generator","generator","context","Context","makeInvokeMethod","tryCatch","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","NativeIteratorPrototype","Gp","defineIteratorMethods","PromiseImpl","invoke","reject","record","result","_typeof","unwrapped","previousPromise","callInvokeWithMethodAndArg","state","delegateResult","maybeInvokeDelegate","methodName","info","pushTryEntry","locs","entry","resetTryEntry","iterable","iteratorMethod","doneResult","genFun","ctor","iter","object","skipTempReset","rootRecord","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","thrown","asyncGeneratorStep","gen","_next","_throw","_asyncToGenerator","args","getTemplates","_ref","_callee","response","_context","axios","generateOcsUrl","ocs","createFromTemplate","_ref2","_callee2","filePath","templatePath","templateType","_context2","post","_x","_x2","_x3","previewWidth","basename","fileid","filename","previewUrl","hasPreview","mime","ratio","failedPreview","nameWithoutExt","realPreviewUrl","mimeIcon","getCurrentUser","generateUrl","pathSections","relativePath","section","OC","MimeType","getIconUrl","onCheck","onFailure","_vm","NcEmptyContent","TemplatePreview","logger","loading","provider","emptyTemplate","_this$provider","_this$provider2","mimetypes","selectedTemplate","_this","templates","find","template","margin","border","_this2","fetchedProvider","app","onSubmit","_this3","currentDirectory","fileList","_this3$provider","_this3$provider2","_this3$selectedTempla","_this3$selectedTempla2","fileInfo","model","fileAction","debug","extension","normalize","addAndFetchFileInfo","status","FileInfoModel","filesClient","fileActions","getDefaultFileAction","PERMISSION_ALL","action","$file","findFileEl","fileInfoModel","t0","showError","$event","_l","getLoggerBuilder","setApp","detectUser","Vue","mixin","TemplatePickerRoot","loadState","templatesPath","TemplatePicker","extend","TemplatePickerView","$mount","initTemplatesPlugin","attach","addMenuEntry","templateName","iconClass","fileType","actionLabel","actionHandler","initTemplatesFolder","removeMenuEntry","Plugins","register","index","newTemplatePlugin","FilesPlugin","copySystemTemplates","changeDirectory","template_path","query","setFilter","FileAction","nodes","view","iconSvgInline","enabled","node","permissions","permission","Permission","DELETE","exec","delete","source","emit","execBatch","all","order","registerFileAction","triggerDownload","url","hiddenElement","downloadNodes","secret","substring","files","some","FileType","Folder","_node$root","root","READ","openLocalClient","link","_getCurrentUser","uid","host","encodePath","token","UPDATE","navigator","userAgent","shouldFavorite","favorite","favoriteNode","willFavorite","_action","tags","TAG_FAVORITE","dirname","StarSvg","_node$root$startsWith","NONE","_callee4","_context4","_callee3","_context3","_x4","FolderSvg","isDavRessource","OCP","Router","goToRoute","DefaultType","HIDDEN","_window","_nodes$0$root","Sidebar","FolderMoveSvg","File","createNewFolder","headers","Overwrite","getUniqueName","newName","extname","if","CREATE","handler","content","_getCurrentUser2","contentNames","_yield$createNewFolde","folder","mtime","owner","ALL","_children","showSuccess","addNewFileMenuEntry","getTarget","isProxyAvailable","Proxy","HOOK_SETUP","supported","perf","ApiProxy","plugin","hook","targetQueue","onQueue","defaultSettings","settings","item","defaultValue","localSettingsSaveId","currentSettings","raw","localStorage","getItem","parse","fallbacks","getSettings","setSettings","setItem","now","performance","_a","perf_hooks","pluginId","proxiedOn","_target","prop","proxiedTarget","setRealTarget","setupDevtoolsPlugin","pluginDescriptor","setupFn","descriptor","__VUE_DEVTOOLS_GLOBAL_HOOK__","enableProxy","enableEarlyProxy","__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__","__VUE_DEVTOOLS_PLUGINS__","activePinia","setActivePinia","pinia","piniaSymbol","isPlainObject","MutationType","IS_CLIENT","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","global","globalThis","opts","xhr","XMLHttpRequest","responseType","onload","saveAs","onerror","send","corsEnabled","dispatchEvent","MouseEvent","evt","createEvent","initMouseEvent","_navigator","isMacOSWebView","HTMLAnchorElement","blob","createObjectURL","revokeObjectURL","msSaveOrOpenBlob","autoBom","Blob","bom","popup","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","readAsDataURL","toastMessage","piniaMessage","__VUE_DEVTOOLS_TOAST__","log","isPinia","checkClipboardAccess","checkNotFocusedError","fileInput","loadStoresState","storeState","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","$id","formatEventData","events","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","logo","packageName","homepage","api","addTimelineLayer","addInspector","treeFilterPlaceholder","clipboard","writeText","actionGlobalCopyState","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","onchange","file","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","$reset","inspectComponent","payload","ctx","componentInstance","_pStores","piniaStores","instanceData","editable","_isOptionsAPI","toRaw","$state","_getters","getters","getInspectorTree","inspectorId","stores","rootNodes","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","customProperties","formatStoreForInspectorState","editInspectorState","unshift","has","editComponentState","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Reflect","retValue","devtoolsPlugin","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","logStoreChanges","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","unref","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","markRaw","$dispose","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","getCurrentScope","onScopeDispose","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","subPatch","targetValue","isRef","isReactive","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","nextTick","newState","wrapAction","afterCallbackList","onErrorCallbackList","partialStore","_p","stopWatcher","run","_r","reactive","runWithContext","setupStore","effectScope","effect","actionValue","nonEnumerable","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","getCurrentInstance","inject","localState","toRefs","computedGetters","createOptionsStore","compareNumbers","numberA","numberB","compareUnicode","stringA","stringB","localeCompare","RE_NUMBERS","RE_LEADING_OR_TRAILING_WHITESPACES","RE_WHITESPACES","RE_INT_OR_FLOAT","RE_DATE","RE_LEADING_ZERO","RE_UNICODE_CHARACTERS","stringCompare","normalizeAlphaChunk","chunk","parseNumber","parsedNumber","normalizeNumericChunk","chunks","createChunkMap","normalizedString","createChunkMaps","chunksMaps","createChunks","isFunction","isNull","isObject","isSymbol","isUndefined","getMappedValueRecord","stringValue","getTime","parsedDate","_unused","parseDate","numberify","createIdentifierFn","orderBy","collection","identifiers","orders","validatedIdentifiers","identifierList","getIdentifiers","validatedOrders","orderList","getOrders","identifierFns","mappedCollection","element","recordA","recordB","indexA","valuesA","indexB","valuesB","ordersLength","_result","valueA","valueB","chunksA","chunksB","lengthA","lengthB","chunkA","chunkB","compareChunks","compareOtherTypes","compareMultiple","getElementByIndex","baseOrderBy","fillColor","uploader","useFilesStore","fileStore","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","_objectSpread","deleteNodes","setRoot","onDeletedNode","onCreatedNode","_initialized","usePathsStore","pathsStore","paths","getPath","addPath","currentView","getNavigation","active","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","userConfig","show_hidden","crop_image_previews","sort_favorites_first","useUserConfigStore","onUpdate","put","userConfigStore","viewConfig","useViewConfigStore","getConfig","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","Home","NcBreadcrumbs","filesStore","$navigation","dirs","sections","$route","getDirDisplayName","getNodeFromId","getFileIdFromPath","_this$currentView","_node$attributes","fileId","_to$query","_section$to","_setupProxy","hashCode","isCachedPreview","_window2","caches","cache","match","useActionsMenuStore","Function","updateRootElement","replaceChildren","sanitize","CustomSvgIconRender","el","_defineProperty","hint","prim","_toPrimitive","_toPropertyKey","_toConsumableArray","_arrayLikeToArray","_arrayWithoutHoles","_iterableToArray","minLen","_unsupportedIterableToArray","_nonIterableSpread","arr2","getFileActions","directive","vOnClickOutside","AccountGroupIcon","AccountPlusIcon","CustomElementRender","FavoriteIcon","FileIcon","FolderIcon","KeyIcon","LinkIcon","NcCheckboxRadioSwitch","NcLoadingIcon","NcTextField","NetworkIcon","TagIcon","visible","isMtimeAvailable","isSizeAvailable","Node","filesListWidth","actionsMenuStore","keyboardStore","altKey","ctrlKey","metaKey","onEvent","useKeyboardStore","renamingStore","renamingNode","useRenamingStore","selectionStore","backgroundFailed","columns","currentDir","_this$$route","currentFileId","params","_this$source","_this$source$toString","_this$source$attribut","formatFileSize","sizeOpacity","moment","fromNow","mtimeTitle","format","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","flat","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","linkTo","_this$source6","failed","is","enabledDefaultActions","selectedFiles","isSelected","cropPreviews","searchParams","enabledActions","enabledInlineActions","_action$inline","enabledRenderActions","renderInline","enabledMenuActions","findIndex","openedMenu","uniqueId","isFavorite","renameLabel","_matchLabel","isRenaming","isRenamingSmallScreen","_this$currentFileId","_this$currentFileId$t","resetState","debounceIfNotCached","renaming","startRenaming","debounceGetPreview","debounce","fetchAndApplyPreview","_this4","previewPromise","clearImg","CancelablePromise","onCancel","img","Image","fetchpriority","cancel","onActionClick","_this5","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onSelectionChange","_this$keyboardStore","_this6","newSelectedIndex","isAlreadySelected","filesToSelect","_file$fileid","_file$fileid$toString","onRightClick","isMoreThanOneSelected","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","config","blacklist_files_regex","checkIfNodeExists","_this7","_this8","_this8$$refs$renameIn","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this9","_this9$newName$trim","_this9$newName","oldName","oldSource","_error$response","_error$response2","rename","Destination","encodeURI","getBoundariesElement","translate","_k","_loading","opacity","column","_vm$currentView","header","currentFolder","mount","summary","_this$currentView2","totalSize","_this$currentFolder","total","classForColumn","_column$summary","fileListEl","$resizeObserver","ResizeObserver","entries","contentRect","observe","disconnect","filesListWidthMixin","selectedNodes","areSomeNodesLoading","selectionIds","results","failedIds","keysOrMapper","reduced","$pinia","storeKey","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","filesSortingMixin","mode","sortAriaLabel","direction","FilesListTableHeaderButton","FilesListTableHeaderActions","selectAllBind","isNoneSelected","isSomeSelected","isAllSelected","indeterminate","onToggleAll","dataComponent","dataKey","dataSources","itemHeight","extraProps","scrollToIndex","bufferItems","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","startIndex","shownItems","ceil","renderedItems","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","_this$$refs","_this$$refs2","_this$$refs3","tfoot","thead","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","FilesListHeader","FilesListTableHeader","FilesListTableFooter","VirtualList","View","FileEntry","getFileListHeaders","summaryFile","count","summaryFolder","sortedHeaders","getFileId","caption","ownKeys","enumerableOnly","symbols","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","FilesListVirtual","NcAppContent","NcIconSvgWrapper","ShareVariantIcon","UploadPicker","uploaderStore","getUploader","queue","useUploaderStore","promise","Type","views","dirContentsSorted","customColumn","dirContents","_v$attributes","_v$attributes2","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","canUpload","canShare","SHARE","newView","oldView","fetchContent","newDir","oldDir","filesListVirtual","_this2$promise","_yield$_this2$promise","contents","getContents","onUpload","upload","_this$currentFolder4","openSharingSidebar","setActiveTab","_vm$currentView2","emptyTitle","emptyCaption","throttle","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","cancelled","lastExec","clearExistingTimeout","wrapper","_len","arguments_","_key","elapsed","_ref2$upcomingOnly","upcomingOnly","_ref$atBegin","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","used","quotaByte","quota","storageStatsTooltip","relative","setInterval","throttleUpdateStorageStats","debounceUpdateStorageStats","atBegin","updateStorageStats","_arguments","_response$data","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcInputField","Setting","_window$OCA","webdavUrl","generateRemoteUrl","webdavDocs","appPasswordUrl","webdavUrlCopied","setting","onClose","setConfig","copyCloudId","Cog","NavigationQuota","NcAppNavigation","SettingsModal","Navigation","settingsOpened","currentViewId","parentViews","childViews","setActive","showView","_window$close","heading","headingEl","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","_view$params","openSettings","onSettingsClose","sticky","child","rootPath","defaultRootUrl","getClient","rootUrl","client","createClient","requesttoken","getRequestToken","getPatcher","patch","_options$headers","request","defaultDavProperties","defaultDavNamespaces","oc","getDavProperties","_nc_dav_properties","getDavNameSpaces","_nc_dav_namespaces","ns","getDefaultPropfind","resultToNode","davParsePermissions","nodeData","lastmod","reportPayload","_rootResponse","propfindPayload","rootResponse","contentsResponse","_args","stat","details","getDirectoryContents","includeSelf","generateFolderView","generateIdFromPath","lastTwoWeeksTimestamp","searchPayload","singleMatcher","RegExp","multiMatcher","decodeComponents","decodeURIComponent","left","right","decode","tokens","splitOnFirst","separator","separatorIndex","includeKeys","predicate","isNullOrUndefined","strictUriEncode","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","customDecodeURIComponent","keysSorter","removeHash","hashStart","parseValue","parseNumbers","parseBooleans","extract","queryStart","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","shouldFilter","skipNull","skipEmptyString","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","encodeReserveRE","encodeReserveReplacer","commaRE","castQueryParamValue","parseQuery","param","parts","shift","stringifyQuery","val2","trailingSlashRE","createRoute","redirectedFrom","router","clone","route","meta","fullPath","getFullPath","matched","formatMatch","freeze","START","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","routerView","$createElement","_routerViewCache","depth","inactive","_routerRoot","vnodeData","keepAlive","_directInactive","_inactive","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","prepatch","vnode","init","propsToPass","resolveProps","resolvePath","append","firstChar","segments","segment","cleanPath","isarray","pathToRegexp_1","pathToRegexp","groups","prefix","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","escaped","capture","group","modifier","escapeGroup","escapeString","encodeURIComponentPretty","matches","pretty","re","sensitive","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","guardEvent","scopedSlot","$scopedSlots","$hasNormal","findAnchor","isStatic","aData","handler$1","event$1","aAttrs","defaultPrevented","button","getAttribute","inBrowser","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","genStateKey","toFixed","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","absolutePath","stateCopy","replaceState","handlePopState","isPop","scrollBehavior","position","getScrollPosition","shouldScroll","scrollToPosition","saveScrollPosition","pageXOffset","pageYOffset","isValidPosition","isNumber","normalizePosition","hashStartsWithNumberRE","selector","docRect","getBoundingClientRect","elRect","top","getElementPosition","scrollTo","ua","supportsPushState","pushState","NavigationFailureType","redirected","aborted","duplicated","createNavigationCancelledError","createRouterError","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","cb","step","flatMapComponents","flatten","hasSymbol","once","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","transitionTo","onComplete","onAbort","confirmTransition","updateRoute","ensureURL","afterHooks","abort","lastRouteIndex","lastCurrentIndex","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","resolved","reason","comp","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","expectScroll","supportsScroll","handleRoutingEvent","go","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","prototypeAccessors","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","back","forward","getMatchedComponents","createHref","normalizedTo","VueRouter$1","install","installed","isDef","registerInstance","callVal","_parentVnode","_router","defineReactive","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","START_LOCATION","use","originalPush","RouterService","_classCallCheck","_name","_el","_open","_close","_settings","__webpack_nonce__","_window$OCA$Files","_window$OCP$Files","_provided","provideCache","toBeInstalled","provide","globalProperties","createPinia","SettingsService","SettingsModel","NavigationView","FilesListView","favoriteFolders","favoriteFoldersViews","addPathToFavorites","_node$root2","removePathFromFavorites","updateAndSortViews","getLanguage","ignorePunctuation","registerFavoritesView","controller","AbortController","signal","registration","noRewrite","serviceWorker","_exports","_setPrototypeOf","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","_createForOfIteratorHelper","allowArrayLike","it","normalCompletion","didErr","_e2","Constructor","_defineProperties","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","cancelable","isCancelablePromise","_internals","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","finally","callbacks","_step","_iterator","_CancelablePromiseInt","subClass","superClass","_inherits","_super","makeAllCancelable","allSettled","any","race","_default","onResult","_step2","_iterator2","resolvable","___CSS_LOADER_EXPORT___","Events","EE","addListener","emitter","listener","_events","_eventsCount","clearEvent","EventEmitter","eventNames","handlers","ee","listenerCount","a1","a2","a3","a4","a5","removeListener","removeAllListeners","off","prefixed","webpackContext","req","webpackContextResolve","__webpack_require__","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","estimatedTime","setUid","mt","wt","_entries","registerEntry","validateEntry","unregisterEntry","getEntryIndex","getEntries","_nc_newfilemenu","We","parseFloat","DEFAULT","Ye","validateAction","Ze","_nc_fileactions","Je","ei","_nc_filelistheader","ni","vt","ri","yt","crtime","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","updateMtime","deleteProperty","move","xt","bt","Q","tt","si","oi","Et","getcontentlength","Nt","_views","_currentView","ai","_nc_navigation","_column","At","isExist","isEmptyObject","merge","getValue","isName","getAllMatches","nameRegexp","Tt","allowBooleanAttributes","unpairedTags","validate","Vt","Pt","line","tagClosed","tagName","tagStartPos","col","St","It","Ot","Ct","Ft","Dt","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Rt","Mt","Bt","qt","Ut","zt","Gt","Xt","Kt","Wt","Yt","decimalPoint","tagname","addChild","te","entityName","regx","entities","skipLike","Jt","ne","lastEntities","replaceEntitiesValue","se","oe","ae","resolveNameSpace","le","saveTextToParentTag","tagsNodeStack","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","isItStopNode","readStopNodeData","tagContent","de","ue","ampEntity","ce","he","pe","fe","nt","we","ye","ve","prettify","xe","be","currentNode","apos","gt","lt","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","Ee","Ne","rt","Oe","Pe","st","ot","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","De","Se","oneListGroup","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","arrayNodeName","buildAttrPairStr","closeTag","X","XMLParser","externalEntities","addEntity","XMLValidator","XMLBuilder","li","_view","Be","emptyView","Me","di","ci","CancelError","promiseState","canceled","rejected","PCancelable","userFunction","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","_wrapNativeSuper","Class","_cache","Wrapper","_construct","Parent","TimeoutError","_Error","AbortError","_Error2","_super2","getDOMException","errorMessage","DOMException","getAbortedReason","pTimeout","milliseconds","timer","cancelablePromise","sign","POSITIVE_INFINITY","customTimers","timeoutError","t1","t2","_PriorityQueue_queue","__classPrivateFieldGet","kind","PriorityQueue","priority","comparator","trunc","lowerBound","_PQueue_instances","_PQueue_carryoverConcurrencyCount","_PQueue_isIntervalIgnored","_PQueue_intervalCount","_PQueue_intervalCap","_PQueue_interval","_PQueue_intervalEnd","_PQueue_intervalId","_PQueue_timeoutId","_PQueue_queue","_PQueue_queueClass","_PQueue_pending","_PQueue_concurrency","_PQueue_isPaused","_PQueue_throwOnTimeout","_PQueue_doesIntervalAllowAnother_get","_PQueue_doesConcurrentAllowAnother_get","_PQueue_next","_PQueue_onResumeInterval","_PQueue_isIntervalPaused_get","_PQueue_tryToStartAnother","_PQueue_initializeIntervalIfNeeded","_PQueue_onInterval","_PQueue_processQueue","_PQueue_throwOnAbort","_PQueue_onEvent","__classPrivateFieldSet","PQueue","_EventEmitter","_onIdle","_onSizeLessThan","_onEmpty","_addAll","_add","carryoverConcurrencyCount","intervalCap","interval","concurrency","autoStart","queueClass","timeout","throwOnTimeout","newConcurrency","function_","_args2","enqueue","functions","_callee5","_context5","_callee6","_context6","_x5","_callee7","_context7","WeakSet","clearInterval","canInitializeInterval","job","dequeue","_PQueue_throwOnAbort2","_callee8","_context8","_resolve","_x6","_PQueue_onEvent2","_callee9","_context9","_x7","_x8","El","e0","dr","vs","Cs","Ta","Ka","Pl","n0","Sl","ys","Ln","o0","r0","i0","u0","m0","nn","allOwnKeys","getOwnPropertyNames","Tl","Fl","Dl","y0","b0","fi","k0","Bl","Ks","vi","DIGIT","ALPHA","ALPHA_DIGIT","_0","isArrayBuffer","isFormData","FormData","isArrayBufferView","isString","isBoolean","isDate","isFile","isBlob","isRegExp","isStream","pipe","isURLSearchParams","isTypedArray","isFileList","Po","caseless","stripBOM","inherits","toFlatObject","kindOf","kindOfTest","toArray","forEachEntry","matchAll","isHTMLForm","hasOwnProp","reduceDescriptors","freezeMethods","toObjectSet","toCamelCase","toFiniteNumber","findKey","isContextDefined","ALPHABET","generateString","isSpecCompliantForm","toJSONObject","isAsyncFn","isThenable","captureStackTrace","number","fileName","lineNumber","columnNumber","Ci","yi","So","Nl","Ai","cause","L0","As","metaTokens","dots","indexes","visitor","toISOString","j0","defaultVisitor","convertValue","isVisitable","wi","pr","_pairs","bi","z0","Ol","serialize","xi","fulfilled","synchronous","runWhen","eject","jl","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","M0","URLSearchParams","R0","$0","I0","product","isBrowser","isStandardBrowserEnv","isStandardBrowserWebWorkerEnv","WorkerGlobalScope","importScripts","protocols","Ll","V0","q0","W0","Zn","transitional","adapter","transformRequest","getContentType","setContentType","isNode","H0","formSerializer","env","Z0","transformResponse","ERR_BAD_RESPONSE","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","common","Accept","gr","K0","ki","La","zn","Js","Un","X0","J0","Y0","Q0","accessor","accessors","ed","Ys","zl","__CANCEL__","sn","ERR_CANCELED","ad","toGMTString","cookie","Ul","nd","sd","od","hostname","port","Ei","loaded","lengthComputable","estimated","ld","cancelToken","auth","username","password","baseURL","getAllResponseHeaders","ERR_BAD_REQUEST","td","responseText","statusText","paramsSerializer","onreadystatechange","readyState","responseURL","onabort","ECONNABORTED","ERR_NETWORK","ontimeout","timeoutErrorMessage","ETIMEDOUT","withCredentials","setRequestHeader","onDownloadProgress","onUploadProgress","rd","Mn","http","Xs","throwIfRequested","Pi","cd","Si","xa","timeoutMessage","decompress","beforeRedirect","transport","httpAgent","httpsAgent","socketPath","responseEncoding","hr","Ti","ERR_DEPRECATED","To","assertOptions","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","validators","Rn","defaults","interceptors","function","getUri","$n","Fo","Continue","SwitchingProtocols","Processing","EarlyHints","Ok","Created","Accepted","NonAuthoritativeInformation","NoContent","ResetContent","PartialContent","MultiStatus","AlreadyReported","ImUsed","MultipleChoices","MovedPermanently","Found","SeeOther","NotModified","UseProxy","Unused","TemporaryRedirect","PermanentRedirect","BadRequest","Unauthorized","PaymentRequired","Forbidden","NotFound","MethodNotAllowed","NotAcceptable","ProxyAuthenticationRequired","RequestTimeout","Conflict","Gone","LengthRequired","PreconditionFailed","PayloadTooLarge","UriTooLong","UnsupportedMediaType","RangeNotSatisfiable","ExpectationFailed","ImATeapot","MisdirectedRequest","UnprocessableEntity","Locked","FailedDependency","TooEarly","UpgradeRequired","PreconditionRequired","TooManyRequests","RequestHeaderFieldsTooLarge","UnavailableForLegalReasons","InternalServerError","NotImplemented","BadGateway","ServiceUnavailable","GatewayTimeout","HttpVersionNotSupported","VariantAlsoNegotiates","InsufficientStorage","LoopDetected","NotExtended","NetworkAuthenticationRequired","fd","Ie","$l","Axios","CanceledError","CancelToken","Rl","_listeners","isCancel","VERSION","toFormData","AxiosError","Cancel","spread","isAxiosError","mergeConfig","AxiosHeaders","formToJSON","HttpStatusCode","vd","o3","r3","Qs","i3","u3","l3","c3","m3","d3","p3","g3","h3","f3","v3","C3","Cd","An","Fi","Di","readAsArrayBuffer","Ga","appConfig","max_chunk_size","pt","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","wd","Il","IDLE","PAUSED","Bi","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","destination","isPublic","maxChunksSize","updateStats","uploaded","addNotifier","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","startTime","yd","onIdle","Ke","fr","Qe","Gl","Do","kd","Ja","Ed","Pd","Xe","ra","Sd","ea","Td","Fd","rn","Hl","_length","Bo","ql","wn","Vl","ta","Wl","Kn","_o","_i","ws","Zl","silent","productionTip","devtools","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","Kl","Ue","Nd","jd","Fa","Da","Jl","Ld","Ni","No","Yl","Oi","bn","process","VUE_ENV","Jn","wa","Ya","un","Lt","_scope","fnContext","fnOptions","fnScopeId","isRootInsert","isComment","isCloned","isOnce","asyncFactory","asyncMeta","isAsyncPlaceholder","ka","Ca","Oo","Ud","In","Md","subs","_pending","ft","addSub","removeSub","depend","addDep","notify","Gn","Ba","Xl","Yn","__ob__","observeArray","dep","ji","Ql","vr","$d","Li","shallow","mock","vmCount","kt","isExtensible","__v_skip","ec","bs","ia","_isVue","Cr","yr","tc","__v_raw","Xn","__v_isShallow","__v_isReadonly","ln","__v_isRef","Qn","sc","Xd","Qd","rc","ep","xs","zi","Ui","np","ic","ks","Mi","immediate","onTrack","onTrigger","Ea","_isDestroyed","onStop","cn","lazy","noRecurse","Io","_isMounted","_preWatchers","Ar","effects","cleanups","scopes","uc","Ri","passive","jo","fns","lc","merged","$i","wr","cc","za","bd","_isVList","hp","fp","vp","Ii","Cp","yp","Ap","_staticTrees","_renderProxy","wp","Gi","bp","dc","$stable","$key","xp","kp","pc","_n","_q","_m","_f","br","Ep","Xa","Ha","Pp","Sp","gc","_attrsProxy","es","_listenersProxy","slots","_slotsProxy","hc","Dp","expose","Fp","xr","_setupContext","Lo","eo","fc","Mp","vc","Qa","gp","pre","Yi","Cc","$p","Rp","aa","errorCaptured","Hi","_handled","qi","$a","zo","Uo","Mo","xn","MutationObserver","kn","Hp","Vi","characterData","setImmediate","Es","ut","Pc","Zp","Kp","Jp","Yp","Xp","Qp","eg","tg","ag","ng","sg","og","rg","yc","Wi","Hn","isFrozen","en","lg","up","_watcher","user","sync","dirty","deps","newDeps","depIds","newDepIds","getter","Od","cleanupDeps","evaluate","mg","dg","pg","Ac","wc","bc","kr","$children","ct","xc","_hasHookEvent","Er","ts","Ro","Pr","ya","kc","$o","timeStamp","Ag","wg","kg","bg","Ec","Sr","_original","injections","Zi","Ki","as","__name","_componentTag","Tr","_isComponent","inlineTemplate","Tg","_renderChildren","_vnode","_parentListeners","_props","_propKeys","Fr","$forceUpdate","Cg","xg","destroy","Ji","_base","errorComp","owners","loadingComp","Up","zp","Br","Bg","pp","Sg","abstract","_merged","Dg","Fg","tn","Xi","Ng","Og","jg","na","Lg","zg","Ug","extends","eu","Go","Mg","Rg","Qi","Dr","qg","Sc","tu","au","_computedWatchers","Ho","$watch","Jg","superOptions","sealedOptions","Qg","_init","nu","En","xd","su","qo","_uid","Xg","hg","cg","jp","Pg","Ig","_setupState","__sfc","Tp","Wg","Hg","Gg","Vg","Zg","$g","Eg","Yg","$set","$delete","Kg","gg","_update","__patch__","__vue__","fg","_render","Lp","ou","rh","include","cacheVNode","vnodeToCache","keyToCache","ih","KeepAlive","mergeOptions","observable","_installedPlugins","eh","th","_Ctor","nh","sh","ah","oh","uh","lh","ch","Tc","dh","ph","ss","gh","Vo","Fc","ru","Nr","Or","vh","Ch","yh","math","Ah","jr","Dc","Pn","Wo","Lh","multiple","createElementNS","createComment","nextSibling","setTextContent","setStyleScope","zh","Aa","refInFor","iu","jt","Ua","Uh","Mh","$h","ao","uu","oldArg","Ma","componentUpdated","inserted","Ih","Gh","Hh","qh","lu","_v_attr_proxy","cu","removeAttributeNS","removeAttribute","mu","setAttributeNS","__ieph","stopImmediatePropagation","Vh","du","fh","hh","_transitionClasses","_prevClass","an","Wh","no","so","Kh","Bc","Jh","Yh","_wrapper","ownerDocument","oo","change","Zh","Sn","Xh","pu","childNodes","_value","Qh","composing","ef","_vModifiers","tf","af","nf","ro","Tn","of","gu","hu","setProperty","rf","fu","vu","normalizedStyle","sf","uf","Nc","Oc","jc","Lc","Cu","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","zc","va","io","qn","os","Zo","Uc","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","yu","requestAnimationFrame","Mc","Qt","Rc","$c","propCount","lf","getComputedStyle","Au","hasTransform","wu","Ko","_leaveCb","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","enter","afterEnter","enterCancelled","beforeAppear","afterAppear","appearCancelled","duration","Lr","Gc","Ic","beforeLeave","leave","afterLeave","leaveCancelled","delayLeave","bu","cf","pf","modules","nodeOps","pendingInsert","ge","postpatch","hasChildNodes","hasAttribute","Rh","vmodel","zr","Hc","_vOptions","xu","rs","gf","Pu","Eu","ku","selectedIndex","initEvent","Jo","hf","__vOriginalDisplay","unbind","ff","qc","Yo","Vc","Su","yf","Af","wf","vf","_leaving","Cf","Wc","moveClass","bf","kept","prevChildren","removed","hasMove","xf","kf","Ef","_reflow","offsetHeight","moved","transform","WebkitTransform","transitionDuration","_moveCb","propertyName","_hasMove","cloneNode","newPos","Pf","Transition","TransitionGroup","HTMLUnknownElement","vg","xh","Sf","EffectScope","customRef","defineAsyncComponent","loader","loadingComponent","errorComponent","suspensible","defineComponent","del","isProxy","isReadonly","isShallow","mergeDefaults","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onServerPrefetch","onUnmounted","onUpdated","proxyRefs","readonly","shallowReactive","shallowReadonly","shallowRef","ac","toRef","triggerRef","useAttrs","useCssModule","useCssVars","useListeners","useSlots","watchEffect","watchPostEffect","watchSyncEffect","Ia","mn","Ps","Zc","Kc","Ff","Tu","Fu","Du","co","Bu","Jc","uo","Df","IE_PROTO","Te","__data__","ie","Ae","Le","Ht","at","Cache","Ce","me","Nu","Ou","Nf","seal","MUSTACHE_EXPR","ERB_EXPR","TMPLIT_EXPR","DATA_ATTR","ARIA_ATTR","IS_ALLOWED_URI","IS_SCRIPT_OR_DATA","ATTR_WHITESPACE","DOCTYPE_NAME","isSupported","currentScript","DocumentFragment","HTMLTemplateElement","NodeFilter","NamedNodeMap","MozNamedAttrMap","HTMLFormElement","DOMParser","trustedTypes","ke","implementation","createNodeIterator","createDocumentFragment","getElementsByTagName","importNode","createHTMLDocument","js","Ls","zs","Om","jm","Lm","Vr","Wr","Ge","Zr","He","Kr","ze","tagNameCheck","attributeNameCheck","allowCustomizedBuiltInElements","Oa","Us","Jr","Ms","Yr","Xr","Rs","$s","la","gn","hn","Qr","Is","ja","ca","ma","ti","Gs","vn","da","Hs","qs","Um","Mm","qe","pa","$m","Vs","PARSER_MEDIA_TYPE","ALLOWED_TAGS","ALLOWED_ATTR","ALLOWED_NAMESPACES","ADD_URI_SAFE_ATTR","ADD_DATA_URI_TAGS","FORBID_CONTENTS","FORBID_TAGS","FORBID_ATTR","USE_PROFILES","ALLOW_ARIA_ATTR","ALLOW_DATA_ATTR","ALLOW_UNKNOWN_PROTOCOLS","ALLOW_SELF_CLOSE_IN_ATTR","SAFE_FOR_TEMPLATES","WHOLE_DOCUMENT","RETURN_DOM","RETURN_DOM_FRAGMENT","RETURN_TRUSTED_TYPE","FORCE_BODY","SANITIZE_DOM","SANITIZE_NAMED_PROPS","KEEP_CONTENT","IN_PLACE","ALLOWED_URI_REGEXP","NAMESPACE","CUSTOM_ELEMENT_HANDLING","svgFilters","mathMl","ADD_TAGS","ADD_ATTR","tbody","TRUSTED_TYPES_POLICY","createHTML","createScriptURL","createPolicy","Re","ii","Im","Cn","Ws","ga","Zs","attribute","getAttributeNode","ui","parseFromString","createDocument","SHOW_ELEMENT","SHOW_COMMENT","SHOW_TEXT","yn","nodeName","namespaceURI","Hm","allowedTags","firstElementChild","Gm","mi","pi","attrName","attrValue","keepAttr","allowedAttributes","ha","forceKeepAttr","gi","getAttributeType","qm","nextNode","shadowroot","shadowrootmode","outerHTML","doctype","clearConfig","isValidAttribute","addHook","removeHook","removeHooks","removeAllHooks","Yc","ach","examples","plural","sample","nplurals","pluralsText","pluralsFunc","ak","am","ar","arn","ast","ay","az","bo","brx","cgg","cs","csb","doi","dz","fa","fil","fo","fur","fy","gd","gl","gun","hne","hy","jbo","jv","kk","km","ko","kw","ky","lb","lv","mai","mfe","mk","ml","mni","mnk","mr","ms","my","nah","nap","nb","nl","nso","or","pap","pl","pms","ps","rm","rw","sah","sat","sco","sk","sl","son","sq","sr","sv","sw","tk","tr","ug","uk","ur","uz","wo","yo","catalogs","domain","sourceLocale","eventName","addTranslations","setLocale","setTextDomain","dnpgettext","dgettext","dngettext","pgettext","dpgettext","npgettext","_getTranslation","getLanguageCode","getComment","comments","textdomain","setlocale","addTextdomain","setLanguage","lang","enableDebugMode","subtitudePlaceholders","ba","dn","Ur","ju","reference","floating","Xc","bottom","jf","Xo","Ss","platform","rects","elements","strategy","rootBoundary","elementContext","altBoundary","padding","getClippingClientRect","isElement","contextElement","getDocumentElement","convertOffsetParentRelativeRectToViewportRelativeRect","rect","offsetParent","getOffsetParent","Lf","Qo","Uf","Qc","main","cross","Mf","er","$f","Mr","$t","defaultView","Ts","us","em","ShadowRoot","Fs","overflow","overflowX","overflowY","Xf","tm","perspective","contain","willChange","Lu","qa","ls","Pa","Yf","Ds","scrollLeft","e4","Qf","clientLeft","clientTop","Bs","assignedSlot","zu","t4","Uu","nm","visualViewport","Mu","innerWidth","scale","offsetLeft","offsetTop","n4","r4","scrollWidth","scrollHeight","s4","i4","getRootNode","o4","l4","getElementRects","u4","getDimensions","getClientRects","m4","d4","p4","sm","om","propertyIsEnumerable","Ru","g4","ht","skidding","instantMove","disposeTimeout","popperTriggers","preventOverflow","flip","overflowPadding","arrowPadding","arrowOverflow","hideTriggers","loadingContent","dropdown","autoHide","$extend","Sa","$u","sa","im","MSStream","Rr","hover","touch","nr","Iu","mo","Zt","Gu","Hu","$props","theme","po","$r","targetNodes","referenceNode","popperNode","showGroup","ariaId","positioningDisabled","showTriggers","popperShowTriggers","popperHideTriggers","eagerMount","popperClass","computeTransformOrigin","autoMinSize","autoSize","autoMaxSize","autoBoundaryMaxSize","shiftCrossAxis","noAutoFocus","parentPopper","isShown","isMounted","skipTransition","showFrom","showTo","hideFrom","hideTo","arrow","centerOffset","transformOrigin","shownChildren","lastAutoHide","popperId","shouldMountContent","slotData","onResize","hasPopperShowTriggerHover","dispose","$_ensureTeleport","$_computePosition","$_isDisposed","$_detachPopperNode","$_autoShowHide","skipDelay","lockedChild","$_pendingHide","$_scheduleShow","$_showFrameLocked","skipAiming","$_hideInProgress","$_isAimingPopper","lockedChildTimer","$_scheduleHide","$_events","$_preventShow","$_referenceNode","$_targetNodes","ELEMENT_NODE","$_popperNode","$_innerNode","$_arrowNode","$_swapTargetAttrs","$_addEventListeners","$_removeEventListeners","$_updateParentShownChildren","middleware","mainAxis","crossAxis","Vf","Wf","middlewareData","allowedPlacements","autoAlignment","autoPlacement","skip","If","overflows","Gf","limiter","Zf","Kf","initialPlacement","fallbackPlacements","fallbackStrategy","flipAlignment","Hf","qf","zf","maxWidth","maxHeight","Jf","Of","c4","$_scheduleTimer","$_applyHide","$_applyShow","$_computeDelay","$_disposeTimer","$_applyShowEffect","$_registerEventListeners","$_applyAttrsToTarget","usedByTooltip","$_registerTriggerListeners","$_refreshListeners","$_handleGlobalClose","closePopover","Va","Wa","Fn","qu","$_mouseDownContains","um","$_containsGlobalTarget","C4","Vu","closeAllPopover","y4","Vn","b4","clientX","clientY","x4","emitOnMount","ignoreWidth","ignoreHeight","_w","_h","emitSize","_resizeObject","addResizeHandlers","removeResizeHandlers","compareAndNotify","E4","lm","_withStripped","rr","k4","_4","Dn","Ir","themeClass","$resetCss","h4","N4","toPx","Na","Wu","L4","keyup","Gr","Ns","popper","U4","Popper","PopperContent","vPopperTheme","getTargetNodes","Zu","$4","resize","Os","G4","Ku","ir","H4","q4","Z4","Ju","K4","J4","Q4","Yu","lr","ev","tv","asyncContent","isContentAsync","finalContent","$_fetchId","$_isShown","$_loading","onShow","onHide","Xu","iv","cm","mm","dm","pm","$_popper","Hr","$_popperOldShown","Qu","gm","hm","fm","tl","Cm","$_vclosepopover_touch","$_closePopoverModifiers","changedTouches","$_vclosepopover_touchPoint","screenY","screenX","ym","cv","mv","dv","pv","gv","hv","fv","vv","Cv","yv","Av","wv","Am","$_vTooltipInstalled","wm","Bn","bv","HIDE_EVENT_MAP","Menu","PopperMethods","PopperWrapper","SHOW_EVENT_MAP","ThemeClass","Tooltip","TooltipDirective","VClosePopper","createTooltip","destroyTooltip","hideAllPoppers","placements","xv","bm","ds","xm","oa","msMatchesSelector","webkitMatchesSelector","gs","Em","assignedElements","scopeParent","candidates","getShadowRoot","shadowRootFilter","Pm","tabIndex","kv","Pv","documentOrder","Sm","al","hs","Sv","displayCheck","visibility","parentElement","Nv","Ov","Tv","cr","Bv","form","CSS","escape","Fv","Dv","Lv","zv","Ev","isScope","Rv","$v","Iv","Gv","Za","Vv","Wv","rl","il","Ra","composedPath","Zv","Jv","returnFocusOnDeactivate","delayInitialFocus","isKeyForward","isKeyBackward","containers","containerGroups","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","paused","delayInitialFocusTimer","recentNavEvent","tabbableNodes","tabbableOptions","firstTabbableNode","includeContainer","Uv","Mv","focusableNodes","posTabIndexesFound","lastTabbableNode","firstDomTabbableNode","lastDomTabbableNode","nextTabbableNode","preventScroll","Hv","isBackward","clickOutsideDeactivates","Document","qv","ol","removedNodes","subtree","childList","onDeactivate","onPostDeactivate","checkCanReturnFocus","unpause","Yv","pn","viewBox","s1","je","r1","Tm","u1","ll","cl","Fm","Nn","On","ho","ul","qr","Dm","dl","vo","Co","hl","jn","fl","vl","Cl","xo","yl","Al","wl","bl","Ao","g1","h1","l1","m1","d1","p1","f1","A1","v1","C1","y1","readAsText","throw","trys","ops","b1","Bm","k1","T1","F1","N1","O1","U1","M1","json","charset","Language","translator","Add","extracted","fs","y3","$1","Plus","Upload","addLabel","cancelLabel","uploadLabel","eta","timeLeft","newFileMenuEntries","uploadManager","Nm","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","isPaused","setDestination","updateStatus","onUploadCompletion","onPick","V1","renamed","conflicts","q1","setSeconds","seconds","H1","decorative","A3","Eo","Move","Copy","CopyMove","Undo","OFF","POLITE","ASSERTIVE","isHTML","onRemove","ariaLive","gravity","backgroundColor","escapeMarkup","showToast","__webpack_module_cache__","moduleId","cachedModule","__webpack_modules__","chunkIds","notFulfilled","definition","chunkId","promises","script","needAttach","scripts","onScriptComplete","doneFns","nmd","scriptUrl","baseURI","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"files-main.js?v=cc940bd0e830ad9735e1","mappings":"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","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/paths/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/buffer/index.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcAppSettingsDialog.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcAppSettingsSection.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcBreadcrumb.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcBreadcrumbs.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcIconSvgWrapper.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcInputField.js","webpack:///nextcloud/apps/files/src/utils/davUtils.js","webpack:///nextcloud/apps/files/src/services/Templates.js","webpack:///nextcloud/apps/files/src/components/TemplatePreview.vue","webpack:///nextcloud/apps/files/src/components/TemplatePreview.vue?vue&type=script&lang=js&","webpack:///nextcloud/apps/files/src/utils/fileUtils.js","webpack://nextcloud/./apps/files/src/components/TemplatePreview.vue?9ec4","webpack://nextcloud/./apps/files/src/components/TemplatePreview.vue?81db","webpack://nextcloud/./apps/files/src/components/TemplatePreview.vue?c414","webpack:///nextcloud/apps/files/src/views/TemplatePicker.vue","webpack:///nextcloud/apps/files/src/views/TemplatePicker.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/views/TemplatePicker.vue?9ada","webpack://nextcloud/./apps/files/src/views/TemplatePicker.vue?afd8","webpack://nextcloud/./apps/files/src/views/TemplatePicker.vue?1f7b","webpack:///nextcloud/apps/files/src/templates.js","webpack:///nextcloud/apps/files/src/legacy/filelistSearch.js","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/apps/files/src/actions/deleteAction.ts","webpack:///nextcloud/apps/files/src/actions/downloadAction.ts","webpack:///nextcloud/apps/files/src/actions/editLocallyAction.ts","webpack:///nextcloud/apps/files/src/actions/favoriteAction.ts","webpack:///nextcloud/apps/files/src/actions/openFolderAction.ts","webpack:///nextcloud/apps/files/src/actions/openInFilesAction.ts","webpack:///nextcloud/apps/files/src/actions/renameAction.ts","webpack:///nextcloud/apps/files/src/actions/sidebarAction.ts","webpack:///nextcloud/apps/files/src/actions/viewInFolderAction.ts","webpack:///nextcloud/apps/files/src/newMenu/newFolder.ts","webpack:///nextcloud/node_modules/pinia/node_modules/vue-demi/lib/index.mjs","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/env.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/const.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/time.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/proxy.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/index.js","webpack:///nextcloud/node_modules/pinia/dist/pinia.mjs","webpack:///nextcloud/apps/files/src/views/FilesList.vue","webpack:///nextcloud/node_modules/natural-orderby/dist/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ShareVariant.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/ShareVariant.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ShareVariant.vue?0b71","webpack:///nextcloud/node_modules/vue-material-design-icons/ShareVariant.vue?vue&type=template&id=1f144a5c&","webpack:///nextcloud/apps/files/src/store/files.ts","webpack:///nextcloud/apps/files/src/store/uploader.ts","webpack:///nextcloud/apps/files/src/store/paths.ts","webpack:///nextcloud/apps/files/src/store/selection.ts","webpack:///nextcloud/apps/files/src/store/userconfig.ts","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?8560","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?e906","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Key.vue?157c","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=template&id=aa295eae&","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Tag.vue?6116","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=template&id=4d7171be&","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Network.vue?11eb","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=template&id=7c7d2907&","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/AccountPlus.vue?2818","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=template&id=98f97aee&","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/PreviewService.ts","webpack:///nextcloud/apps/files/src/store/actionsmenu.ts","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/CustomElementRender.vue?5f5c","webpack:///nextcloud/apps/files/src/components/CustomSvgIconRender.vue?vue&type=script&lang=js&","webpack:///nextcloud/apps/files/src/components/CustomSvgIconRender.vue","webpack://nextcloud/./apps/files/src/components/CustomSvgIconRender.vue?6bea","webpack://nextcloud/./apps/files/src/components/CustomSvgIconRender.vue?5641","webpack://nextcloud/./apps/files/src/components/CustomSvgIconRender.vue?2c34","webpack:///nextcloud/apps/files/src/components/FavoriteIcon.vue?vue&type=script&lang=js&","webpack:///nextcloud/apps/files/src/components/FavoriteIcon.vue","webpack://nextcloud/./apps/files/src/components/FavoriteIcon.vue?1f40","webpack://nextcloud/./apps/files/src/components/FavoriteIcon.vue?cf70","webpack://nextcloud/./apps/files/src/components/FavoriteIcon.vue?344a","webpack:///nextcloud/apps/files/src/components/FileEntry.vue","webpack:///nextcloud/apps/files/src/store/keyboard.ts","webpack:///nextcloud/apps/files/src/store/renaming.ts","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?ea7a","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?a8d6","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?da7c","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue?vue&type=script&lang=ts&","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue","webpack://nextcloud/./apps/files/src/components/FilesListHeader.vue?349b","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?3a4a","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?fa4c","webpack:///nextcloud/apps/files/src/mixins/filesListWidth.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?2d26","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?9494","webpack:///nextcloud/apps/files/src/mixins/filesSorting.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=script&lang=ts&","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?a6b3","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?e364","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?37c1","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?b1c9","webpack:///nextcloud/apps/files/src/components/VirtualList.vue?vue&type=script&lang=ts&","webpack:///nextcloud/apps/files/src/components/VirtualList.vue","webpack://nextcloud/./apps/files/src/components/VirtualList.vue?37fa","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?9001","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?3555","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1c3c","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1e5b","webpack:///nextcloud/node_modules/throttle-debounce/esm/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=template&id=44de6464&","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ChartPie.vue?421f","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2a33","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2966","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?08cb","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Clipboard.vue?68c7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=template&id=0e008e34&","webpack:///nextcloud/apps/files/src/components/Setting.vue?vue&type=script&lang=js&","webpack:///nextcloud/apps/files/src/components/Setting.vue","webpack://nextcloud/./apps/files/src/components/Setting.vue?98ea","webpack://nextcloud/./apps/files/src/components/Setting.vue?8d57","webpack:///nextcloud/apps/files/src/views/Settings.vue","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/views/Settings.vue?30ce","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack://nextcloud/./apps/files/src/views/Settings.vue?84f7","webpack:///nextcloud/apps/files/src/views/Navigation.vue","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=script&lang=ts&","webpack:///nextcloud/core/src/OCP/accessibility.js","webpack://nextcloud/./apps/files/src/views/Navigation.vue?3292","webpack://nextcloud/./apps/files/src/views/Navigation.vue?74b9","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/services/DavProperties.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/services/Favorites.ts","webpack:///nextcloud/apps/files/src/views/favorites.ts","webpack:///nextcloud/apps/files/src/services/Recent.ts","webpack:///nextcloud/apps/files/src/services/ServiceWorker.js","webpack:///nextcloud/node_modules/decode-uri-component/index.js","webpack:///nextcloud/node_modules/split-on-first/index.js","webpack:///nextcloud/node_modules/query-string/node_modules/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.js","webpack:///nextcloud/node_modules/vue-router/dist/vue-router.esm.js","webpack:///nextcloud/apps/files/src/router/router.ts","webpack:///nextcloud/apps/files/src/services/RouterService.ts","webpack:///nextcloud/apps/files/src/models/Setting.js","webpack:///nextcloud/apps/files/src/services/Settings.js","webpack:///nextcloud/apps/files/src/main.ts","webpack:///nextcloud/apps/files/src/views/files.ts","webpack:///nextcloud/apps/files/src/views/recent.ts","webpack:///nextcloud/node_modules/cancelable-promise/umd/CancelablePromise.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/assets/index.css","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/components/CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/components/FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/components/TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=style&index=0&id=54f78fd5&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/views/TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&","webpack:///nextcloud/node_modules/eventemitter3/index.js","webpack:///nextcloud/node_modules/moment/locale|sync|/^\\.\\/.*$","webpack:///nextcloud/node_modules/simple-eta/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=template&id=5c8d96c6&","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/File.vue?245d","webpack:///nextcloud/node_modules/vue-material-design-icons/Home.vue?vue&type=template&id=69a49b0f&","webpack:///nextcloud/node_modules/vue-material-design-icons/Home.vue?vue&type=script&lang=js&","webpack:///nextcloud/node_modules/vue-material-design-icons/Home.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Home.vue?e73b","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./node_modules/@nextcloud/upload/dist/assets/index.css?cdff","webpack:///nextcloud/node_modules/p-cancelable/index.js","webpack:///nextcloud/node_modules/p-timeout/index.js","webpack:///nextcloud/node_modules/p-queue/dist/priority-queue.js","webpack:///nextcloud/node_modules/p-queue/dist/lower-bound.js","webpack:///nextcloud/node_modules/p-queue/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/chunks/index-2df22e47.mjs","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/@nextcloud/dialogs/dist/chunks/index-03982120.mjs","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/@nextcloud/dialogs/dist/chunks/toast-ea3453ef.mjs","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.encodePath = encodePath;\nexports.basename = basename;\nexports.dirname = dirname;\nexports.joinPaths = joinPaths;\nexports.isSamePath = isSamePath;\n\nrequire(\"core-js/modules/es.array.map.js\");\n\nrequire(\"core-js/modules/es.regexp.exec.js\");\n\nrequire(\"core-js/modules/es.string.split.js\");\n\nrequire(\"core-js/modules/es.string.replace.js\");\n\nrequire(\"core-js/modules/es.array.filter.js\");\n\nrequire(\"core-js/modules/es.array.reduce.js\");\n\nrequire(\"core-js/modules/es.array.concat.js\");\n\n/**\n * URI-Encodes a file path but keep the path slashes.\n */\nfunction encodePath(path) {\n if (!path) {\n return path;\n }\n\n return path.split('/').map(encodeURIComponent).join('/');\n}\n/**\n * Returns the base name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"somefile.txt\"\n */\n\n\nfunction basename(path) {\n return path.replace(/\\\\/g, '/').replace(/.*\\//, '');\n}\n/**\n * Returns the dir name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"/abc\"\n */\n\n\nfunction dirname(path) {\n return path.replace(/\\\\/g, '/').replace(/\\/[^\\/]*$/, '');\n}\n/**\n * Join path sections\n */\n\n\nfunction joinPaths() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n if (arguments.length < 1) {\n return '';\n } // discard empty arguments\n\n\n var nonEmptyArgs = args.filter(function (arg) {\n return arg.length > 0;\n });\n\n if (nonEmptyArgs.length < 1) {\n return '';\n }\n\n var lastArg = nonEmptyArgs[nonEmptyArgs.length - 1];\n var leadingSlash = nonEmptyArgs[0].charAt(0) === '/';\n var trailingSlash = lastArg.charAt(lastArg.length - 1) === '/';\n var sections = nonEmptyArgs.reduce(function (acc, section) {\n return acc.concat(section.split('/'));\n }, []);\n var first = !leadingSlash;\n var path = sections.reduce(function (acc, section) {\n if (section === '') {\n return acc;\n }\n\n if (first) {\n first = false;\n return acc + section;\n }\n\n return acc + '/' + section;\n }, '');\n\n if (trailingSlash) {\n // add it back\n return path + '/';\n }\n\n return path;\n}\n/**\n * Returns whether the given paths are the same, without\n * leading, trailing or doubled slashes and also removing\n * the dot sections.\n */\n\n\nfunction isSamePath(path1, path2) {\n var pathSections1 = (path1 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n var pathSections2 = (path2 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n path1 = joinPaths.apply(undefined, pathSections1);\n path2 = joinPaths.apply(undefined, pathSections2);\n return path1 === path2;\n}\n//# sourceMappingURL=index.js.map","/*!\n * The buffer module from node.js, for the browser.\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n/* eslint-disable no-proto */\n\n'use strict'\n\nconst base64 = require('base64-js')\nconst ieee754 = require('ieee754')\nconst customInspectSymbol =\n (typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation\n ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation\n : null\n\nexports.Buffer = Buffer\nexports.SlowBuffer = SlowBuffer\nexports.INSPECT_MAX_BYTES = 50\n\nconst K_MAX_LENGTH = 0x7fffffff\nexports.kMaxLength = K_MAX_LENGTH\n\n/**\n * If `Buffer.TYPED_ARRAY_SUPPORT`:\n * === true Use Uint8Array implementation (fastest)\n * === false Print warning and recommend using `buffer` v4.x which has an Object\n * implementation (most compatible, even IE6)\n *\n * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n * Opera 11.6+, iOS 4.2+.\n *\n * We report that the browser does not support typed arrays if the are not subclassable\n * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array`\n * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support\n * for __proto__ and has a buggy typed array implementation.\n */\nBuffer.TYPED_ARRAY_SUPPORT = typedArraySupport()\n\nif (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' &&\n typeof console.error === 'function') {\n console.error(\n 'This browser lacks typed array (Uint8Array) support which is required by ' +\n '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'\n )\n}\n\nfunction typedArraySupport () {\n // Can typed array instances can be augmented?\n try {\n const arr = new Uint8Array(1)\n const proto = { foo: function () { return 42 } }\n Object.setPrototypeOf(proto, Uint8Array.prototype)\n Object.setPrototypeOf(arr, proto)\n return arr.foo() === 42\n } catch (e) {\n return false\n }\n}\n\nObject.defineProperty(Buffer.prototype, 'parent', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.buffer\n }\n})\n\nObject.defineProperty(Buffer.prototype, 'offset', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.byteOffset\n }\n})\n\nfunction createBuffer (length) {\n if (length > K_MAX_LENGTH) {\n throw new RangeError('The value \"' + length + '\" is invalid for option \"size\"')\n }\n // Return an augmented `Uint8Array` instance\n const buf = new Uint8Array(length)\n Object.setPrototypeOf(buf, Buffer.prototype)\n return buf\n}\n\n/**\n * The Buffer constructor returns instances of `Uint8Array` that have their\n * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n * returns a single octet.\n *\n * The `Uint8Array` prototype remains unmodified.\n */\n\nfunction Buffer (arg, encodingOrOffset, length) {\n // Common case.\n if (typeof arg === 'number') {\n if (typeof encodingOrOffset === 'string') {\n throw new TypeError(\n 'The \"string\" argument must be of type string. Received type number'\n )\n }\n return allocUnsafe(arg)\n }\n return from(arg, encodingOrOffset, length)\n}\n\nBuffer.poolSize = 8192 // not used by this implementation\n\nfunction from (value, encodingOrOffset, length) {\n if (typeof value === 'string') {\n return fromString(value, encodingOrOffset)\n }\n\n if (ArrayBuffer.isView(value)) {\n return fromArrayView(value)\n }\n\n if (value == null) {\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n }\n\n if (isInstance(value, ArrayBuffer) ||\n (value && isInstance(value.buffer, ArrayBuffer))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof SharedArrayBuffer !== 'undefined' &&\n (isInstance(value, SharedArrayBuffer) ||\n (value && isInstance(value.buffer, SharedArrayBuffer)))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof value === 'number') {\n throw new TypeError(\n 'The \"value\" argument must not be of type number. Received type number'\n )\n }\n\n const valueOf = value.valueOf && value.valueOf()\n if (valueOf != null && valueOf !== value) {\n return Buffer.from(valueOf, encodingOrOffset, length)\n }\n\n const b = fromObject(value)\n if (b) return b\n\n if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null &&\n typeof value[Symbol.toPrimitive] === 'function') {\n return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length)\n }\n\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n}\n\n/**\n * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n * if value is a number.\n * Buffer.from(str[, encoding])\n * Buffer.from(array)\n * Buffer.from(buffer)\n * Buffer.from(arrayBuffer[, byteOffset[, length]])\n **/\nBuffer.from = function (value, encodingOrOffset, length) {\n return from(value, encodingOrOffset, length)\n}\n\n// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:\n// https://github.com/feross/buffer/pull/148\nObject.setPrototypeOf(Buffer.prototype, Uint8Array.prototype)\nObject.setPrototypeOf(Buffer, Uint8Array)\n\nfunction assertSize (size) {\n if (typeof size !== 'number') {\n throw new TypeError('\"size\" argument must be of type number')\n } else if (size < 0) {\n throw new RangeError('The value \"' + size + '\" is invalid for option \"size\"')\n }\n}\n\nfunction alloc (size, fill, encoding) {\n assertSize(size)\n if (size <= 0) {\n return createBuffer(size)\n }\n if (fill !== undefined) {\n // Only pay attention to encoding if it's a string. This\n // prevents accidentally sending in a number that would\n // be interpreted as a start offset.\n return typeof encoding === 'string'\n ? createBuffer(size).fill(fill, encoding)\n : createBuffer(size).fill(fill)\n }\n return createBuffer(size)\n}\n\n/**\n * Creates a new filled Buffer instance.\n * alloc(size[, fill[, encoding]])\n **/\nBuffer.alloc = function (size, fill, encoding) {\n return alloc(size, fill, encoding)\n}\n\nfunction allocUnsafe (size) {\n assertSize(size)\n return createBuffer(size < 0 ? 0 : checked(size) | 0)\n}\n\n/**\n * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n * */\nBuffer.allocUnsafe = function (size) {\n return allocUnsafe(size)\n}\n/**\n * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n */\nBuffer.allocUnsafeSlow = function (size) {\n return allocUnsafe(size)\n}\n\nfunction fromString (string, encoding) {\n if (typeof encoding !== 'string' || encoding === '') {\n encoding = 'utf8'\n }\n\n if (!Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n\n const length = byteLength(string, encoding) | 0\n let buf = createBuffer(length)\n\n const actual = buf.write(string, encoding)\n\n if (actual !== length) {\n // Writing a hex string, for example, that contains invalid characters will\n // cause everything after the first invalid character to be ignored. (e.g.\n // 'abxxcd' will be treated as 'ab')\n buf = buf.slice(0, actual)\n }\n\n return buf\n}\n\nfunction fromArrayLike (array) {\n const length = array.length < 0 ? 0 : checked(array.length) | 0\n const buf = createBuffer(length)\n for (let i = 0; i < length; i += 1) {\n buf[i] = array[i] & 255\n }\n return buf\n}\n\nfunction fromArrayView (arrayView) {\n if (isInstance(arrayView, Uint8Array)) {\n const copy = new Uint8Array(arrayView)\n return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength)\n }\n return fromArrayLike(arrayView)\n}\n\nfunction fromArrayBuffer (array, byteOffset, length) {\n if (byteOffset < 0 || array.byteLength < byteOffset) {\n throw new RangeError('\"offset\" is outside of buffer bounds')\n }\n\n if (array.byteLength < byteOffset + (length || 0)) {\n throw new RangeError('\"length\" is outside of buffer bounds')\n }\n\n let buf\n if (byteOffset === undefined && length === undefined) {\n buf = new Uint8Array(array)\n } else if (length === undefined) {\n buf = new Uint8Array(array, byteOffset)\n } else {\n buf = new Uint8Array(array, byteOffset, length)\n }\n\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(buf, Buffer.prototype)\n\n return buf\n}\n\nfunction fromObject (obj) {\n if (Buffer.isBuffer(obj)) {\n const len = checked(obj.length) | 0\n const buf = createBuffer(len)\n\n if (buf.length === 0) {\n return buf\n }\n\n obj.copy(buf, 0, 0, len)\n return buf\n }\n\n if (obj.length !== undefined) {\n if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) {\n return createBuffer(0)\n }\n return fromArrayLike(obj)\n }\n\n if (obj.type === 'Buffer' && Array.isArray(obj.data)) {\n return fromArrayLike(obj.data)\n }\n}\n\nfunction checked (length) {\n // Note: cannot use `length < K_MAX_LENGTH` here because that fails when\n // length is NaN (which is otherwise coerced to zero.)\n if (length >= K_MAX_LENGTH) {\n throw new RangeError('Attempt to allocate Buffer larger than maximum ' +\n 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes')\n }\n return length | 0\n}\n\nfunction SlowBuffer (length) {\n if (+length != length) { // eslint-disable-line eqeqeq\n length = 0\n }\n return Buffer.alloc(+length)\n}\n\nBuffer.isBuffer = function isBuffer (b) {\n return b != null && b._isBuffer === true &&\n b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false\n}\n\nBuffer.compare = function compare (a, b) {\n if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength)\n if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength)\n if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n throw new TypeError(\n 'The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array'\n )\n }\n\n if (a === b) return 0\n\n let x = a.length\n let y = b.length\n\n for (let i = 0, len = Math.min(x, y); i < len; ++i) {\n if (a[i] !== b[i]) {\n x = a[i]\n y = b[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\nBuffer.isEncoding = function isEncoding (encoding) {\n switch (String(encoding).toLowerCase()) {\n case 'hex':\n case 'utf8':\n case 'utf-8':\n case 'ascii':\n case 'latin1':\n case 'binary':\n case 'base64':\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return true\n default:\n return false\n }\n}\n\nBuffer.concat = function concat (list, length) {\n if (!Array.isArray(list)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n\n if (list.length === 0) {\n return Buffer.alloc(0)\n }\n\n let i\n if (length === undefined) {\n length = 0\n for (i = 0; i < list.length; ++i) {\n length += list[i].length\n }\n }\n\n const buffer = Buffer.allocUnsafe(length)\n let pos = 0\n for (i = 0; i < list.length; ++i) {\n let buf = list[i]\n if (isInstance(buf, Uint8Array)) {\n if (pos + buf.length > buffer.length) {\n if (!Buffer.isBuffer(buf)) buf = Buffer.from(buf)\n buf.copy(buffer, pos)\n } else {\n Uint8Array.prototype.set.call(\n buffer,\n buf,\n pos\n )\n }\n } else if (!Buffer.isBuffer(buf)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n } else {\n buf.copy(buffer, pos)\n }\n pos += buf.length\n }\n return buffer\n}\n\nfunction byteLength (string, encoding) {\n if (Buffer.isBuffer(string)) {\n return string.length\n }\n if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) {\n return string.byteLength\n }\n if (typeof string !== 'string') {\n throw new TypeError(\n 'The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. ' +\n 'Received type ' + typeof string\n )\n }\n\n const len = string.length\n const mustMatch = (arguments.length > 2 && arguments[2] === true)\n if (!mustMatch && len === 0) return 0\n\n // Use a for loop to avoid recursion\n let loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'ascii':\n case 'latin1':\n case 'binary':\n return len\n case 'utf8':\n case 'utf-8':\n return utf8ToBytes(string).length\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return len * 2\n case 'hex':\n return len >>> 1\n case 'base64':\n return base64ToBytes(string).length\n default:\n if (loweredCase) {\n return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8\n }\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\nBuffer.byteLength = byteLength\n\nfunction slowToString (encoding, start, end) {\n let loweredCase = false\n\n // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n // property of a typed array.\n\n // This behaves neither like String nor Uint8Array in that we set start/end\n // to their upper/lower bounds if the value passed is out of range.\n // undefined is handled specially as per ECMA-262 6th Edition,\n // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n if (start === undefined || start < 0) {\n start = 0\n }\n // Return early if start > this.length. Done here to prevent potential uint32\n // coercion fail below.\n if (start > this.length) {\n return ''\n }\n\n if (end === undefined || end > this.length) {\n end = this.length\n }\n\n if (end <= 0) {\n return ''\n }\n\n // Force coercion to uint32. This will also coerce falsey/NaN values to 0.\n end >>>= 0\n start >>>= 0\n\n if (end <= start) {\n return ''\n }\n\n if (!encoding) encoding = 'utf8'\n\n while (true) {\n switch (encoding) {\n case 'hex':\n return hexSlice(this, start, end)\n\n case 'utf8':\n case 'utf-8':\n return utf8Slice(this, start, end)\n\n case 'ascii':\n return asciiSlice(this, start, end)\n\n case 'latin1':\n case 'binary':\n return latin1Slice(this, start, end)\n\n case 'base64':\n return base64Slice(this, start, end)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return utf16leSlice(this, start, end)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = (encoding + '').toLowerCase()\n loweredCase = true\n }\n }\n}\n\n// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package)\n// to detect a Buffer instance. It's not possible to use `instanceof Buffer`\n// reliably in a browserify context because there could be multiple different\n// copies of the 'buffer' package in use. This method works even for Buffer\n// instances that were created from another copy of the `buffer` package.\n// See: https://github.com/feross/buffer/issues/154\nBuffer.prototype._isBuffer = true\n\nfunction swap (b, n, m) {\n const i = b[n]\n b[n] = b[m]\n b[m] = i\n}\n\nBuffer.prototype.swap16 = function swap16 () {\n const len = this.length\n if (len % 2 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 16-bits')\n }\n for (let i = 0; i < len; i += 2) {\n swap(this, i, i + 1)\n }\n return this\n}\n\nBuffer.prototype.swap32 = function swap32 () {\n const len = this.length\n if (len % 4 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 32-bits')\n }\n for (let i = 0; i < len; i += 4) {\n swap(this, i, i + 3)\n swap(this, i + 1, i + 2)\n }\n return this\n}\n\nBuffer.prototype.swap64 = function swap64 () {\n const len = this.length\n if (len % 8 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 64-bits')\n }\n for (let i = 0; i < len; i += 8) {\n swap(this, i, i + 7)\n swap(this, i + 1, i + 6)\n swap(this, i + 2, i + 5)\n swap(this, i + 3, i + 4)\n }\n return this\n}\n\nBuffer.prototype.toString = function toString () {\n const length = this.length\n if (length === 0) return ''\n if (arguments.length === 0) return utf8Slice(this, 0, length)\n return slowToString.apply(this, arguments)\n}\n\nBuffer.prototype.toLocaleString = Buffer.prototype.toString\n\nBuffer.prototype.equals = function equals (b) {\n if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')\n if (this === b) return true\n return Buffer.compare(this, b) === 0\n}\n\nBuffer.prototype.inspect = function inspect () {\n let str = ''\n const max = exports.INSPECT_MAX_BYTES\n str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim()\n if (this.length > max) str += ' ... '\n return ''\n}\nif (customInspectSymbol) {\n Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect\n}\n\nBuffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {\n if (isInstance(target, Uint8Array)) {\n target = Buffer.from(target, target.offset, target.byteLength)\n }\n if (!Buffer.isBuffer(target)) {\n throw new TypeError(\n 'The \"target\" argument must be one of type Buffer or Uint8Array. ' +\n 'Received type ' + (typeof target)\n )\n }\n\n if (start === undefined) {\n start = 0\n }\n if (end === undefined) {\n end = target ? target.length : 0\n }\n if (thisStart === undefined) {\n thisStart = 0\n }\n if (thisEnd === undefined) {\n thisEnd = this.length\n }\n\n if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n throw new RangeError('out of range index')\n }\n\n if (thisStart >= thisEnd && start >= end) {\n return 0\n }\n if (thisStart >= thisEnd) {\n return -1\n }\n if (start >= end) {\n return 1\n }\n\n start >>>= 0\n end >>>= 0\n thisStart >>>= 0\n thisEnd >>>= 0\n\n if (this === target) return 0\n\n let x = thisEnd - thisStart\n let y = end - start\n const len = Math.min(x, y)\n\n const thisCopy = this.slice(thisStart, thisEnd)\n const targetCopy = target.slice(start, end)\n\n for (let i = 0; i < len; ++i) {\n if (thisCopy[i] !== targetCopy[i]) {\n x = thisCopy[i]\n y = targetCopy[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\n// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n//\n// Arguments:\n// - buffer - a Buffer to search\n// - val - a string, Buffer, or number\n// - byteOffset - an index into `buffer`; will be clamped to an int32\n// - encoding - an optional encoding, relevant is val is a string\n// - dir - true for indexOf, false for lastIndexOf\nfunction bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {\n // Empty buffer means no match\n if (buffer.length === 0) return -1\n\n // Normalize byteOffset\n if (typeof byteOffset === 'string') {\n encoding = byteOffset\n byteOffset = 0\n } else if (byteOffset > 0x7fffffff) {\n byteOffset = 0x7fffffff\n } else if (byteOffset < -0x80000000) {\n byteOffset = -0x80000000\n }\n byteOffset = +byteOffset // Coerce to Number.\n if (numberIsNaN(byteOffset)) {\n // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n byteOffset = dir ? 0 : (buffer.length - 1)\n }\n\n // Normalize byteOffset: negative offsets start from the end of the buffer\n if (byteOffset < 0) byteOffset = buffer.length + byteOffset\n if (byteOffset >= buffer.length) {\n if (dir) return -1\n else byteOffset = buffer.length - 1\n } else if (byteOffset < 0) {\n if (dir) byteOffset = 0\n else return -1\n }\n\n // Normalize val\n if (typeof val === 'string') {\n val = Buffer.from(val, encoding)\n }\n\n // Finally, search either indexOf (if dir is true) or lastIndexOf\n if (Buffer.isBuffer(val)) {\n // Special case: looking for empty string/buffer always fails\n if (val.length === 0) {\n return -1\n }\n return arrayIndexOf(buffer, val, byteOffset, encoding, dir)\n } else if (typeof val === 'number') {\n val = val & 0xFF // Search for a byte value [0-255]\n if (typeof Uint8Array.prototype.indexOf === 'function') {\n if (dir) {\n return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)\n } else {\n return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)\n }\n }\n return arrayIndexOf(buffer, [val], byteOffset, encoding, dir)\n }\n\n throw new TypeError('val must be string, number or Buffer')\n}\n\nfunction arrayIndexOf (arr, val, byteOffset, encoding, dir) {\n let indexSize = 1\n let arrLength = arr.length\n let valLength = val.length\n\n if (encoding !== undefined) {\n encoding = String(encoding).toLowerCase()\n if (encoding === 'ucs2' || encoding === 'ucs-2' ||\n encoding === 'utf16le' || encoding === 'utf-16le') {\n if (arr.length < 2 || val.length < 2) {\n return -1\n }\n indexSize = 2\n arrLength /= 2\n valLength /= 2\n byteOffset /= 2\n }\n }\n\n function read (buf, i) {\n if (indexSize === 1) {\n return buf[i]\n } else {\n return buf.readUInt16BE(i * indexSize)\n }\n }\n\n let i\n if (dir) {\n let foundIndex = -1\n for (i = byteOffset; i < arrLength; i++) {\n if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n if (foundIndex === -1) foundIndex = i\n if (i - foundIndex + 1 === valLength) return foundIndex * indexSize\n } else {\n if (foundIndex !== -1) i -= i - foundIndex\n foundIndex = -1\n }\n }\n } else {\n if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength\n for (i = byteOffset; i >= 0; i--) {\n let found = true\n for (let j = 0; j < valLength; j++) {\n if (read(arr, i + j) !== read(val, j)) {\n found = false\n break\n }\n }\n if (found) return i\n }\n }\n\n return -1\n}\n\nBuffer.prototype.includes = function includes (val, byteOffset, encoding) {\n return this.indexOf(val, byteOffset, encoding) !== -1\n}\n\nBuffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, true)\n}\n\nBuffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, false)\n}\n\nfunction hexWrite (buf, string, offset, length) {\n offset = Number(offset) || 0\n const remaining = buf.length - offset\n if (!length) {\n length = remaining\n } else {\n length = Number(length)\n if (length > remaining) {\n length = remaining\n }\n }\n\n const strLen = string.length\n\n if (length > strLen / 2) {\n length = strLen / 2\n }\n let i\n for (i = 0; i < length; ++i) {\n const parsed = parseInt(string.substr(i * 2, 2), 16)\n if (numberIsNaN(parsed)) return i\n buf[offset + i] = parsed\n }\n return i\n}\n\nfunction utf8Write (buf, string, offset, length) {\n return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nfunction asciiWrite (buf, string, offset, length) {\n return blitBuffer(asciiToBytes(string), buf, offset, length)\n}\n\nfunction base64Write (buf, string, offset, length) {\n return blitBuffer(base64ToBytes(string), buf, offset, length)\n}\n\nfunction ucs2Write (buf, string, offset, length) {\n return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nBuffer.prototype.write = function write (string, offset, length, encoding) {\n // Buffer#write(string)\n if (offset === undefined) {\n encoding = 'utf8'\n length = this.length\n offset = 0\n // Buffer#write(string, encoding)\n } else if (length === undefined && typeof offset === 'string') {\n encoding = offset\n length = this.length\n offset = 0\n // Buffer#write(string, offset[, length][, encoding])\n } else if (isFinite(offset)) {\n offset = offset >>> 0\n if (isFinite(length)) {\n length = length >>> 0\n if (encoding === undefined) encoding = 'utf8'\n } else {\n encoding = length\n length = undefined\n }\n } else {\n throw new Error(\n 'Buffer.write(string, encoding, offset[, length]) is no longer supported'\n )\n }\n\n const remaining = this.length - offset\n if (length === undefined || length > remaining) length = remaining\n\n if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {\n throw new RangeError('Attempt to write outside buffer bounds')\n }\n\n if (!encoding) encoding = 'utf8'\n\n let loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'hex':\n return hexWrite(this, string, offset, length)\n\n case 'utf8':\n case 'utf-8':\n return utf8Write(this, string, offset, length)\n\n case 'ascii':\n case 'latin1':\n case 'binary':\n return asciiWrite(this, string, offset, length)\n\n case 'base64':\n // Warning: maxLength not taken into account in base64Write\n return base64Write(this, string, offset, length)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return ucs2Write(this, string, offset, length)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\n\nBuffer.prototype.toJSON = function toJSON () {\n return {\n type: 'Buffer',\n data: Array.prototype.slice.call(this._arr || this, 0)\n }\n}\n\nfunction base64Slice (buf, start, end) {\n if (start === 0 && end === buf.length) {\n return base64.fromByteArray(buf)\n } else {\n return base64.fromByteArray(buf.slice(start, end))\n }\n}\n\nfunction utf8Slice (buf, start, end) {\n end = Math.min(buf.length, end)\n const res = []\n\n let i = start\n while (i < end) {\n const firstByte = buf[i]\n let codePoint = null\n let bytesPerSequence = (firstByte > 0xEF)\n ? 4\n : (firstByte > 0xDF)\n ? 3\n : (firstByte > 0xBF)\n ? 2\n : 1\n\n if (i + bytesPerSequence <= end) {\n let secondByte, thirdByte, fourthByte, tempCodePoint\n\n switch (bytesPerSequence) {\n case 1:\n if (firstByte < 0x80) {\n codePoint = firstByte\n }\n break\n case 2:\n secondByte = buf[i + 1]\n if ((secondByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)\n if (tempCodePoint > 0x7F) {\n codePoint = tempCodePoint\n }\n }\n break\n case 3:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)\n if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n codePoint = tempCodePoint\n }\n }\n break\n case 4:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n fourthByte = buf[i + 3]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)\n if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n codePoint = tempCodePoint\n }\n }\n }\n }\n\n if (codePoint === null) {\n // we did not generate a valid codePoint so insert a\n // replacement char (U+FFFD) and advance only 1 byte\n codePoint = 0xFFFD\n bytesPerSequence = 1\n } else if (codePoint > 0xFFFF) {\n // encode to utf16 (surrogate pair dance)\n codePoint -= 0x10000\n res.push(codePoint >>> 10 & 0x3FF | 0xD800)\n codePoint = 0xDC00 | codePoint & 0x3FF\n }\n\n res.push(codePoint)\n i += bytesPerSequence\n }\n\n return decodeCodePointsArray(res)\n}\n\n// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n// the lowest limit is Chrome, with 0x10000 args.\n// We go 1 magnitude less, for safety\nconst MAX_ARGUMENTS_LENGTH = 0x1000\n\nfunction decodeCodePointsArray (codePoints) {\n const len = codePoints.length\n if (len <= MAX_ARGUMENTS_LENGTH) {\n return String.fromCharCode.apply(String, codePoints) // avoid extra slice()\n }\n\n // Decode in chunks to avoid \"call stack size exceeded\".\n let res = ''\n let i = 0\n while (i < len) {\n res += String.fromCharCode.apply(\n String,\n codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)\n )\n }\n return res\n}\n\nfunction asciiSlice (buf, start, end) {\n let ret = ''\n end = Math.min(buf.length, end)\n\n for (let i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i] & 0x7F)\n }\n return ret\n}\n\nfunction latin1Slice (buf, start, end) {\n let ret = ''\n end = Math.min(buf.length, end)\n\n for (let i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i])\n }\n return ret\n}\n\nfunction hexSlice (buf, start, end) {\n const len = buf.length\n\n if (!start || start < 0) start = 0\n if (!end || end < 0 || end > len) end = len\n\n let out = ''\n for (let i = start; i < end; ++i) {\n out += hexSliceLookupTable[buf[i]]\n }\n return out\n}\n\nfunction utf16leSlice (buf, start, end) {\n const bytes = buf.slice(start, end)\n let res = ''\n // If bytes.length is odd, the last 8 bits must be ignored (same as node.js)\n for (let i = 0; i < bytes.length - 1; i += 2) {\n res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256))\n }\n return res\n}\n\nBuffer.prototype.slice = function slice (start, end) {\n const len = this.length\n start = ~~start\n end = end === undefined ? len : ~~end\n\n if (start < 0) {\n start += len\n if (start < 0) start = 0\n } else if (start > len) {\n start = len\n }\n\n if (end < 0) {\n end += len\n if (end < 0) end = 0\n } else if (end > len) {\n end = len\n }\n\n if (end < start) end = start\n\n const newBuf = this.subarray(start, end)\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(newBuf, Buffer.prototype)\n\n return newBuf\n}\n\n/*\n * Need to make sure that buffer isn't trying to write out of bounds.\n */\nfunction checkOffset (offset, ext, length) {\n if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')\n if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')\n}\n\nBuffer.prototype.readUintLE =\nBuffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n let val = this[offset]\n let mul = 1\n let i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUintBE =\nBuffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n checkOffset(offset, byteLength, this.length)\n }\n\n let val = this[offset + --byteLength]\n let mul = 1\n while (byteLength > 0 && (mul *= 0x100)) {\n val += this[offset + --byteLength] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUint8 =\nBuffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n return this[offset]\n}\n\nBuffer.prototype.readUint16LE =\nBuffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return this[offset] | (this[offset + 1] << 8)\n}\n\nBuffer.prototype.readUint16BE =\nBuffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return (this[offset] << 8) | this[offset + 1]\n}\n\nBuffer.prototype.readUint32LE =\nBuffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return ((this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16)) +\n (this[offset + 3] * 0x1000000)\n}\n\nBuffer.prototype.readUint32BE =\nBuffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] * 0x1000000) +\n ((this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n this[offset + 3])\n}\n\nBuffer.prototype.readBigUInt64LE = defineBigIntMethod(function readBigUInt64LE (offset) {\n offset = offset >>> 0\n validateNumber(offset, 'offset')\n const first = this[offset]\n const last = this[offset + 7]\n if (first === undefined || last === undefined) {\n boundsError(offset, this.length - 8)\n }\n\n const lo = first +\n this[++offset] * 2 ** 8 +\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 24\n\n const hi = this[++offset] +\n this[++offset] * 2 ** 8 +\n this[++offset] * 2 ** 16 +\n last * 2 ** 24\n\n return BigInt(lo) + (BigInt(hi) << BigInt(32))\n})\n\nBuffer.prototype.readBigUInt64BE = defineBigIntMethod(function readBigUInt64BE (offset) {\n offset = offset >>> 0\n validateNumber(offset, 'offset')\n const first = this[offset]\n const last = this[offset + 7]\n if (first === undefined || last === undefined) {\n boundsError(offset, this.length - 8)\n }\n\n const hi = first * 2 ** 24 +\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 8 +\n this[++offset]\n\n const lo = this[++offset] * 2 ** 24 +\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 8 +\n last\n\n return (BigInt(hi) << BigInt(32)) + BigInt(lo)\n})\n\nBuffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n let val = this[offset]\n let mul = 1\n let i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n let i = byteLength\n let mul = 1\n let val = this[offset + --i]\n while (i > 0 && (mul *= 0x100)) {\n val += this[offset + --i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readInt8 = function readInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n if (!(this[offset] & 0x80)) return (this[offset])\n return ((0xff - this[offset] + 1) * -1)\n}\n\nBuffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n const val = this[offset] | (this[offset + 1] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n const val = this[offset + 1] | (this[offset] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16) |\n (this[offset + 3] << 24)\n}\n\nBuffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] << 24) |\n (this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n (this[offset + 3])\n}\n\nBuffer.prototype.readBigInt64LE = defineBigIntMethod(function readBigInt64LE (offset) {\n offset = offset >>> 0\n validateNumber(offset, 'offset')\n const first = this[offset]\n const last = this[offset + 7]\n if (first === undefined || last === undefined) {\n boundsError(offset, this.length - 8)\n }\n\n const val = this[offset + 4] +\n this[offset + 5] * 2 ** 8 +\n this[offset + 6] * 2 ** 16 +\n (last << 24) // Overflow\n\n return (BigInt(val) << BigInt(32)) +\n BigInt(first +\n this[++offset] * 2 ** 8 +\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 24)\n})\n\nBuffer.prototype.readBigInt64BE = defineBigIntMethod(function readBigInt64BE (offset) {\n offset = offset >>> 0\n validateNumber(offset, 'offset')\n const first = this[offset]\n const last = this[offset + 7]\n if (first === undefined || last === undefined) {\n boundsError(offset, this.length - 8)\n }\n\n const val = (first << 24) + // Overflow\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 8 +\n this[++offset]\n\n return (BigInt(val) << BigInt(32)) +\n BigInt(this[++offset] * 2 ** 24 +\n this[++offset] * 2 ** 16 +\n this[++offset] * 2 ** 8 +\n last)\n})\n\nBuffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, true, 23, 4)\n}\n\nBuffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, false, 23, 4)\n}\n\nBuffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, true, 52, 8)\n}\n\nBuffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, false, 52, 8)\n}\n\nfunction checkInt (buf, value, offset, ext, max, min) {\n if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance')\n if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds')\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n}\n\nBuffer.prototype.writeUintLE =\nBuffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n const maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n let mul = 1\n let i = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUintBE =\nBuffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n const maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n let i = byteLength - 1\n let mul = 1\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUint8 =\nBuffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeUint16LE =\nBuffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeUint16BE =\nBuffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeUint32LE =\nBuffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset + 3] = (value >>> 24)\n this[offset + 2] = (value >>> 16)\n this[offset + 1] = (value >>> 8)\n this[offset] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeUint32BE =\nBuffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nfunction wrtBigUInt64LE (buf, value, offset, min, max) {\n checkIntBI(value, min, max, buf, offset, 7)\n\n let lo = Number(value & BigInt(0xffffffff))\n buf[offset++] = lo\n lo = lo >> 8\n buf[offset++] = lo\n lo = lo >> 8\n buf[offset++] = lo\n lo = lo >> 8\n buf[offset++] = lo\n let hi = Number(value >> BigInt(32) & BigInt(0xffffffff))\n buf[offset++] = hi\n hi = hi >> 8\n buf[offset++] = hi\n hi = hi >> 8\n buf[offset++] = hi\n hi = hi >> 8\n buf[offset++] = hi\n return offset\n}\n\nfunction wrtBigUInt64BE (buf, value, offset, min, max) {\n checkIntBI(value, min, max, buf, offset, 7)\n\n let lo = Number(value & BigInt(0xffffffff))\n buf[offset + 7] = lo\n lo = lo >> 8\n buf[offset + 6] = lo\n lo = lo >> 8\n buf[offset + 5] = lo\n lo = lo >> 8\n buf[offset + 4] = lo\n let hi = Number(value >> BigInt(32) & BigInt(0xffffffff))\n buf[offset + 3] = hi\n hi = hi >> 8\n buf[offset + 2] = hi\n hi = hi >> 8\n buf[offset + 1] = hi\n hi = hi >> 8\n buf[offset] = hi\n return offset + 8\n}\n\nBuffer.prototype.writeBigUInt64LE = defineBigIntMethod(function writeBigUInt64LE (value, offset = 0) {\n return wrtBigUInt64LE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff'))\n})\n\nBuffer.prototype.writeBigUInt64BE = defineBigIntMethod(function writeBigUInt64BE (value, offset = 0) {\n return wrtBigUInt64BE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff'))\n})\n\nBuffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n const limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n let i = 0\n let mul = 1\n let sub = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n const limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n let i = byteLength - 1\n let mul = 1\n let sub = 0\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)\n if (value < 0) value = 0xff + value + 1\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n this[offset + 2] = (value >>> 16)\n this[offset + 3] = (value >>> 24)\n return offset + 4\n}\n\nBuffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (value < 0) value = 0xffffffff + value + 1\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeBigInt64LE = defineBigIntMethod(function writeBigInt64LE (value, offset = 0) {\n return wrtBigUInt64LE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff'))\n})\n\nBuffer.prototype.writeBigInt64BE = defineBigIntMethod(function writeBigInt64BE (value, offset = 0) {\n return wrtBigUInt64BE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff'))\n})\n\nfunction checkIEEE754 (buf, value, offset, ext, max, min) {\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n if (offset < 0) throw new RangeError('Index out of range')\n}\n\nfunction writeFloat (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)\n }\n ieee754.write(buf, value, offset, littleEndian, 23, 4)\n return offset + 4\n}\n\nBuffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {\n return writeFloat(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {\n return writeFloat(this, value, offset, false, noAssert)\n}\n\nfunction writeDouble (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)\n }\n ieee754.write(buf, value, offset, littleEndian, 52, 8)\n return offset + 8\n}\n\nBuffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {\n return writeDouble(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {\n return writeDouble(this, value, offset, false, noAssert)\n}\n\n// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\nBuffer.prototype.copy = function copy (target, targetStart, start, end) {\n if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer')\n if (!start) start = 0\n if (!end && end !== 0) end = this.length\n if (targetStart >= target.length) targetStart = target.length\n if (!targetStart) targetStart = 0\n if (end > 0 && end < start) end = start\n\n // Copy 0 bytes; we're done\n if (end === start) return 0\n if (target.length === 0 || this.length === 0) return 0\n\n // Fatal error conditions\n if (targetStart < 0) {\n throw new RangeError('targetStart out of bounds')\n }\n if (start < 0 || start >= this.length) throw new RangeError('Index out of range')\n if (end < 0) throw new RangeError('sourceEnd out of bounds')\n\n // Are we oob?\n if (end > this.length) end = this.length\n if (target.length - targetStart < end - start) {\n end = target.length - targetStart + start\n }\n\n const len = end - start\n\n if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {\n // Use built-in when available, missing from IE11\n this.copyWithin(targetStart, start, end)\n } else {\n Uint8Array.prototype.set.call(\n target,\n this.subarray(start, end),\n targetStart\n )\n }\n\n return len\n}\n\n// Usage:\n// buffer.fill(number[, offset[, end]])\n// buffer.fill(buffer[, offset[, end]])\n// buffer.fill(string[, offset[, end]][, encoding])\nBuffer.prototype.fill = function fill (val, start, end, encoding) {\n // Handle string cases:\n if (typeof val === 'string') {\n if (typeof start === 'string') {\n encoding = start\n start = 0\n end = this.length\n } else if (typeof end === 'string') {\n encoding = end\n end = this.length\n }\n if (encoding !== undefined && typeof encoding !== 'string') {\n throw new TypeError('encoding must be a string')\n }\n if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n if (val.length === 1) {\n const code = val.charCodeAt(0)\n if ((encoding === 'utf8' && code < 128) ||\n encoding === 'latin1') {\n // Fast path: If `val` fits into a single byte, use that numeric value.\n val = code\n }\n }\n } else if (typeof val === 'number') {\n val = val & 255\n } else if (typeof val === 'boolean') {\n val = Number(val)\n }\n\n // Invalid ranges are not set to a default, so can range check early.\n if (start < 0 || this.length < start || this.length < end) {\n throw new RangeError('Out of range index')\n }\n\n if (end <= start) {\n return this\n }\n\n start = start >>> 0\n end = end === undefined ? this.length : end >>> 0\n\n if (!val) val = 0\n\n let i\n if (typeof val === 'number') {\n for (i = start; i < end; ++i) {\n this[i] = val\n }\n } else {\n const bytes = Buffer.isBuffer(val)\n ? val\n : Buffer.from(val, encoding)\n const len = bytes.length\n if (len === 0) {\n throw new TypeError('The value \"' + val +\n '\" is invalid for argument \"value\"')\n }\n for (i = 0; i < end - start; ++i) {\n this[i + start] = bytes[i % len]\n }\n }\n\n return this\n}\n\n// CUSTOM ERRORS\n// =============\n\n// Simplified versions from Node, changed for Buffer-only usage\nconst errors = {}\nfunction E (sym, getMessage, Base) {\n errors[sym] = class NodeError extends Base {\n constructor () {\n super()\n\n Object.defineProperty(this, 'message', {\n value: getMessage.apply(this, arguments),\n writable: true,\n configurable: true\n })\n\n // Add the error code to the name to include it in the stack trace.\n this.name = `${this.name} [${sym}]`\n // Access the stack to generate the error message including the error code\n // from the name.\n this.stack // eslint-disable-line no-unused-expressions\n // Reset the name to the actual name.\n delete this.name\n }\n\n get code () {\n return sym\n }\n\n set code (value) {\n Object.defineProperty(this, 'code', {\n configurable: true,\n enumerable: true,\n value,\n writable: true\n })\n }\n\n toString () {\n return `${this.name} [${sym}]: ${this.message}`\n }\n }\n}\n\nE('ERR_BUFFER_OUT_OF_BOUNDS',\n function (name) {\n if (name) {\n return `${name} is outside of buffer bounds`\n }\n\n return 'Attempt to access memory outside buffer bounds'\n }, RangeError)\nE('ERR_INVALID_ARG_TYPE',\n function (name, actual) {\n return `The \"${name}\" argument must be of type number. Received type ${typeof actual}`\n }, TypeError)\nE('ERR_OUT_OF_RANGE',\n function (str, range, input) {\n let msg = `The value of \"${str}\" is out of range.`\n let received = input\n if (Number.isInteger(input) && Math.abs(input) > 2 ** 32) {\n received = addNumericalSeparator(String(input))\n } else if (typeof input === 'bigint') {\n received = String(input)\n if (input > BigInt(2) ** BigInt(32) || input < -(BigInt(2) ** BigInt(32))) {\n received = addNumericalSeparator(received)\n }\n received += 'n'\n }\n msg += ` It must be ${range}. Received ${received}`\n return msg\n }, RangeError)\n\nfunction addNumericalSeparator (val) {\n let res = ''\n let i = val.length\n const start = val[0] === '-' ? 1 : 0\n for (; i >= start + 4; i -= 3) {\n res = `_${val.slice(i - 3, i)}${res}`\n }\n return `${val.slice(0, i)}${res}`\n}\n\n// CHECK FUNCTIONS\n// ===============\n\nfunction checkBounds (buf, offset, byteLength) {\n validateNumber(offset, 'offset')\n if (buf[offset] === undefined || buf[offset + byteLength] === undefined) {\n boundsError(offset, buf.length - (byteLength + 1))\n }\n}\n\nfunction checkIntBI (value, min, max, buf, offset, byteLength) {\n if (value > max || value < min) {\n const n = typeof min === 'bigint' ? 'n' : ''\n let range\n if (byteLength > 3) {\n if (min === 0 || min === BigInt(0)) {\n range = `>= 0${n} and < 2${n} ** ${(byteLength + 1) * 8}${n}`\n } else {\n range = `>= -(2${n} ** ${(byteLength + 1) * 8 - 1}${n}) and < 2 ** ` +\n `${(byteLength + 1) * 8 - 1}${n}`\n }\n } else {\n range = `>= ${min}${n} and <= ${max}${n}`\n }\n throw new errors.ERR_OUT_OF_RANGE('value', range, value)\n }\n checkBounds(buf, offset, byteLength)\n}\n\nfunction validateNumber (value, name) {\n if (typeof value !== 'number') {\n throw new errors.ERR_INVALID_ARG_TYPE(name, 'number', value)\n }\n}\n\nfunction boundsError (value, length, type) {\n if (Math.floor(value) !== value) {\n validateNumber(value, type)\n throw new errors.ERR_OUT_OF_RANGE(type || 'offset', 'an integer', value)\n }\n\n if (length < 0) {\n throw new errors.ERR_BUFFER_OUT_OF_BOUNDS()\n }\n\n throw new errors.ERR_OUT_OF_RANGE(type || 'offset',\n `>= ${type ? 1 : 0} and <= ${length}`,\n value)\n}\n\n// HELPER FUNCTIONS\n// ================\n\nconst INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g\n\nfunction base64clean (str) {\n // Node takes equal signs as end of the Base64 encoding\n str = str.split('=')[0]\n // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n str = str.trim().replace(INVALID_BASE64_RE, '')\n // Node converts strings with length < 2 to ''\n if (str.length < 2) return ''\n // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n while (str.length % 4 !== 0) {\n str = str + '='\n }\n return str\n}\n\nfunction utf8ToBytes (string, units) {\n units = units || Infinity\n let codePoint\n const length = string.length\n let leadSurrogate = null\n const bytes = []\n\n for (let i = 0; i < length; ++i) {\n codePoint = string.charCodeAt(i)\n\n // is surrogate component\n if (codePoint > 0xD7FF && codePoint < 0xE000) {\n // last char was a lead\n if (!leadSurrogate) {\n // no lead yet\n if (codePoint > 0xDBFF) {\n // unexpected trail\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n } else if (i + 1 === length) {\n // unpaired lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n }\n\n // valid lead\n leadSurrogate = codePoint\n\n continue\n }\n\n // 2 leads in a row\n if (codePoint < 0xDC00) {\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n leadSurrogate = codePoint\n continue\n }\n\n // valid surrogate pair\n codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000\n } else if (leadSurrogate) {\n // valid bmp char, but last char was a lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n }\n\n leadSurrogate = null\n\n // encode utf8\n if (codePoint < 0x80) {\n if ((units -= 1) < 0) break\n bytes.push(codePoint)\n } else if (codePoint < 0x800) {\n if ((units -= 2) < 0) break\n bytes.push(\n codePoint >> 0x6 | 0xC0,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x10000) {\n if ((units -= 3) < 0) break\n bytes.push(\n codePoint >> 0xC | 0xE0,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x110000) {\n if ((units -= 4) < 0) break\n bytes.push(\n codePoint >> 0x12 | 0xF0,\n codePoint >> 0xC & 0x3F | 0x80,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else {\n throw new Error('Invalid code point')\n }\n }\n\n return bytes\n}\n\nfunction asciiToBytes (str) {\n const byteArray = []\n for (let i = 0; i < str.length; ++i) {\n // Node's code seems to be doing this and not & 0x7F..\n byteArray.push(str.charCodeAt(i) & 0xFF)\n }\n return byteArray\n}\n\nfunction utf16leToBytes (str, units) {\n let c, hi, lo\n const byteArray = []\n for (let i = 0; i < str.length; ++i) {\n if ((units -= 2) < 0) break\n\n c = str.charCodeAt(i)\n hi = c >> 8\n lo = c % 256\n byteArray.push(lo)\n byteArray.push(hi)\n }\n\n return byteArray\n}\n\nfunction base64ToBytes (str) {\n return base64.toByteArray(base64clean(str))\n}\n\nfunction blitBuffer (src, dst, offset, length) {\n let i\n for (i = 0; i < length; ++i) {\n if ((i + offset >= dst.length) || (i >= src.length)) break\n dst[i + offset] = src[i]\n }\n return i\n}\n\n// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass\n// the `instanceof` check but they should be treated as of that type.\n// See: https://github.com/feross/buffer/issues/166\nfunction isInstance (obj, type) {\n return obj instanceof type ||\n (obj != null && obj.constructor != null && obj.constructor.name != null &&\n obj.constructor.name === type.name)\n}\nfunction numberIsNaN (obj) {\n // For IE11 support\n return obj !== obj // eslint-disable-line no-self-compare\n}\n\n// Create lookup table for `toString('hex')`\n// See: https://github.com/feross/buffer/issues/219\nconst hexSliceLookupTable = (function () {\n const alphabet = '0123456789abcdef'\n const table = new Array(256)\n for (let i = 0; i < 16; ++i) {\n const i16 = i * 16\n for (let j = 0; j < 16; ++j) {\n table[i16 + j] = alphabet[i] + alphabet[j]\n }\n }\n return table\n})()\n\n// Return not function with Error if BigInt not supported\nfunction defineBigIntMethod (fn) {\n return typeof BigInt === 'undefined' ? BufferBigIntNotDefined : fn\n}\n\nfunction BufferBigIntNotDefined () {\n throw new Error('BigInt not supported')\n}\n","/*! For license information please see NcAppSettingsDialog.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcAppSettingsDialog\"]=t())}(self,(()=>(()=>{var e={7664:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>R});var o=a(3089),n=a(2297),i=a(1205),r=a(932),s=a(2734),l=a.n(s),c=a(1441),d=a.n(c);function m(e){return m=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},m(e)}function u(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function p(e){for(var t=1;te.length)&&(t=e.length);for(var a=0,o=new Array(t);a0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var a=t.querySelector(A);if(a){var o=g(this.$refs.menu.querySelectorAll(A)).indexOf(a);o>-1&&(this.focusIndex=o,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(A)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(A).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(A).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,a=(this.$slots.default||[]).filter((function(e){var t,a;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)})),o=a.every((function(e){var t,a,o,n;return\"NcActionLink\"===(null!==(t=null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)&&void 0!==t?t:null==e||null===(o=e.componentOptions)||void 0===o?void 0:o.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=a.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(l().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),n=[]),0!==a.length){var i=function(a){var o,n,i,r,s,l,c,d,m,u,h,g,v=(null==a||null===(o=a.data)||void 0===o||null===(o=o.scopedSlots)||void 0===o||null===(o=o.icon())||void 0===o?void 0:o[0])||e(\"span\",{class:[\"icon\",null==a||null===(n=a.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),A=null==a||null===(i=a.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,k=null==a||null===(r=a.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),f=(null==a||null===(l=a.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||k,y=t.forceName?k:\"\",C=null==a||null===(c=a.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||C||(C=k),e(\"NcButton\",{class:[\"action-item action-item--single\",null==a||null===(d=a.data)||void 0===d?void 0:d.staticClass,null==a||null===(m=a.data)||void 0===m?void 0:m.class],attrs:{\"aria-label\":f,title:C},ref:null==a||null===(u=a.data)||void 0===u?void 0:u.ref,props:p({type:t.type||(y?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==a||null===(h=a.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==a||null===(g=a.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!A&&{click:function(e){A&&A(e)}})},[e(\"template\",{slot:\"icon\"},[v]),y])},r=function(a){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":o?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:o?null:\"menu\"}},[a])])])};if(1===a.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),c=a.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[c.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(c)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(a)])}}};var f=a(3379),y=a.n(f),C=a(7795),b=a.n(C),w=a(569),P=a.n(w),S=a(3565),N=a.n(S),j=a(9216),x=a.n(j),O=a(4589),E=a.n(O),B=a(9546),z={};z.styleTagTransform=E(),z.setAttributes=N(),z.insert=P().bind(null,\"head\"),z.domAPI=b(),z.insertStyleElement=x();y()(B.Z,z);B.Z&&B.Z.locals&&B.Z.locals;var F=a(5155),M={};M.styleTagTransform=E(),M.setAttributes=N(),M.insert=P().bind(null,\"head\"),M.domAPI=b(),M.insertStyleElement=x();y()(F.Z,M);F.Z&&F.Z.locals&&F.Z.locals;var T=a(1900),_=a(5727),D=a.n(_),G=(0,T.Z)(k,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(G);const R=G.exports},3089:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function n(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function i(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,a,o,n=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(a=t.trim)||void 0===a?void 0:a.call(t),l=!!s,c=null===(o=this.$slots)||void 0===o?void 0:o.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var d=function(){var t,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=a.navigate,d=a.isActive,m=a.isExactActive;return e(n.to||!n.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":c&&!l,\"button-vue--text-only\":l&&!c,\"button-vue--icon-and-text\":c&&l},r(t,\"button-vue--vue-\".concat(n.realType),n.realType),r(t,\"button-vue--wide\",n.wide),r(t,\"button-vue--\".concat(n.flexAlignment),\"center\"!==n.flexAlignment),r(t,\"button-vue--reverse\",n.isReverseAligned),r(t,\"active\",d),r(t,\"router-link-exact-active\",m),t)],attrs:i({\"aria-label\":n.ariaLabel,\"aria-pressed\":n.pressed,disabled:n.disabled,type:n.href?null:n.nativeType,role:n.href?\"button\":null,href:!n.to&&n.href?n.href:null,target:!n.to&&n.href?\"_self\":null,rel:!n.to&&n.href?\"nofollow noreferrer noopener\":null,download:!n.to&&n.href&&n.download?n.download:null},n.$attrs),on:i(i({},n.$listeners),{},{click:function(e){\"boolean\"==typeof n.pressed&&n.$emit(\"update:pressed\",!n.pressed),n.$emit(\"click\",e),null==o||o(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[c?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":n.ariaHidden}},[n.$slots.icon]):null,l?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=a(3379),c=a.n(l),d=a(7795),m=a.n(d),u=a(569),p=a.n(u),h=a(3565),g=a.n(h),v=a(9216),A=a.n(v),k=a(4589),f=a.n(k),y=a(7294),C={};C.styleTagTransform=f(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=m(),C.insertStyleElement=A();c()(y.Z,C);y.Z&&y.Z.locals&&y.Z.locals;var b=a(1900),w=a(2102),P=a.n(w),S=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof P()&&P()(S);const N=S.exports},4390:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>Y});const o=function(e){e.mounted?Array.isArray(e.mounted)||(e.mounted=[e.mounted]):e.mounted=[],e.mounted.push((function(){this.$el.setAttribute(\"data-v-\".concat(\"7f0c9d1\"),\"\")}))};var n=a(1206),i=a(932),r=a(1205),s=a(3648),l=a(7664),c=a(3089);function d(e,t){var a,o,n,i=t;this.start=function(){n=!0,o=new Date,a=setTimeout(e,i)},this.pause=function(){n=!1,clearTimeout(a),i-=new Date-o},this.clear=function(){n=!1,clearTimeout(a),i=0},this.getTimeLeft=function(){return n&&(this.pause(),this.start()),i},this.getStateRunning=function(){return n},this.start()}var m=a(336);const u=require(\"vue-material-design-icons/ChevronLeft.vue\");var p=a.n(u);const h=require(\"vue-material-design-icons/ChevronRight.vue\");var g=a.n(h),v=a(8618),A=a.n(v);const k=require(\"vue-material-design-icons/Pause.vue\");var f=a.n(k);const y=require(\"vue-material-design-icons/Play.vue\");var C=a.n(y),b=a(4505);const w=require(\"@vueuse/core\");function P(e){return P=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},P(e)}function S(){S=function(){return e};var e={},t=Object.prototype,a=t.hasOwnProperty,o=Object.defineProperty||function(e,t,a){e[t]=a.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,a){return Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,a){return e[t]=a}}function c(e,t,a,n){var i=t&&t.prototype instanceof u?t:u,r=Object.create(i.prototype),s=new j(n||[]);return o(r,\"_invoke\",{value:C(e,a,s)}),r}function d(e,t,a){try{return{type:\"normal\",arg:e.call(t,a)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var m={};function u(){}function p(){}function h(){}var g={};l(g,i,(function(){return this}));var v=Object.getPrototypeOf,A=v&&v(v(x([])));A&&A!==t&&a.call(A,i)&&(g=A);var k=h.prototype=u.prototype=Object.create(g);function f(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function y(e,t){function n(o,i,r,s){var l=d(e[o],e,i);if(\"throw\"!==l.type){var c=l.arg,m=c.value;return m&&\"object\"==P(m)&&a.call(m,\"__await\")?t.resolve(m.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(m).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;o(this,\"_invoke\",{value:function(e,a){function o(){return new t((function(t,o){n(e,a,t,o)}))}return i=i?i.then(o,o):o()}})}function C(e,t,a){var o=\"suspendedStart\";return function(n,i){if(\"executing\"===o)throw new Error(\"Generator is already running\");if(\"completed\"===o){if(\"throw\"===n)throw i;return O()}for(a.method=n,a.arg=i;;){var r=a.delegate;if(r){var s=b(r,a);if(s){if(s===m)continue;return s}}if(\"next\"===a.method)a.sent=a._sent=a.arg;else if(\"throw\"===a.method){if(\"suspendedStart\"===o)throw o=\"completed\",a.arg;a.dispatchException(a.arg)}else\"return\"===a.method&&a.abrupt(\"return\",a.arg);o=\"executing\";var l=d(e,t,a);if(\"normal\"===l.type){if(o=a.done?\"completed\":\"suspendedYield\",l.arg===m)continue;return{value:l.arg,done:a.done}}\"throw\"===l.type&&(o=\"completed\",a.method=\"throw\",a.arg=l.arg)}}}function b(e,t){var a=t.method,o=e.iterator[a];if(void 0===o)return t.delegate=null,\"throw\"===a&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,b(e,t),\"throw\"===t.method)||\"return\"!==a&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+a+\"' method\")),m;var n=d(o,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,m;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,m):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,m)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function j(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(w,this),this.reset(!0)}function x(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,n=function t(){for(;++o=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return o(\"end\");if(i.tryLoc<=this.prev){var s=a.call(i,\"catchLoc\"),l=a.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--o){var n=this.tryEntries[o];if(n.tryLoc<=this.prev&&a.call(n,\"finallyLoc\")&&this.prev=0;--t){var a=this.tryEntries[t];if(a.finallyLoc===e)return this.complete(a.completion,a.afterLoc),N(a),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var a=this.tryEntries[t];if(a.tryLoc===e){var o=a.completion;if(\"throw\"===o.type){var n=o.arg;N(a)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,a){return this.delegate={iterator:x(e),resultName:t,nextLoc:a},\"next\"===this.method&&(this.arg=void 0),m}},e}function N(e,t,a,o,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void a(e)}s.done?t(l):Promise.resolve(l).then(o,n)}function j(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[\"@@iterator\"])return Array.from(e)}(e)||function(e,t){if(!e)return;if(\"string\"==typeof e)return x(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===a&&e.constructor&&(a=e.constructor.name);if(\"Map\"===a||\"Set\"===a)return Array.from(e);if(\"Arguments\"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a))return x(e,t)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,o=new Array(t);a{\"use strict\";a.d(t,{default:()=>O});var o=a(9454),n=a(4505),i=a(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,a=t.hasOwnProperty,o=Object.defineProperty||function(e,t,a){e[t]=a.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",l=n.asyncIterator||\"@@asyncIterator\",c=n.toStringTag||\"@@toStringTag\";function d(e,t,a){return Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},\"\")}catch(e){d=function(e,t,a){return e[t]=a}}function m(e,t,a,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new j(n||[]);return o(r,\"_invoke\",{value:w(e,a,s)}),r}function u(e,t,a){try{return{type:\"normal\",arg:e.call(t,a)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=m;var p={};function h(){}function g(){}function v(){}var A={};d(A,i,(function(){return this}));var k=Object.getPrototypeOf,f=k&&k(k(x([])));f&&f!==t&&a.call(f,i)&&(A=f);var y=v.prototype=h.prototype=Object.create(A);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(o,i,s,l){var c=u(e[o],e,i);if(\"throw\"!==c.type){var d=c.arg,m=d.value;return m&&\"object\"==r(m)&&a.call(m,\"__await\")?t.resolve(m.__await).then((function(e){n(\"next\",e,s,l)}),(function(e){n(\"throw\",e,s,l)})):t.resolve(m).then((function(e){d.value=e,s(d)}),(function(e){return n(\"throw\",e,s,l)}))}l(c.arg)}var i;o(this,\"_invoke\",{value:function(e,a){function o(){return new t((function(t,o){n(e,a,t,o)}))}return i=i?i.then(o,o):o()}})}function w(e,t,a){var o=\"suspendedStart\";return function(n,i){if(\"executing\"===o)throw new Error(\"Generator is already running\");if(\"completed\"===o){if(\"throw\"===n)throw i;return O()}for(a.method=n,a.arg=i;;){var r=a.delegate;if(r){var s=P(r,a);if(s){if(s===p)continue;return s}}if(\"next\"===a.method)a.sent=a._sent=a.arg;else if(\"throw\"===a.method){if(\"suspendedStart\"===o)throw o=\"completed\",a.arg;a.dispatchException(a.arg)}else\"return\"===a.method&&a.abrupt(\"return\",a.arg);o=\"executing\";var l=u(e,t,a);if(\"normal\"===l.type){if(o=a.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:a.done}}\"throw\"===l.type&&(o=\"completed\",a.method=\"throw\",a.arg=l.arg)}}}function P(e,t){var a=t.method,o=e.iterator[a];if(void 0===o)return t.delegate=null,\"throw\"===a&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,P(e,t),\"throw\"===t.method)||\"return\"!==a&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+a+\"' method\")),p;var n=u(o,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function j(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(S,this),this.reset(!0)}function x(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,n=function t(){for(;++o=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return o(\"end\");if(i.tryLoc<=this.prev){var s=a.call(i,\"catchLoc\"),l=a.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--o){var n=this.tryEntries[o];if(n.tryLoc<=this.prev&&a.call(n,\"finallyLoc\")&&this.prev=0;--t){var a=this.tryEntries[t];if(a.finallyLoc===e)return this.complete(a.completion,a.afterLoc),N(a),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var a=this.tryEntries[t];if(a.tryLoc===e){var o=a.completion;if(\"throw\"===o.type){var n=o.arg;N(a)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,a){return this.delegate={iterator:x(e),resultName:t,nextLoc:a},\"next\"===this.method&&(this.arg=void 0),p}},e}function l(e,t,a,o,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void a(e)}s.done?t(l):Promise.resolve(l).then(o,n)}const c={name:\"NcPopover\",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var a,o;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(o=null===(a=t.$refs.popover)||void 0===a||null===(a=a.$refs.popperContent)||void 0===a?void 0:a.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,n.createFocusTrap)(o,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,a=arguments;return new Promise((function(o,n){var i=e.apply(t,a);function r(e){l(i,o,n,r,s,\"next\",e)}function s(e){l(i,o,n,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},d=c;var m=a(3379),u=a.n(m),p=a(7795),h=a.n(p),g=a(569),v=a.n(g),A=a(3565),k=a.n(A),f=a(9216),y=a.n(f),C=a(4589),b=a.n(C),w=a(1625),P={};P.styleTagTransform=b(),P.setAttributes=k(),P.insert=v().bind(null,\"head\"),P.domAPI=h(),P.insertStyleElement=y();u()(w.Z,P);w.Z&&w.Z.locals&&w.Z.locals;var S=a(1900),N=a(2405),j=a.n(N),x=(0,S.Z)(d,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof j()&&j()(x);const O=x.exports},336:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>k});var o=a(9454),n=a(3379),i=a.n(n),r=a(7795),s=a.n(r),l=a(569),c=a.n(l),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),v=a(8384),A={};A.styleTagTransform=g(),A.setAttributes=m(),A.insert=c().bind(null,\"head\"),A.domAPI=s(),A.insertStyleElement=p();i()(v.Z,A);v.Z&&v.Z.locals&&v.Z.locals;o.options.themes.tooltip.html=!1,o.options.themes.tooltip.delay={show:500,hide:200},o.options.themes.tooltip.distance=10,o.options.themes.tooltip[\"arrow-padding\"]=3;const k=o.VTooltip},932:(e,t,a)=>{\"use strict\";a.d(t,{n:()=>r,t:()=>s});var o=a(7931),n=(0,o.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var a in e.translations)e.translations[a].pluralId?t[a]={msgid:a,msgid_plural:e.translations[a].pluralId,msgstr:e.translations[a].msgstr}:t[a]={msgid:a,msgstr:[e.translations[a]]};n.addTranslation(e.locale,{translations:{\"\":t}})}));var i=n.build(),r=i.ngettext.bind(i),s=i.gettext.bind(i)},334:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>i});var o=a(2734),n=new(a.n(o)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit(\"changed\",e)}},created:function(){window.addEventListener(\"resize\",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener(\"resize\",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}});const i={data:function(){return{isMobile:!1}},mounted:function(){n.$on(\"changed\",this.onIsMobileChanged),this.isMobile=n.isMobile},beforeDestroy:function(){n.$off(\"changed\",this.onIsMobileChanged)},methods:{onIsMobileChanged:function(e){this.isMobile=e}}}},3648:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>n});var o=a(932);const n={methods:{n:o.n,t:o.t}}},1205:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>o});const o=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},1206:(e,t,a)=>{\"use strict\";a.d(t,{L:()=>o});var o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/directives/Tooltip/index.scss\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n/**\\n* @copyright Copyright (c) 2016, John Molakvoæ \\n* @copyright Copyright (c) 2016, Robin Appelman \\n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \\n* @copyright Copyright (c) 2016, Erik Pellikka \\n* @copyright Copyright (c) 2015, Vincent Petry \\n*\\n* Bootstrap (http://getbootstrap.com)\\n* SCSS copied from version 3.3.5\\n* Copyright 2011-2015 Twitter, Inc.\\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n*/\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-tooltip {\\n\\t&.v-popper__popper {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tright: auto;\\n\\t\\tleft: auto;\\n\\t\\tdisplay: block;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\ttext-align: left;\\n\\t\\ttext-align: start;\\n\\t\\topacity: 0;\\n\\t\\tline-height: 1.6;\\n\\n\\t\\tline-break: auto;\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t// TOP\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// BOTTOM\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// RIGHT\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tright: 100%;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// LEFT\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tleft: 100%;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// HIDDEN / SHOWN\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity .15s, visibility .15s;\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity .15s;\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n\\n\\t// CONTENT\\n\\t.v-popper__inner {\\n\\t\\tmax-width: 350px;\\n\\t\\tpadding: 5px 8px;\\n\\t\\ttext-align: center;\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder-radius: var(--border-radius);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t}\\n\\n\\t// ARROW\\n\\t.v-popper__arrow-container {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 1;\\n\\t\\twidth: 0;\\n\\t\\theight: 0;\\n\\t\\tmargin: 0;\\n\\t\\tborder-style: solid;\\n\\t\\tborder-color: transparent;\\n\\t\\tborder-width: $arrow-width;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5218:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-c3f93c9a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-settings-modal[data-v-c3f93c9a] .modal-wrapper .modal-container{display:flex;overflow:hidden}.app-settings[data-v-c3f93c9a]{width:100%;display:flex;flex-direction:column;min-width:0}.app-settings__name[data-v-c3f93c9a]{min-height:44px;height:44px;line-height:44px;padding-top:4px;text-align:center}.app-settings__wrapper[data-v-c3f93c9a]{display:flex;width:100%;overflow:hidden;height:100%;position:relative}.app-settings__navigation[data-v-c3f93c9a]{min-width:200px;margin-right:20px;overflow-x:hidden;overflow-y:auto;position:relative;height:100%}.app-settings__content[data-v-c3f93c9a]{max-width:100vw;overflow-y:auto;overflow-x:hidden;padding:24px;width:100%}.navigation-list[data-v-c3f93c9a]{height:100%;box-sizing:border-box;overflow-y:auto;padding:12px}.navigation-list__link[data-v-c3f93c9a]{display:block;font-size:16px;height:44px;margin:4px 0;line-height:44px;border-radius:var(--border-radius-pill);font-weight:bold;padding:0 20px;cursor:pointer;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;background-color:rgba(0,0,0,0);border:none}.navigation-list__link[data-v-c3f93c9a]:hover,.navigation-list__link[data-v-c3f93c9a]:focus{background-color:var(--color-background-hover)}.navigation-list__link--active[data-v-c3f93c9a]{background-color:var(--color-primary-element-light) !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,qEACC,YAAA,CACA,eAAA,CAGD,+BACC,UAAA,CACA,YAAA,CACA,qBAAA,CACA,WAAA,CACA,qCACC,eCWe,CDVf,WCUe,CDTf,gBCSe,CDRf,eAAA,CACA,iBAAA,CAED,wCACC,YAAA,CACA,UAAA,CACA,eAAA,CACA,WAAA,CACA,iBAAA,CAED,2CACC,eAAA,CACA,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,iBAAA,CACA,WAAA,CAED,wCACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,YAAA,CACA,UAAA,CAIF,kCACC,WAAA,CACA,qBAAA,CACA,eAAA,CACA,YAAA,CACA,wCACC,aAAA,CACA,cAAA,CACA,WC3Be,CD4Bf,YAAA,CACA,gBC7Be,CD8Bf,uCAAA,CACA,gBAAA,CACA,cAAA,CACA,cAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CACA,8BAAA,CACA,WAAA,CACA,4FAEC,8CAAA,CAED,gDACC,8DAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.app-settings-modal :deep(.modal-wrapper .modal-container) {\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n}\\n\\n.app-settings {\\n\\twidth: 100%;\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\tmin-width: 0;\\n\\t&__name {\\n\\t\\tmin-height: $clickable-area;\\n\\t\\theight: $clickable-area;\\n\\t\\tline-height: $clickable-area;\\n\\t\\tpadding-top: 4px; // Same as the close button top spacing\\n\\t\\ttext-align: center;\\n\\t}\\n\\t&__wrapper {\\n\\t\\tdisplay: flex;\\n\\t\\twidth: 100%;\\n\\t\\toverflow: hidden;\\n\\t\\theight: 100%;\\n\\t\\tposition: relative;\\n\\t}\\n\\t&__navigation {\\n\\t\\tmin-width: 200px;\\n\\t\\tmargin-right: 20px;\\n\\t\\toverflow-x: hidden;\\n\\t\\toverflow-y: auto;\\n\\t\\tposition: relative;\\n\\t\\theight: 100%;\\n\\t}\\n\\t&__content {\\n\\t\\tmax-width: 100vw;\\n\\t\\toverflow-y: auto;\\n\\t\\toverflow-x: hidden;\\n\\t\\tpadding: 24px;\\n\\t\\twidth: 100%;\\n\\t}\\n}\\n\\n.navigation-list {\\n\\theight: 100%;\\n\\tbox-sizing: border-box;\\n\\toverflow-y: auto;\\n\\tpadding: 12px;\\n\\t&__link {\\n\\t\\tdisplay: block;\\n\\t\\tfont-size: 16px;\\n\\t\\theight: $clickable-area;\\n\\t\\tmargin: 4px 0;\\n\\t\\tline-height: $clickable-area;\\n\\t\\tborder-radius: var(--border-radius-pill);\\n\\t\\tfont-weight: bold;\\n\\t\\tpadding: 0 20px;\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t\\tbackground-color: transparent;\\n\\t\\tborder: none;\\n\\t\\t&:hover,\\n\\t\\t&:focus {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t\\t&--active {\\n\\t\\t\\tbackground-color: var(--color-primary-element-light) !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},7294:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},4959:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,'.material-design-icon[data-v-697d9f14]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.modal-mask[data-v-697d9f14]{position:fixed;z-index:9998;top:0;left:0;display:block;width:100%;height:100%;background-color:rgba(0,0,0,.5)}.modal-mask--dark[data-v-697d9f14]{background-color:rgba(0,0,0,.92)}.modal-header[data-v-697d9f14]{position:absolute;z-index:10001;top:0;right:0;left:0;display:flex !important;align-items:center;justify-content:center;width:100%;height:50px;overflow:hidden;transition:opacity 250ms,visibility 250ms}.modal-header.invisible[style*=\"display:none\"][data-v-697d9f14],.modal-header.invisible[style*=\"display: none\"][data-v-697d9f14]{visibility:hidden}.modal-header .modal-name[data-v-697d9f14]{overflow-x:hidden;box-sizing:border-box;width:100%;padding:0 132px 0 12px;transition:padding ease 100ms;white-space:nowrap;text-overflow:ellipsis;color:#fff;font-size:14px;margin-bottom:0}@media only screen and (min-width: 1024px){.modal-header .modal-name[data-v-697d9f14]{padding-left:132px;text-align:center}}.modal-header .icons-menu[data-v-697d9f14]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end}.modal-header .icons-menu .header-close[data-v-697d9f14]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:3px;padding:0}.modal-header .icons-menu .play-pause-icons[data-v-697d9f14]{position:relative;width:50px;height:50px;margin:0;padding:0;cursor:pointer;border:none;background-color:rgba(0,0,0,0)}.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__pause[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__pause[data-v-697d9f14]{opacity:1;border-radius:22px;background-color:rgba(127,127,127,.25)}.modal-header .icons-menu .play-pause-icons__play[data-v-697d9f14],.modal-header .icons-menu .play-pause-icons__pause[data-v-697d9f14]{box-sizing:border-box;width:44px;height:44px;margin:3px;cursor:pointer;opacity:.7}.modal-header .icons-menu .header-actions[data-v-697d9f14]{color:#fff}.modal-header .icons-menu[data-v-697d9f14] .action-item{margin:3px}.modal-header .icons-menu[data-v-697d9f14] .action-item--single{box-sizing:border-box;width:44px;height:44px;cursor:pointer;background-position:center;background-size:22px}.modal-header .icons-menu[data-v-697d9f14] button{color:#fff}.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle{padding:0}.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle span,.modal-header .icons-menu[data-v-697d9f14] .action-item__menutoggle svg{width:var(--icon-size);height:var(--icon-size)}.modal-wrapper[data-v-697d9f14]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.modal-wrapper .prev[data-v-697d9f14],.modal-wrapper .next[data-v-697d9f14]{z-index:10000;display:flex !important;height:35vh;min-height:300px;position:absolute;transition:opacity 250ms,visibility 250ms;color:#fff}.modal-wrapper .prev[data-v-697d9f14]:focus-visible,.modal-wrapper .next[data-v-697d9f14]:focus-visible{box-shadow:0 0 0 2px var(--color-primary-element-text);background-color:var(--color-box-shadow)}.modal-wrapper .prev.invisible[style*=\"display:none\"][data-v-697d9f14],.modal-wrapper .prev.invisible[style*=\"display: none\"][data-v-697d9f14],.modal-wrapper .next.invisible[style*=\"display:none\"][data-v-697d9f14],.modal-wrapper .next.invisible[style*=\"display: none\"][data-v-697d9f14]{visibility:hidden}.modal-wrapper .prev[data-v-697d9f14]{left:2px}.modal-wrapper .next[data-v-697d9f14]{right:2px}.modal-wrapper .modal-container[data-v-697d9f14]{position:relative;display:flex;padding:0;transition:transform 300ms ease;border-radius:var(--border-radius-large);background-color:var(--color-main-background);color:var(--color-main-text);box-shadow:0 0 40px rgba(0,0,0,.2)}.modal-wrapper .modal-container__close[data-v-697d9f14]{position:absolute;top:4px;right:4px}.modal-wrapper .modal-container__content[data-v-697d9f14]{width:100%;overflow:auto}.modal-wrapper--small .modal-container[data-v-697d9f14]{width:400px;max-width:90%;max-height:90%}.modal-wrapper--normal .modal-container[data-v-697d9f14]{max-width:90%;width:600px;max-height:90%}.modal-wrapper--large .modal-container[data-v-697d9f14]{max-width:90%;width:900px;max-height:90%}.modal-wrapper--full .modal-container[data-v-697d9f14]{width:100%;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}@media only screen and (max-width: 512px){.modal-wrapper .modal-container[data-v-697d9f14]{max-width:initial;width:100%;max-height:initial;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}}.fade-enter-active[data-v-697d9f14],.fade-leave-active[data-v-697d9f14]{transition:opacity 250ms}.fade-enter[data-v-697d9f14],.fade-leave-to[data-v-697d9f14]{opacity:0}.fade-visibility-enter[data-v-697d9f14],.fade-visibility-leave-to[data-v-697d9f14]{visibility:hidden;opacity:0}.modal-in-enter-active[data-v-697d9f14],.modal-in-leave-active[data-v-697d9f14],.modal-out-enter-active[data-v-697d9f14],.modal-out-leave-active[data-v-697d9f14]{transition:opacity 250ms}.modal-in-enter[data-v-697d9f14],.modal-in-leave-to[data-v-697d9f14],.modal-out-enter[data-v-697d9f14],.modal-out-leave-to[data-v-697d9f14]{opacity:0}.modal-in-enter .modal-container[data-v-697d9f14],.modal-in-leave-to .modal-container[data-v-697d9f14]{transform:scale(0.9)}.modal-out-enter .modal-container[data-v-697d9f14],.modal-out-leave-to .modal-container[data-v-697d9f14]{transform:scale(1.1)}.modal-mask .play-pause-icons .progress-ring[data-v-697d9f14]{position:absolute;top:0;left:0;transform:rotate(-90deg)}.modal-mask .play-pause-icons .progress-ring .progress-ring__circle[data-v-697d9f14]{transition:100ms stroke-dashoffset;transform-origin:50% 50%;animation:progressring-697d9f14 linear var(--slideshow-duration) infinite;stroke-linecap:round;stroke-dashoffset:94.2477796077;stroke-dasharray:94.2477796077}.modal-mask .play-pause-icons--paused .icon-pause[data-v-697d9f14]{animation:breath-697d9f14 2s cubic-bezier(0.4, 0, 0.2, 1) infinite}.modal-mask .play-pause-icons--paused .progress-ring__circle[data-v-697d9f14]{animation-play-state:paused !important}@keyframes progressring-697d9f14{from{stroke-dashoffset:94.2477796077}to{stroke-dashoffset:0}}@keyframes breath-697d9f14{0%{opacity:1}50%{opacity:0}100%{opacity:1}}',\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcModal/NcModal.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,cAAA,CACA,YAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,WAAA,CACA,+BAAA,CACA,mCACC,gCAAA,CAIF,+BACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,OAAA,CACA,MAAA,CAGA,uBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WCuBe,CDtBf,eAAA,CACA,yCAAA,CAIA,iIAEC,iBAAA,CAGD,2CACC,iBAAA,CACA,qBAAA,CACA,UAAA,CACA,sBAAA,CACA,6BAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,cChBY,CDiBZ,eAAA,CAID,2CACC,2CACC,kBAAA,CACA,iBAAA,CAAA,CAIF,2CACC,iBAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,wBAAA,CAEA,yDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA,CAGD,6DACC,iBAAA,CACA,UC3Ba,CD4Bb,WC5Ba,CD6Bb,QAAA,CACA,SAAA,CACA,cAAA,CACA,WAAA,CACA,8BAAA,CAGC,8WAEC,SC9CU,CD+CV,kBAAA,CACA,sCCxDW,CD2Db,uIAEC,qBAAA,CACA,UCzEa,CD0Eb,WC1Ea,CD2Eb,UAAA,CACA,cAAA,CACA,UC3Da,CD+Df,2DACC,UAAA,CAGD,yDACC,UAAA,CAEA,iEACC,qBAAA,CACA,UC1Fa,CD2Fb,WC3Fa,CD4Fb,cAAA,CACA,0BAAA,CACA,oBAAA,CAIF,kDAEC,UAAA,CAID,oEACC,SAAA,CACA,iJACC,sBAAA,CACA,uBAAA,CAMJ,gCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,qBAAA,CACA,UAAA,CACA,WAAA,CAGA,4EAEC,aAAA,CAEA,uBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,yCAAA,CAGA,UAAA,CAEA,wGAEC,sDAAA,CACA,wCAAA,CAOD,8RAEC,iBAAA,CAGF,sCACC,QAAA,CAED,sCACC,SAAA,CAID,iDACC,iBAAA,CACA,YAAA,CACA,SAAA,CACA,+BAAA,CACA,wCAAA,CACA,6CAAA,CACA,4BAAA,CACA,kCAAA,CAEA,wDACC,iBAAA,CACA,OAAA,CACA,SAAA,CAGD,0DACC,UAAA,CACA,aAAA,CAMD,wDACC,WAAA,CACA,aAAA,CACA,cAAA,CAID,yDACC,aAAA,CACA,WAAA,CACA,cAAA,CAID,wDACC,aAAA,CACA,WAAA,CACA,cAAA,CAID,uDACC,UAAA,CACA,wCAAA,CACA,iBAAA,CACA,QCrLa,CDsLb,eAAA,CAKF,0CACC,iDACC,iBAAA,CACA,UAAA,CACA,kBAAA,CACA,wCAAA,CACA,iBAAA,CACA,QClMa,CDmMb,eAAA,CAAA,CAMH,wEAEC,wBAAA,CAGD,6DAEC,SAAA,CAGD,mFAEC,iBAAA,CACA,SAAA,CAGD,kKAIC,wBAAA,CAGD,4IAIC,SAAA,CAGD,uGAEC,oBAAA,CAGD,yGAEC,oBAAA,CAQA,8DACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CACA,qFACC,kCAAA,CACA,wBAAA,CACA,yEAAA,CAEA,oBAAA,CACA,+BAAA,CACA,8BAAA,CAID,mEACC,kEAAA,CAED,8EACC,sCAAA,CAMH,iCACC,KACC,+BAAA,CAED,GACC,mBAAA,CAAA,CAIF,2BACC,GACC,SAAA,CAED,IACC,SAAA,CAED,KACC,SAAA,CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.modal-mask {\\n\\tposition: fixed;\\n\\tz-index: 9998;\\n\\ttop: 0;\\n\\tleft: 0;\\n\\tdisplay: block;\\n\\twidth: 100%;\\n\\theight: 100%;\\n\\tbackground-color: rgba(0, 0, 0, .5);\\n\\t&--dark {\\n\\t\\tbackground-color: rgba(0, 0, 0, .92);\\n\\t}\\n}\\n\\n.modal-header {\\n\\tposition: absolute;\\n\\tz-index: 10001;\\n\\ttop: 0;\\n\\tright: 0;\\n\\tleft: 0;\\n\\t// prevent vue show to use display:none and reseting\\n\\t// the circle animation loop\\n\\tdisplay: flex !important;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\twidth: 100%;\\n\\theight: $header-height;\\n\\toverflow: hidden;\\n\\ttransition: opacity 250ms,\\n\\t\\tvisibility 250ms;\\n\\n\\t// replace display by visibility\\n\\t&.invisible[style*='display:none'],\\n\\t&.invisible[style*='display: none'] {\\n\\t\\tvisibility: hidden;\\n\\t}\\n\\n\\t.modal-name {\\n\\t\\toverflow-x: hidden;\\n\\t\\tbox-sizing: border-box;\\n\\t\\twidth: 100%;\\n\\t\\tpadding: 0 #{$clickable-area * 3} 0 12px; // maximum actions is 3\\n\\t\\ttransition: padding ease 100ms;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\tcolor: #fff;\\n\\t\\tfont-size: $icon-margin;\\n\\t\\tmargin-bottom: 0;\\n\\t}\\n\\n\\t// On wider screens the name can be centered\\n\\t@media only screen and (min-width: $breakpoint-mobile) {\\n\\t\\t.modal-name {\\n\\t\\t\\tpadding-left: #{$clickable-area * 3}; // maximum actions is 3\\n\\t\\t\\ttext-align: center;\\n\\t\\t}\\n\\t}\\n\\n\\t.icons-menu {\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: flex-end;\\n\\n\\t\\t.header-close {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tmargin: math.div($header-height - $clickable-area, 2);\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\n\\t\\t.play-pause-icons {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\twidth: $header-height;\\n\\t\\t\\theight: $header-height;\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\tborder: none;\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t\\t&:hover,\\n\\t\\t\\t&:focus {\\n\\t\\t\\t\\t.play-pause-icons__play,\\n\\t\\t\\t\\t.play-pause-icons__pause {\\n\\t\\t\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\t\\t\\tborder-radius: math.div($clickable-area, 2);\\n\\t\\t\\t\\t\\tbackground-color: $icon-focus-bg;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\t&__play,\\n\\t\\t\\t&__pause {\\n\\t\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\tmargin: math.div($header-height - $clickable-area, 2);\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.header-actions {\\n\\t\\t\\tcolor: white;\\n\\t\\t}\\n\\n\\t\\t&:deep() .action-item {\\n\\t\\t\\tmargin: math.div($header-height - $clickable-area, 2);\\n\\n\\t\\t\\t&--single {\\n\\t\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t\\tbackground-position: center;\\n\\t\\t\\t\\tbackground-size: 22px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t:deep(button) {\\n\\t\\t\\t// force white instead of default main text\\n\\t\\t\\tcolor: #fff;\\n\\t\\t}\\n\\n\\t\\t// Force the Actions menu icon to be the same size as other icons\\n\\t\\t&:deep(.action-item__menutoggle) {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tspan, svg {\\n\\t\\t\\t\\twidth: var(--icon-size);\\n\\t\\t\\t\\theight: var(--icon-size);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\\n.modal-wrapper {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\tbox-sizing: border-box;\\n\\twidth: 100%;\\n\\theight: 100%;\\n\\n\\t/* Navigation buttons */\\n\\t.prev,\\n\\t.next {\\n\\t\\tz-index: 10000;\\n\\t\\t// ignore display: none\\n\\t\\tdisplay: flex !important;\\n\\t\\theight: 35vh;\\n\\t\\tmin-height: 300px;\\n\\t\\tposition: absolute;\\n\\t\\ttransition: opacity 250ms,\\n\\t\\t\\tvisibility 250ms;\\n\\t\\t// hover the mask\\n\\t\\tcolor: white;\\n\\n\\t\\t&:focus-visible {\\n\\t\\t\\t// Override NcButton focus styles\\n\\t\\t\\tbox-shadow: 0 0 0 2px var(--color-primary-element-text);\\n\\t\\t\\tbackground-color: var(--color-box-shadow);\\n\\t\\t}\\n\\n\\t\\t// we want to keep the elements on page\\n\\t\\t// even if hidden to avoid having a unbalanced\\n\\t\\t// centered content\\n\\t\\t// replace display by visibility\\n\\t\\t&.invisible[style*='display:none'],\\n\\t\\t&.invisible[style*='display: none'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t}\\n\\t}\\n\\t.prev {\\n\\t\\tleft: 2px;\\n\\t}\\n\\t.next {\\n\\t\\tright: 2px;\\n\\t}\\n\\n\\t/* Content */\\n\\t.modal-container {\\n\\t\\tposition: relative;\\n\\t\\tdisplay: flex;\\n\\t\\tpadding: 0;\\n\\t\\ttransition: transform 300ms ease;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbox-shadow: 0 0 40px rgba(0, 0, 0, .2);\\n\\n\\t\\t&__close {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: 4px;\\n\\t\\t\\tright: 4px;\\n\\t\\t}\\n\\n\\t\\t&__content {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\toverflow: auto; // avoids unecessary hacks if the content should be bigger than the modal\\n\\t\\t}\\n\\t}\\n\\n\\t// Sizing\\n\\t&--small {\\n\\t\\t.modal-container {\\n\\t\\t\\twidth: 400px;\\n\\t\\t\\tmax-width: 90%;\\n\\t\\t\\tmax-height: 90%;\\n\\t\\t}\\n\\t}\\n\\t&--normal {\\n\\t\\t.modal-container {\\n\\t\\t\\tmax-width: 90%;\\n\\t\\t\\twidth: 600px;\\n\\t\\t\\tmax-height: 90%;\\n\\t\\t}\\n\\t}\\n\\t&--large {\\n\\t\\t.modal-container {\\n\\t\\t\\tmax-width: 90%;\\n\\t\\t\\twidth: 900px;\\n\\t\\t\\tmax-height: 90%;\\n\\t\\t}\\n\\t}\\n\\t&--full {\\n\\t\\t.modal-container {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: calc(100% - var(--header-height));\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: $header-height;\\n\\t\\t\\tborder-radius: 0;\\n\\t\\t}\\n\\t}\\n\\n\\t// Make modal full screen on mobile\\n\\t@media only screen and (max-width: math.div($breakpoint-mobile, 2)) {\\n\\t\\t.modal-container {\\n\\t\\t\\tmax-width: initial;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-height: initial;\\n\\t\\t\\theight: calc(100% - var(--header-height));\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: $header-height;\\n\\t\\t\\tborder-radius: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n/* TRANSITIONS */\\n.fade-enter-active,\\n.fade-leave-active {\\n\\ttransition: opacity 250ms;\\n}\\n\\n.fade-enter,\\n.fade-leave-to {\\n\\topacity: 0;\\n}\\n\\n.fade-visibility-enter,\\n.fade-visibility-leave-to {\\n\\tvisibility: hidden;\\n\\topacity: 0;\\n}\\n\\n.modal-in-enter-active,\\n.modal-in-leave-active,\\n.modal-out-enter-active,\\n.modal-out-leave-active {\\n\\ttransition: opacity 250ms;\\n}\\n\\n.modal-in-enter,\\n.modal-in-leave-to,\\n.modal-out-enter,\\n.modal-out-leave-to {\\n\\topacity: 0;\\n}\\n\\n.modal-in-enter .modal-container,\\n.modal-in-leave-to .modal-container {\\n\\ttransform: scale(.9);\\n}\\n\\n.modal-out-enter .modal-container,\\n.modal-out-leave-to .modal-container {\\n\\ttransform: scale(1.1);\\n}\\n\\n// animated circle\\n$radius: 15;\\n$pi: 3.14159265358979;\\n\\n.modal-mask .play-pause-icons {\\n\\t.progress-ring {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\ttransform: rotate(-90deg);\\n\\t\\t.progress-ring__circle {\\n\\t\\t\\ttransition: 100ms stroke-dashoffset;\\n\\t\\t\\ttransform-origin: 50% 50%; // axis compensation\\n\\t\\t\\tanimation: progressring linear var(--slideshow-duration) infinite;\\n\\n\\t\\t\\tstroke-linecap: round;\\n\\t\\t\\tstroke-dashoffset: $radius * 2 * $pi; // radius * 2 * PI\\n\\t\\t\\tstroke-dasharray: $radius * 2 * $pi; // radius * 2 * PI\\n\\t\\t}\\n\\t}\\n\\t&--paused {\\n\\t\\t.icon-pause {\\n\\t\\t\\tanimation: breath 2s cubic-bezier(.4, 0, .2, 1) infinite;\\n\\t\\t}\\n\\t\\t.progress-ring__circle {\\n\\t\\t\\tanimation-play-state: paused !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n// keyframes get scoped too and break the animation name, we need them unscoped\\n@keyframes progressring {\\n\\tfrom {\\n\\t\\tstroke-dashoffset: $radius * 2 * $pi; // radius * 2 * PI\\n\\t}\\n\\tto {\\n\\t\\tstroke-dashoffset: 0;\\n\\t}\\n}\\n\\n@keyframes breath {\\n\\t0% {\\n\\t\\topacity: 1;\\n\\t}\\n\\t50% {\\n\\t\\topacity: 0;\\n\\t}\\n\\t100% {\\n\\t\\topacity: 1;\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),n=a.n(o),i=a(3645),r=a.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a=\"\",o=void 0!==t[5];return t[4]&&(a+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(a+=\"@media \".concat(t[2],\" {\")),o&&(a+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),a+=e(t),o&&(a+=\"}\"),t[2]&&(a+=\"}\"),t[4]&&(a+=\"}\"),a})).join(\"\")},t.i=function(e,a,o,n,i){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(o)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=i),a&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=a):d[2]=a),n&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=n):d[4]=\"\".concat(n)),t.push(d))}},t}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],a=e[3];if(!a)return t;if(\"function\"==typeof btoa){var o=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),n=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(o),i=\"/*# \".concat(n,\" */\");return[t].concat([i]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function a(e){for(var a=-1,o=0;o{\"use strict\";var t={};e.exports=function(e,a){var o=function(e){if(void 0===t[e]){var a=document.querySelector(e);if(window.HTMLIFrameElement&&a instanceof window.HTMLIFrameElement)try{a=a.contentDocument.head}catch(e){a=null}t[e]=a}return t[e]}(e);if(!o)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");o.appendChild(a)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,a)=>{\"use strict\";e.exports=function(e){var t=a.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(a){!function(e,t,a){var o=\"\";a.supports&&(o+=\"@supports (\".concat(a.supports,\") {\")),a.media&&(o+=\"@media \".concat(a.media,\" {\"));var n=void 0!==a.layer;n&&(o+=\"@layer\".concat(a.layer.length>0?\" \".concat(a.layer):\"\",\" {\")),o+=a.css,n&&(o+=\"}\"),a.media&&(o+=\"}\"),a.supports&&(o+=\"}\");var i=a.sourceMap;i&&\"undefined\"!=typeof btoa&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),t.styleTagTransform(o,e,t.options)}(t,e,a)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},7984:()=>{},2102:()=>{},9989:()=>{},2405:()=>{},1900:(e,t,a)=>{\"use strict\";function o(e,t,a,o,n,i,r,s){var l,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),o&&(c.functional=!0),i&&(c._scopeId=\"data-v-\"+i),r?(l=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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=s?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var d=c.render;c.render=function(e,t){return l.call(t),d(e,t)}}else{var m=c.beforeCreate;c.beforeCreate=m?[].concat(m,l):[l]}return{exports:e,options:c}}a.d(t,{Z:()=>o})},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},8618:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/Close.vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function a(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,a),i.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var o in t)a.o(t,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},a.nc=void 0;var o={};return(()=>{\"use strict\";a.r(o),a.d(o,{default:()=>x});var e=a(4390),t=a(334),n=a(932);const i=require(\"debounce\");var r=a.n(i);function s(e){return function(e){if(Array.isArray(e))return l(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[\"@@iterator\"])return Array.from(e)}(e)||function(e,t){if(!e)return;if(\"string\"==typeof e)return l(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===a&&e.constructor&&(a=e.constructor.name);if(\"Map\"===a||\"Set\"===a)return Array.from(e);if(\"Arguments\"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a))return l(e,t)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,o=new Array(t);a(()=>{\"use strict\";var e={2482:(e,t,n)=>{n.d(t,{Z:()=>s});var o=n(7537),r=n.n(o),i=n(3645),a=n.n(i)()(r());a.push([e.id,\".material-design-icon[data-v-006b9071]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-settings-section[data-v-006b9071]{margin-bottom:80px}.app-settings-section__name[data-v-006b9071]{font-size:20px;margin:0;padding:20px 0;font-weight:bold;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSettingsSection/NcAppSettingsSection.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,uCACC,kBAAA,CACA,6CACC,cAAA,CACA,QAAA,CACA,cAAA,CACA,gBAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.app-settings-section {\\n\\tmargin-bottom: 80px;\\n\\t&__name {\\n\\t\\tfont-size: 20px;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 20px 0;\\n\\t\\tfont-weight: bold;\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=a},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",o=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),o&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),o&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,o,r,i){\"string\"==typeof e&&(e=[[null,e,void 0]]);var a={};if(o)for(var s=0;s0?\" \".concat(u[5]):\"\",\" {\").concat(u[1],\"}\")),u[5]=i),n&&(u[2]?(u[1]=\"@media \".concat(u[2],\" {\").concat(u[1],\"}\"),u[2]=n):u[2]=n),r&&(u[4]?(u[1]=\"@supports (\".concat(u[4],\") {\").concat(u[1],\"}\"),u[4]=r):u[4]=\"\".concat(r)),t.push(u))}},t}},7537:e=>{e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if(\"function\"==typeof btoa){var o=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),r=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(o),i=\"/*# \".concat(r,\" */\");return[t].concat([i]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{var t=[];function n(e){for(var n=-1,o=0;o{var t={};e.exports=function(e,n){var o=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!o)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");o.appendChild(n)}},9216:e=>{e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var o=\"\";n.supports&&(o+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(o+=\"@media \".concat(n.media,\" {\"));var r=void 0!==n.layer;r&&(o+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),o+=n.css,r&&(o+=\"}\"),n.media&&(o+=\"}\"),n.supports&&(o+=\"}\");var i=n.sourceMap;i&&\"undefined\"!=typeof btoa&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),t.styleTagTransform(o,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.nc=void 0;var o={};return(()=>{n.r(o),n.d(o,{default:()=>g});const e={name:\"NcAppSettingsSection\",props:{name:{type:String,required:!0},id:{type:String,required:!0,validator:function(e){return/^[a-z0-9\\-_]+$/.test(e)}}},computed:{htmlId:function(){return\"settings-section_\"+this.id}}};var t=n(3379),r=n.n(t),i=n(7795),a=n.n(i),s=n(569),c=n.n(s),p=n(3565),u=n.n(p),l=n(9216),d=n.n(l),f=n(4589),v=n.n(f),m=n(2482),A={};A.styleTagTransform=v(),A.setAttributes=u(),A.insert=c().bind(null,\"head\"),A.domAPI=a(),A.insertStyleElement=d();r()(m.Z,A);m.Z&&m.Z.locals&&m.Z.locals;var h=function(e,t,n,o,r,i,a,s){var c,p=\"function\"==typeof e?e.options:e;if(t&&(p.render=t,p.staticRenderFns=n,p._compiled=!0),o&&(p.functional=!0),i&&(p._scopeId=\"data-v-\"+i),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__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},p._ssrRegister=c):r&&(c=s?function(){r.call(this,(p.functional?this.parent:this).$root.$options.shadowRoot)}:r),c)if(p.functional){p._injectStyles=c;var u=p.render;p.render=function(e,t){return c.call(t),u(e,t)}}else{var l=p.beforeCreate;p.beforeCreate=l?[].concat(l,c):[c]}return{exports:e,options:p}}(e,(function(){var e=this,t=e._self._c;return t(\"div\",{staticClass:\"app-settings-section\",attrs:{id:e.htmlId}},[t(\"h3\",{staticClass:\"app-settings-section__name\"},[e._v(\"\\n\\t\\t\"+e._s(e.name)+\"\\n\\t\")]),e._v(\" \"),e._t(\"default\")],2)}),[],!1,null,\"006b9071\",null);const g=h.exports})(),o})()));\n//# sourceMappingURL=NcAppSettingsSection.js.map","/*! For license information please see NcBreadcrumb.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcBreadcrumb\"]=t())}(self,(()=>(()=>{var e={7664:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>q});var o=a(3089),i=a(2297),n=a(1205),s=a(932),r=a(2734),l=a.n(r),c=a(1441),m=a.n(c);function u(e){return u=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},u(e)}function d(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function p(e){for(var t=1;te.length)&&(t=e.length);for(var a=0,o=new Array(t);a0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var a=t.querySelector(k);if(a){var o=g(this.$refs.menu.querySelectorAll(k)).indexOf(a);o>-1&&(this.focusIndex=o,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(k)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(k).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(k).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,a=(this.$slots.default||[]).filter((function(e){var t,a;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)})),o=a.every((function(e){var t,a,o,i;return\"NcActionLink\"===(null!==(t=null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)&&void 0!==t?t:null==e||null===(o=e.componentOptions)||void 0===o?void 0:o.tag)&&(null==e||null===(i=e.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i||null===(i=i.href)||void 0===i?void 0:i.startsWith(window.location.origin))})),i=a.filter(this.isValidSingleAction);if(this.forceMenu&&i.length>0&&this.inline>0&&(l().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),i=[]),0!==a.length){var n=function(a){var o,i,n,s,r,l,c,m,u,d,h,g,v=(null==a||null===(o=a.data)||void 0===o||null===(o=o.scopedSlots)||void 0===o||null===(o=o.icon())||void 0===o?void 0:o[0])||e(\"span\",{class:[\"icon\",null==a||null===(i=a.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i?void 0:i.icon]}),k=null==a||null===(n=a.componentOptions)||void 0===n||null===(n=n.listeners)||void 0===n?void 0:n.click,y=null==a||null===(s=a.componentOptions)||void 0===s||null===(s=s.children)||void 0===s||null===(s=s[0])||void 0===s||null===(s=s.text)||void 0===s||null===(r=s.trim)||void 0===r?void 0:r.call(s),f=(null==a||null===(l=a.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||y,A=t.forceName?y:\"\",C=null==a||null===(c=a.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||C||(C=y),e(\"NcButton\",{class:[\"action-item action-item--single\",null==a||null===(m=a.data)||void 0===m?void 0:m.staticClass,null==a||null===(u=a.data)||void 0===u?void 0:u.class],attrs:{\"aria-label\":f,title:C},ref:null==a||null===(d=a.data)||void 0===d?void 0:d.ref,props:p({type:t.type||(A?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==a||null===(h=a.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==a||null===(g=a.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!k&&{click:function(e){k&&k(e)}})},[e(\"template\",{slot:\"icon\"},[v]),A])},s=function(a){var i,n,s=(null===(i=t.$slots.icon)||void 0===i?void 0:i[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(n=t.$refs.menuButton)||void 0===n?void 0:n.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":o?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[s]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:o?null:\"menu\"}},[a])])])};if(1===a.length&&1===i.length&&!this.forceMenu)return n(i[0]);if(i.length>0&&this.inline>0){var r=i.slice(0,this.inline),c=a.filter((function(e){return!r.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(r.map(n)),[c.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[s(c)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[s(a)])}}};var f=a(3379),A=a.n(f),C=a(7795),P=a.n(C),b=a(569),S=a.n(b),w=a(3565),N=a.n(w),j=a(9216),O=a.n(j),E=a(4589),x=a.n(E),z=a(9546),B={};B.styleTagTransform=x(),B.setAttributes=N(),B.insert=S().bind(null,\"head\"),B.domAPI=P(),B.insertStyleElement=O();A()(z.Z,B);z.Z&&z.Z.locals&&z.Z.locals;var F=a(5155),M={};M.styleTagTransform=x(),M.setAttributes=N(),M.insert=S().bind(null,\"head\"),M.domAPI=P(),M.insertStyleElement=O();A()(F.Z,M);F.Z&&F.Z.locals&&F.Z.locals;var T=a(1900),G=a(5727),D=a.n(G),R=(0,T.Z)(y,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(R);const q=R.exports},3089:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function i(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function n(e){for(var t=1;tN});const r={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,a,o,i=this,r=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(a=t.trim)||void 0===a?void 0:a.call(t),l=!!r,c=null===(o=this.$slots)||void 0===o?void 0:o.icon;r||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:r,ariaLabel:this.ariaLabel},this);var m=function(){var t,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=a.navigate,m=a.isActive,u=a.isExactActive;return e(i.to||!i.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":c&&!l,\"button-vue--text-only\":l&&!c,\"button-vue--icon-and-text\":c&&l},s(t,\"button-vue--vue-\".concat(i.realType),i.realType),s(t,\"button-vue--wide\",i.wide),s(t,\"button-vue--\".concat(i.flexAlignment),\"center\"!==i.flexAlignment),s(t,\"button-vue--reverse\",i.isReverseAligned),s(t,\"active\",m),s(t,\"router-link-exact-active\",u),t)],attrs:n({\"aria-label\":i.ariaLabel,\"aria-pressed\":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?\"button\":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?\"_self\":null,rel:!i.to&&i.href?\"nofollow noreferrer noopener\":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:n(n({},i.$listeners),{},{click:function(e){\"boolean\"==typeof i.pressed&&i.$emit(\"update:pressed\",!i.pressed),i.$emit(\"click\",e),null==o||o(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[c?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":i.ariaHidden}},[i.$slots.icon]):null,l?e(\"span\",{class:\"button-vue__text\"},[r]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:m}}):m()}};var l=a(3379),c=a.n(l),m=a(7795),u=a.n(m),d=a(569),p=a.n(d),h=a(3565),g=a.n(h),v=a(9216),k=a.n(v),y=a(4589),f=a.n(y),A=a(7294),C={};C.styleTagTransform=f(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=u(),C.insertStyleElement=k();c()(A.Z,C);A.Z&&A.Z.locals&&A.Z.locals;var P=a(1900),b=a(2102),S=a.n(b),w=(0,P.Z)(r,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof S()&&S()(w);const N=w.exports},2297:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>E});var o=a(9454),i=a(4505),n=a(1206);function s(e){return s=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},s(e)}function r(){r=function(){return e};var e={},t=Object.prototype,a=t.hasOwnProperty,o=Object.defineProperty||function(e,t,a){e[t]=a.value},i=\"function\"==typeof Symbol?Symbol:{},n=i.iterator||\"@@iterator\",l=i.asyncIterator||\"@@asyncIterator\",c=i.toStringTag||\"@@toStringTag\";function m(e,t,a){return Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{m({},\"\")}catch(e){m=function(e,t,a){return e[t]=a}}function u(e,t,a,i){var n=t&&t.prototype instanceof h?t:h,s=Object.create(n.prototype),r=new j(i||[]);return o(s,\"_invoke\",{value:b(e,a,r)}),s}function d(e,t,a){try{return{type:\"normal\",arg:e.call(t,a)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=u;var p={};function h(){}function g(){}function v(){}var k={};m(k,n,(function(){return this}));var y=Object.getPrototypeOf,f=y&&y(y(O([])));f&&f!==t&&a.call(f,n)&&(k=f);var A=v.prototype=h.prototype=Object.create(k);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){m(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function i(o,n,r,l){var c=d(e[o],e,n);if(\"throw\"!==c.type){var m=c.arg,u=m.value;return u&&\"object\"==s(u)&&a.call(u,\"__await\")?t.resolve(u.__await).then((function(e){i(\"next\",e,r,l)}),(function(e){i(\"throw\",e,r,l)})):t.resolve(u).then((function(e){m.value=e,r(m)}),(function(e){return i(\"throw\",e,r,l)}))}l(c.arg)}var n;o(this,\"_invoke\",{value:function(e,a){function o(){return new t((function(t,o){i(e,a,t,o)}))}return n=n?n.then(o,o):o()}})}function b(e,t,a){var o=\"suspendedStart\";return function(i,n){if(\"executing\"===o)throw new Error(\"Generator is already running\");if(\"completed\"===o){if(\"throw\"===i)throw n;return E()}for(a.method=i,a.arg=n;;){var s=a.delegate;if(s){var r=S(s,a);if(r){if(r===p)continue;return r}}if(\"next\"===a.method)a.sent=a._sent=a.arg;else if(\"throw\"===a.method){if(\"suspendedStart\"===o)throw o=\"completed\",a.arg;a.dispatchException(a.arg)}else\"return\"===a.method&&a.abrupt(\"return\",a.arg);o=\"executing\";var l=d(e,t,a);if(\"normal\"===l.type){if(o=a.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:a.done}}\"throw\"===l.type&&(o=\"completed\",a.method=\"throw\",a.arg=l.arg)}}}function S(e,t){var a=t.method,o=e.iterator[a];if(void 0===o)return t.delegate=null,\"throw\"===a&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==a&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+a+\"' method\")),p;var i=d(o,e.iterator,t.arg);if(\"throw\"===i.type)return t.method=\"throw\",t.arg=i.arg,t.delegate=null,p;var n=i.arg;return n?n.done?(t[e.resultName]=n.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):n:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function j(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(w,this),this.reset(!0)}function O(e){if(e){var t=e[n];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function t(){for(;++o=0;--i){var n=this.tryEntries[i],s=n.completion;if(\"root\"===n.tryLoc)return o(\"end\");if(n.tryLoc<=this.prev){var r=a.call(n,\"catchLoc\"),l=a.call(n,\"finallyLoc\");if(r&&l){if(this.prev=0;--o){var i=this.tryEntries[o];if(i.tryLoc<=this.prev&&a.call(i,\"finallyLoc\")&&this.prev=0;--t){var a=this.tryEntries[t];if(a.finallyLoc===e)return this.complete(a.completion,a.afterLoc),N(a),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var a=this.tryEntries[t];if(a.tryLoc===e){var o=a.completion;if(\"throw\"===o.type){var i=o.arg;N(a)}return i}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,a){return this.delegate={iterator:O(e),resultName:t,nextLoc:a},\"next\"===this.method&&(this.arg=void 0),p}},e}function l(e,t,a,o,i,n,s){try{var r=e[n](s),l=r.value}catch(e){return void a(e)}r.done?t(l):Promise.resolve(l).then(o,i)}const c={name:\"NcPopover\",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=r().mark((function e(){var a,o;return r().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(o=null===(a=t.$refs.popover)||void 0===a||null===(a=a.$refs.popperContent)||void 0===a?void 0:a.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,i.createFocusTrap)(o,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,n.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,a=arguments;return new Promise((function(o,i){var n=e.apply(t,a);function s(e){l(n,o,i,s,r,\"next\",e)}function r(e){l(n,o,i,s,r,\"throw\",e)}s(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},m=c;var u=a(3379),d=a.n(u),p=a(7795),h=a.n(p),g=a(569),v=a.n(g),k=a(3565),y=a.n(k),f=a(9216),A=a.n(f),C=a(4589),P=a.n(C),b=a(1625),S={};S.styleTagTransform=P(),S.setAttributes=y(),S.insert=v().bind(null,\"head\"),S.domAPI=h(),S.insertStyleElement=A();d()(b.Z,S);b.Z&&b.Z.locals&&b.Z.locals;var w=a(1900),N=a(2405),j=a.n(N),O=(0,w.Z)(m,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof j()&&j()(O);const E=O.exports},932:(e,t,a)=>{\"use strict\";a.d(t,{t:()=>s});var o=a(7931),i=(0,o.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var a in e.translations)e.translations[a].pluralId?t[a]={msgid:a,msgid_plural:e.translations[a].pluralId,msgstr:e.translations[a].msgstr}:t[a]={msgid:a,msgstr:[e.translations[a]]};i.addTranslation(e.locale,{translations:{\"\":t}})}));var n=i.build(),s=(n.ngettext.bind(n),n.gettext.bind(n))},1205:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>o});const o=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},1206:(e,t,a)=>{\"use strict\";a.d(t,{L:()=>o});var o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},9546:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>r});var o=a(7537),i=a.n(o),n=a(3645),s=a.n(n)()(i());s.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const r=s},5155:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>r});var o=a(7537),i=a.n(o),n=a(3645),s=a.n(n)()(i());s.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const r=s},8066:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>r});var o=a(7537),i=a.n(o),n=a(3645),s=a.n(n)()(i());s.push([e.id,\".material-design-icon[data-v-4daa022a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.vue-crumb[data-v-4daa022a]{background-image:none;display:inline-flex;height:44px;padding:0}.vue-crumb[data-v-4daa022a]:last-child{max-width:210px;font-weight:bold}.vue-crumb:last-child .vue-crumb__separator[data-v-4daa022a]{display:none}.vue-crumb>a[data-v-4daa022a]:hover,.vue-crumb>a[data-v-4daa022a]:focus{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb--hidden[data-v-4daa022a]{display:none}.vue-crumb.vue-crumb--hovered>a[data-v-4daa022a]{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb__separator[data-v-4daa022a]{padding:0;color:var(--color-text-maxcontrast)}.vue-crumb>a[data-v-4daa022a]{overflow:hidden;color:var(--color-text-maxcontrast);padding:12px;min-width:44px;max-width:100%;border-radius:var(--border-radius-pill);align-items:center;display:inline-flex;justify-content:center}.vue-crumb>a>span[data-v-4daa022a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item{max-width:100%}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue{padding:0 4px 0 16px}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue__wrapper{flex-direction:row-reverse}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item.action-item--open .action-item__menutoggle{background-color:var(--color-background-dark);color:var(--color-main-text)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcBreadcrumb/NcBreadcrumb.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,4BACC,qBAAA,CACA,mBAAA,CACA,WCmBgB,CDlBhB,SAAA,CAEA,uCACC,eAAA,CACA,gBAAA,CAGA,6DACC,YAAA,CAKF,wEAEC,6CAAA,CACA,4BAAA,CAGD,oCACC,YAAA,CAGD,iDACC,6CAAA,CACA,4BAAA,CAGD,uCACC,SAAA,CACA,mCAAA,CAGD,8BACC,eAAA,CACA,mCAAA,CACA,YAAA,CACA,cCnBe,CDoBf,cAAA,CACA,uCAAA,CACA,kBAAA,CACA,mBAAA,CACA,sBAAA,CAEA,mCACC,eAAA,CACA,sBAAA,CACA,kBAAA,CAMF,wDAEC,cAAA,CAEA,oEACC,oBAAA,CAEA,6EACC,0BAAA,CAKF,mGACC,6CAAA,CACA,4BAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.vue-crumb {\\n\\tbackground-image: none;\\n\\tdisplay: inline-flex;\\n\\theight: $clickable-area;\\n\\tpadding: 0;\\n\\n\\t&:last-child {\\n\\t\\tmax-width: 210px;\\n\\t\\tfont-weight: bold;\\n\\n\\t\\t// Don't show breadcrumb separator for last crumb\\n\\t\\t.vue-crumb__separator {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t// Hover and focus effect for crumbs\\n\\t& > a:hover,\\n\\t& > a:focus {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&--hidden {\\n\\t\\tdisplay: none;\\n\\t}\\n\\n\\t&#{&}--hovered > a {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&__separator {\\n\\t\\tpadding: 0;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t> a {\\n\\t\\toverflow: hidden;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tpadding: 12px;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tmax-width: 100%;\\n\\t\\tborder-radius: var(--border-radius-pill);\\n\\t\\talign-items: center;\\n\\t\\tdisplay: inline-flex;\\n\\t\\tjustify-content: center;\\n\\n\\t\\t> span {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\t}\\n\\n\\t// Adjust action item appearance for crumbs with actions\\n\\t// to match other crumbs\\n\\t&:not(.dropdown) :deep(.action-item) {\\n\\t\\t// Adjustments necessary to correctly shrink on small screens\\n\\t\\tmax-width: 100%;\\n\\n\\t\\t.button-vue {\\n\\t\\t\\tpadding: 0 4px 0 16px;\\n\\n\\t\\t\\t&__wrapper {\\n\\t\\t\\t\\tflex-direction: row-reverse;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Adjust the background of the last crumb when the action is open\\n\\t\\t&.action-item--open .action-item__menutoggle {\\n\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const r=s},7294:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>r});var o=a(7537),i=a.n(o),n=a(3645),s=a.n(n)()(i());s.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const r=s},1625:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>r});var o=a(7537),i=a.n(o),n=a(3645),s=a.n(n)()(i());s.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const r=s},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a=\"\",o=void 0!==t[5];return t[4]&&(a+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(a+=\"@media \".concat(t[2],\" {\")),o&&(a+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),a+=e(t),o&&(a+=\"}\"),t[2]&&(a+=\"}\"),t[4]&&(a+=\"}\"),a})).join(\"\")},t.i=function(e,a,o,i,n){\"string\"==typeof e&&(e=[[null,e,void 0]]);var s={};if(o)for(var r=0;r0?\" \".concat(m[5]):\"\",\" {\").concat(m[1],\"}\")),m[5]=n),a&&(m[2]?(m[1]=\"@media \".concat(m[2],\" {\").concat(m[1],\"}\"),m[2]=a):m[2]=a),i&&(m[4]?(m[1]=\"@supports (\".concat(m[4],\") {\").concat(m[1],\"}\"),m[4]=i):m[4]=\"\".concat(i)),t.push(m))}},t}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],a=e[3];if(!a)return t;if(\"function\"==typeof btoa){var o=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),i=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(o),n=\"/*# \".concat(i,\" */\");return[t].concat([n]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function a(e){for(var a=-1,o=0;o{\"use strict\";var t={};e.exports=function(e,a){var o=function(e){if(void 0===t[e]){var a=document.querySelector(e);if(window.HTMLIFrameElement&&a instanceof window.HTMLIFrameElement)try{a=a.contentDocument.head}catch(e){a=null}t[e]=a}return t[e]}(e);if(!o)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");o.appendChild(a)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,a)=>{\"use strict\";e.exports=function(e){var t=a.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(a){!function(e,t,a){var o=\"\";a.supports&&(o+=\"@supports (\".concat(a.supports,\") {\")),a.media&&(o+=\"@media \".concat(a.media,\" {\"));var i=void 0!==a.layer;i&&(o+=\"@layer\".concat(a.layer.length>0?\" \".concat(a.layer):\"\",\" {\")),o+=a.css,i&&(o+=\"}\"),a.media&&(o+=\"}\"),a.supports&&(o+=\"}\");var n=a.sourceMap;n&&\"undefined\"!=typeof btoa&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(n)))),\" */\")),t.styleTagTransform(o,e,t.options)}(t,e,a)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},6591:()=>{},2102:()=>{},2405:()=>{},1900:(e,t,a)=>{\"use strict\";function o(e,t,a,o,i,n,s,r){var l,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),o&&(c.functional=!0),n&&(c._scopeId=\"data-v-\"+n),s?(l=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(s)},c._ssrRegister=l):i&&(l=r?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var m=c.render;c.render=function(e,t){return l.call(t),m(e,t)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:c}}a.d(t,{Z:()=>o})},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function a(o){var i=t[o];if(void 0!==i)return i.exports;var n=t[o]={id:o,exports:{}};return e[o](n,n.exports,a),n.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var o in t)a.o(t,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},a.nc=void 0;var o={};return(()=>{\"use strict\";a.r(o),a.d(o,{default:()=>E});var e=a(7664),t=a(1205);const i=require(\"vue-material-design-icons/ChevronRight.vue\");var n=a.n(i);function s(e){return s=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},s(e)}function r(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function l(e){for(var t=1;t(()=>{var e={8034:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcActionButton\",mixins:[o(9156).Z],props:{disabled:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null}},computed:{isFocusable:function(){return!this.disabled}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),d=o(3565),u=o.n(d),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(9776),A={};A.styleTagTransform=g(),A.setAttributes=u(),A.insert=c().bind(null,\"head\"),A.domAPI=s(),A.insertStyleElement=p();i()(v.Z,A);v.Z&&v.Z.locals&&v.Z.locals;var f=o(1900),k=o(4216),y=o.n(k),C=(0,f.Z)(a,(function(){var e=this,t=e._self._c;return t(\"li\",{staticClass:\"action\",class:{\"action--disabled\":e.disabled},attrs:{role:\"presentation\"}},[t(\"button\",{staticClass:\"action-button\",class:{focusable:e.isFocusable},attrs:{\"aria-label\":e.ariaLabel,title:e.title,role:\"menuitem\",type:\"button\"},on:{click:e.onClick}},[e._t(\"icon\",(function(){return[t(\"span\",{staticClass:\"action-button__icon\",class:[e.isIconUrl?\"action-button__icon--url\":e.icon],style:{backgroundImage:e.isIconUrl?\"url(\".concat(e.icon,\")\"):null},attrs:{\"aria-hidden\":e.ariaHidden}})]})),e._v(\" \"),e.name?t(\"p\",[t(\"strong\",{staticClass:\"action-button__name\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\")]),e._v(\" \"),t(\"br\"),e._v(\" \"),t(\"span\",{staticClass:\"action-button__longtext\",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t(\"p\",{staticClass:\"action-button__longtext\",domProps:{textContent:e._s(e.text)}}):t(\"span\",{staticClass:\"action-button__text\"},[e._v(e._s(e.text))]),e._v(\" \"),e._e()],2)])}),[],!1,null,\"38d8193f\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},5166:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcActionLink\",mixins:[o(9156).Z],props:{href:{type:String,default:\"#\",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith(\"#\")||e.startsWith(\"/\")}}},download:{type:String,default:null},target:{type:String,default:\"_self\",validator:function(e){return e&&(!e.startsWith(\"_\")||[\"_blank\",\"_self\",\"_parent\",\"_top\"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),d=o(3565),u=o.n(d),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(4402),A={};A.styleTagTransform=g(),A.setAttributes=u(),A.insert=c().bind(null,\"head\"),A.domAPI=s(),A.insertStyleElement=p();i()(v.Z,A);v.Z&&v.Z.locals&&v.Z.locals;var f=o(1900),k=o(9158),y=o.n(k),C=(0,f.Z)(a,(function(){var e=this,t=e._self._c;return t(\"li\",{staticClass:\"action\"},[t(\"a\",{staticClass:\"action-link focusable\",attrs:{download:e.download,href:e.href,\"aria-label\":e.ariaLabel,target:e.target,title:e.title,rel:\"nofollow noreferrer noopener\",role:\"menuitem\"},on:{click:e.onClick}},[e._t(\"icon\",(function(){return[t(\"span\",{staticClass:\"action-link__icon\",class:[e.isIconUrl?\"action-link__icon--url\":e.icon],style:{backgroundImage:e.isIconUrl?\"url(\".concat(e.icon,\")\"):null},attrs:{\"aria-hidden\":e.ariaHidden}})]})),e._v(\" \"),e.name?t(\"p\",[t(\"strong\",{staticClass:\"action-link__name\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\")]),e._v(\" \"),t(\"br\"),e._v(\" \"),t(\"span\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t(\"p\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}}):t(\"span\",{staticClass:\"action-link__text\"},[e._v(e._s(e.text))]),e._v(\" \"),e._e()],2)])}),[],!1,null,\"df184e4e\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},968:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>f});const a={name:\"NcActionRouter\",mixins:[o(9156).Z],props:{to:{type:[String,Object],default:\"\",required:!0},exact:{type:Boolean,default:!1}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),d=o(3565),u=o.n(d),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8541),A={};A.styleTagTransform=g(),A.setAttributes=u(),A.insert=c().bind(null,\"head\"),A.domAPI=s(),A.insertStyleElement=p();i()(v.Z,A);v.Z&&v.Z.locals&&v.Z.locals;const f=(0,o(1900).Z)(a,(function(){var e=this,t=e._self._c;return t(\"li\",{staticClass:\"action\"},[t(\"router-link\",{staticClass:\"action-router focusable\",attrs:{to:e.to,\"aria-label\":e.ariaLabel,exact:e.exact,title:e.title,rel:\"nofollow noreferrer noopener\"},nativeOn:{click:function(t){return e.onClick.apply(null,arguments)}}},[e._t(\"icon\",(function(){return[t(\"span\",{staticClass:\"action-router__icon\",class:[e.isIconUrl?\"action-router__icon--url\":e.icon],style:{backgroundImage:e.isIconUrl?\"url(\".concat(e.icon,\")\"):null}})]})),e._v(\" \"),e.name?t(\"p\",[t(\"strong\",{staticClass:\"action-router__name\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\")]),e._v(\" \"),t(\"br\"),e._v(\" \"),t(\"span\",{staticClass:\"action-router__longtext\",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t(\"p\",{staticClass:\"action-router__longtext\",domProps:{textContent:e._s(e.text)}}):t(\"span\",{staticClass:\"action-router__text\"},[e._v(e._s(e.text))]),e._v(\" \"),e._e()],2)],1)}),[],!1,null,\"74ff8099\",null).exports},7664:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>R});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),l=o.n(s),c=o(1441),d=o.n(c);function u(e){return u=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},u(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var o=t.querySelector(A);if(o){var a=g(this.$refs.menu.querySelectorAll(A)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(A)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(A).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(A).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return\"NcActionLink\"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(l().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,l,c,d,u,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e(\"span\",{class:[\"icon\",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),A=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,f=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),k=(null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||f,y=t.forceName?f:\"\",C=null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||C||(C=f),e(\"NcButton\",{class:[\"action-item action-item--single\",null==o||null===(d=o.data)||void 0===d?void 0:d.staticClass,null==o||null===(u=o.data)||void 0===u?void 0:u.class],attrs:{\"aria-label\":k,title:C},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(y?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!A&&{click:function(e){A&&A(e)}})},[e(\"template\",{slot:\"icon\"},[v]),y])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":a?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:a?null:\"menu\"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),c=o.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[c.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(c)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(o)])}}};var k=o(3379),y=o.n(k),C=o(7795),b=o.n(C),w=o(569),P=o.n(w),S=o(3565),N=o.n(S),j=o(9216),x=o.n(j),O=o(4589),E=o.n(O),B=o(9546),z={};z.styleTagTransform=E(),z.setAttributes=N(),z.insert=P().bind(null,\"head\"),z.domAPI=b(),z.insertStyleElement=x();y()(B.Z,z);B.Z&&B.Z.locals&&B.Z.locals;var F=o(5155),M={};M.styleTagTransform=E(),M.setAttributes=N(),M.insert=P().bind(null,\"head\"),M.domAPI=b(),M.insertStyleElement=x();y()(F.Z,M);F.Z&&F.Z.locals&&F.Z.locals;var _=o(1900),T=o(5727),D=o.n(T),G=(0,_.Z)(f,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(G);const R=G.exports},3186:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>E});var a=o(7664),n=o(1205);const i=require(\"vue-material-design-icons/ChevronRight.vue\");var r=o.n(i);function s(e){return s=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},s(e)}function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function c(e){for(var t=1;t{\"use strict\";function a(e){return a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},a(e)}function n(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function i(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,o,a,n=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!s,c=null===(a=this.$slots)||void 0===a?void 0:a.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var d=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,d=o.isActive,u=o.isExactActive;return e(n.to||!n.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":c&&!l,\"button-vue--text-only\":l&&!c,\"button-vue--icon-and-text\":c&&l},r(t,\"button-vue--vue-\".concat(n.realType),n.realType),r(t,\"button-vue--wide\",n.wide),r(t,\"button-vue--\".concat(n.flexAlignment),\"center\"!==n.flexAlignment),r(t,\"button-vue--reverse\",n.isReverseAligned),r(t,\"active\",d),r(t,\"router-link-exact-active\",u),t)],attrs:i({\"aria-label\":n.ariaLabel,\"aria-pressed\":n.pressed,disabled:n.disabled,type:n.href?null:n.nativeType,role:n.href?\"button\":null,href:!n.to&&n.href?n.href:null,target:!n.to&&n.href?\"_self\":null,rel:!n.to&&n.href?\"nofollow noreferrer noopener\":null,download:!n.to&&n.href&&n.download?n.download:null},n.$attrs),on:i(i({},n.$listeners),{},{click:function(e){\"boolean\"==typeof n.pressed&&n.$emit(\"update:pressed\",!n.pressed),n.$emit(\"click\",e),null==a||a(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[c?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":n.ariaHidden}},[n.$slots.icon]):null,l?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=o(3379),c=o.n(l),d=o(7795),u=o.n(d),m=o(569),p=o.n(m),h=o(3565),g=o.n(h),v=o(9216),A=o.n(v),f=o(4589),k=o.n(f),y=o(7294),C={};C.styleTagTransform=k(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=u(),C.insertStyleElement=A();c()(y.Z,C);y.Z&&y.Z.locals&&y.Z.locals;var b=o(1900),w=o(2102),P=o.n(w),S=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof P()&&P()(S);const N=S.exports},2297:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>O});var a=o(9454),n=o(4505),i=o(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",l=n.asyncIterator||\"@@asyncIterator\",c=n.toStringTag||\"@@toStringTag\";function d(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},\"\")}catch(e){d=function(e,t,o){return e[t]=o}}function u(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new j(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=u;var p={};function h(){}function g(){}function v(){}var A={};d(A,i,(function(){return this}));var f=Object.getPrototypeOf,k=f&&f(f(x([])));k&&k!==t&&o.call(k,i)&&(A=k);var y=v.prototype=h.prototype=Object.create(A);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,s,l){var c=m(e[a],e,i);if(\"throw\"!==c.type){var d=c.arg,u=d.value;return u&&\"object\"==r(u)&&o.call(u,\"__await\")?t.resolve(u.__await).then((function(e){n(\"next\",e,s,l)}),(function(e){n(\"throw\",e,s,l)})):t.resolve(u).then((function(e){d.value=e,s(d)}),(function(e){return n(\"throw\",e,s,l)}))}l(c.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=P(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function P(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,P(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function j(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(S,this),this.reset(!0)}function x(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:x(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}const c={name:\"NcPopover\",components:{Dropdown:a.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var o,a;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,n.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,\"next\",e)}function s(e){l(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},d=c;var u=o(3379),m=o.n(u),p=o(7795),h=o.n(p),g=o(569),v=o.n(g),A=o(3565),f=o.n(A),k=o(9216),y=o.n(k),C=o(4589),b=o.n(C),w=o(1625),P={};P.styleTagTransform=b(),P.setAttributes=f(),P.insert=v().bind(null,\"head\"),P.domAPI=h(),P.insertStyleElement=y();m()(w.Z,P);w.Z&&w.Z.locals&&w.Z.locals;var S=o(1900),N=o(2405),j=o.n(N),x=(0,S.Z)(d,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof j()&&j()(x);const O=x.exports},932:(e,t,o)=>{\"use strict\";o.d(t,{t:()=>r});var a=o(7931),n=(0,a.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};n.addTranslation(e.locale,{translations:{\"\":t}})}));var i=n.build(),r=(i.ngettext.bind(i),i.gettext.bind(i))},723:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(2734),n=o.n(a);const i={before:function(){this.$slots.default&&\"\"!==this.text.trim()||(n().util.warn(\"\".concat(this.$options.name,\" cannot be empty and requires a meaningful text content\"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():\"\"}}}},9156:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(723),n=o(6021);const i={mixins:[a.Z],props:{icon:{type:String,default:\"\"},name:{type:String,default:\"\"},title:{type:String,default:\"\"},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:\"\"},ariaHidden:{type:Boolean,default:null}},emits:[\"click\"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit(\"click\",e),this.closeAfterClick){var t=(0,n.Z)(this,\"NcActions\");t&&t.closeMenu&&t.closeMenu(!1)}}}}},1205:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},6021:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=e.$parent;o;){if(o.$options.name===t)return o;o=o.$parent}}},1206:(e,t,o)=>{\"use strict\";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},9776:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-38d8193f]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-38d8193f]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action--disabled[data-v-38d8193f]{pointer-events:none;opacity:.5}.action--disabled[data-v-38d8193f]:hover,.action--disabled[data-v-38d8193f]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-38d8193f]{opacity:1 !important}.action-button[data-v-38d8193f]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-button>span[data-v-38d8193f]{cursor:pointer;white-space:nowrap}.action-button__icon[data-v-38d8193f]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-button[data-v-38d8193f] .material-design-icon{width:44px;height:44px;opacity:1}.action-button[data-v-38d8193f] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-button p[data-v-38d8193f]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-button__longtext[data-v-38d8193f]{cursor:pointer;white-space:pre-wrap}.action-button__name[data-v-38d8193f]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/assets/action.scss\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAMF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA,CAOF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\n * @author Marco Ambrosini \\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 .\\n *\\n */\\n\\n@mixin action-active {\\n\\tli {\\n\\t\\t&.active {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\tborder-radius: 6px;\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n@mixin action--disabled {\\n\\t.action--disabled {\\n\\t\\tpointer-events: none;\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t&:hover, &:focus {\\n\\t\\t\\tcursor: default;\\n\\t\\t\\topacity: $opacity_disabled;\\n\\t\\t}\\n\\t\\t& * {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\\n@mixin action-item($name) {\\n\\t.action-#{$name} {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: flex-start;\\n\\n\\t\\twidth: 100%;\\n\\t\\theight: auto;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\tpadding-right: $icon-margin;\\n\\t\\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\\n\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 0;\\n\\t\\tborder-radius: 0; // otherwise Safari will cut the border-radius area\\n\\t\\tbackground-color: transparent;\\n\\t\\tbox-shadow: none;\\n\\n\\t\\tfont-weight: normal;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tline-height: $clickable-area;\\n\\n\\t\\t& > span {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t&__icon {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\tbackground-position: $icon-margin center;\\n\\t\\t\\tbackground-size: $icon-size;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t}\\n\\n\\t\\t&:deep(.material-design-icon) {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\n\\t\\t\\t.material-design-icon__svg {\\n\\t\\t\\t\\tvertical-align: middle;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// long text area\\n\\t\\tp {\\n\\t\\t\\tmax-width: 220px;\\n\\t\\t\\tline-height: 1.6em;\\n\\n\\t\\t\\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\\n\\t\\t\\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\\n\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\ttext-align: left;\\n\\n\\t\\t\\t// in case there are no spaces like long email addresses\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t}\\n\\n\\t\\t&__longtext {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\t// allow the use of `\\\\n`\\n\\t\\t\\twhite-space: pre-wrap;\\n\\t\\t}\\n\\n\\t\\t&__name {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tdisplay: inline-block;\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},4402:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/assets/action.scss\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\n * @author Marco Ambrosini \\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 .\\n *\\n */\\n\\n@mixin action-active {\\n\\tli {\\n\\t\\t&.active {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\tborder-radius: 6px;\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n@mixin action--disabled {\\n\\t.action--disabled {\\n\\t\\tpointer-events: none;\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t&:hover, &:focus {\\n\\t\\t\\tcursor: default;\\n\\t\\t\\topacity: $opacity_disabled;\\n\\t\\t}\\n\\t\\t& * {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\\n@mixin action-item($name) {\\n\\t.action-#{$name} {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: flex-start;\\n\\n\\t\\twidth: 100%;\\n\\t\\theight: auto;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\tpadding-right: $icon-margin;\\n\\t\\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\\n\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 0;\\n\\t\\tborder-radius: 0; // otherwise Safari will cut the border-radius area\\n\\t\\tbackground-color: transparent;\\n\\t\\tbox-shadow: none;\\n\\n\\t\\tfont-weight: normal;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tline-height: $clickable-area;\\n\\n\\t\\t& > span {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t&__icon {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\tbackground-position: $icon-margin center;\\n\\t\\t\\tbackground-size: $icon-size;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t}\\n\\n\\t\\t&:deep(.material-design-icon) {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\n\\t\\t\\t.material-design-icon__svg {\\n\\t\\t\\t\\tvertical-align: middle;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// long text area\\n\\t\\tp {\\n\\t\\t\\tmax-width: 220px;\\n\\t\\t\\tline-height: 1.6em;\\n\\n\\t\\t\\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\\n\\t\\t\\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\\n\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\ttext-align: left;\\n\\n\\t\\t\\t// in case there are no spaces like long email addresses\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t}\\n\\n\\t\\t&__longtext {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\t// allow the use of `\\\\n`\\n\\t\\t\\twhite-space: pre-wrap;\\n\\t\\t}\\n\\n\\t\\t&__name {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tdisplay: inline-block;\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},8541:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-74ff8099]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-74ff8099]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-router[data-v-74ff8099]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-router>span[data-v-74ff8099]{cursor:pointer;white-space:nowrap}.action-router__icon[data-v-74ff8099]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-router[data-v-74ff8099] .material-design-icon{width:44px;height:44px;opacity:1}.action-router[data-v-74ff8099] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-router p[data-v-74ff8099]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-router__longtext[data-v-74ff8099]{cursor:pointer;white-space:pre-wrap}.action-router__name[data-v-74ff8099]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}.action--disabled[data-v-74ff8099]{pointer-events:none;opacity:.5}.action--disabled[data-v-74ff8099]:hover,.action--disabled[data-v-74ff8099]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-74ff8099]{opacity:1 !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/assets/action.scss\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA,CA3FF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\n * @author Marco Ambrosini \\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 .\\n *\\n */\\n\\n@mixin action-active {\\n\\tli {\\n\\t\\t&.active {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\tborder-radius: 6px;\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n@mixin action--disabled {\\n\\t.action--disabled {\\n\\t\\tpointer-events: none;\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t&:hover, &:focus {\\n\\t\\t\\tcursor: default;\\n\\t\\t\\topacity: $opacity_disabled;\\n\\t\\t}\\n\\t\\t& * {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\\n@mixin action-item($name) {\\n\\t.action-#{$name} {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: flex-start;\\n\\n\\t\\twidth: 100%;\\n\\t\\theight: auto;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\tpadding-right: $icon-margin;\\n\\t\\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\\n\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 0;\\n\\t\\tborder-radius: 0; // otherwise Safari will cut the border-radius area\\n\\t\\tbackground-color: transparent;\\n\\t\\tbox-shadow: none;\\n\\n\\t\\tfont-weight: normal;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tline-height: $clickable-area;\\n\\n\\t\\t& > span {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t&__icon {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\tbackground-position: $icon-margin center;\\n\\t\\t\\tbackground-size: $icon-size;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t}\\n\\n\\t\\t&:deep(.material-design-icon) {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\n\\t\\t\\t.material-design-icon__svg {\\n\\t\\t\\t\\tvertical-align: middle;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// long text area\\n\\t\\tp {\\n\\t\\t\\tmax-width: 220px;\\n\\t\\t\\tline-height: 1.6em;\\n\\n\\t\\t\\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\\n\\t\\t\\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\\n\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\ttext-align: left;\\n\\n\\t\\t\\t// in case there are no spaces like long email addresses\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t}\\n\\n\\t\\t&__longtext {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\t// allow the use of `\\\\n`\\n\\t\\t\\twhite-space: pre-wrap;\\n\\t\\t}\\n\\n\\t\\t&__name {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tdisplay: inline-block;\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},8066:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-4daa022a]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.vue-crumb[data-v-4daa022a]{background-image:none;display:inline-flex;height:44px;padding:0}.vue-crumb[data-v-4daa022a]:last-child{max-width:210px;font-weight:bold}.vue-crumb:last-child .vue-crumb__separator[data-v-4daa022a]{display:none}.vue-crumb>a[data-v-4daa022a]:hover,.vue-crumb>a[data-v-4daa022a]:focus{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb--hidden[data-v-4daa022a]{display:none}.vue-crumb.vue-crumb--hovered>a[data-v-4daa022a]{background-color:var(--color-background-dark);color:var(--color-main-text)}.vue-crumb__separator[data-v-4daa022a]{padding:0;color:var(--color-text-maxcontrast)}.vue-crumb>a[data-v-4daa022a]{overflow:hidden;color:var(--color-text-maxcontrast);padding:12px;min-width:44px;max-width:100%;border-radius:var(--border-radius-pill);align-items:center;display:inline-flex;justify-content:center}.vue-crumb>a>span[data-v-4daa022a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item{max-width:100%}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue{padding:0 4px 0 16px}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item .button-vue__wrapper{flex-direction:row-reverse}.vue-crumb[data-v-4daa022a]:not(.dropdown) .action-item.action-item--open .action-item__menutoggle{background-color:var(--color-background-dark);color:var(--color-main-text)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcBreadcrumb/NcBreadcrumb.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,4BACC,qBAAA,CACA,mBAAA,CACA,WCmBgB,CDlBhB,SAAA,CAEA,uCACC,eAAA,CACA,gBAAA,CAGA,6DACC,YAAA,CAKF,wEAEC,6CAAA,CACA,4BAAA,CAGD,oCACC,YAAA,CAGD,iDACC,6CAAA,CACA,4BAAA,CAGD,uCACC,SAAA,CACA,mCAAA,CAGD,8BACC,eAAA,CACA,mCAAA,CACA,YAAA,CACA,cCnBe,CDoBf,cAAA,CACA,uCAAA,CACA,kBAAA,CACA,mBAAA,CACA,sBAAA,CAEA,mCACC,eAAA,CACA,sBAAA,CACA,kBAAA,CAMF,wDAEC,cAAA,CAEA,oEACC,oBAAA,CAEA,6EACC,0BAAA,CAKF,mGACC,6CAAA,CACA,4BAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.vue-crumb {\\n\\tbackground-image: none;\\n\\tdisplay: inline-flex;\\n\\theight: $clickable-area;\\n\\tpadding: 0;\\n\\n\\t&:last-child {\\n\\t\\tmax-width: 210px;\\n\\t\\tfont-weight: bold;\\n\\n\\t\\t// Don't show breadcrumb separator for last crumb\\n\\t\\t.vue-crumb__separator {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t// Hover and focus effect for crumbs\\n\\t& > a:hover,\\n\\t& > a:focus {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&--hidden {\\n\\t\\tdisplay: none;\\n\\t}\\n\\n\\t&#{&}--hovered > a {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&__separator {\\n\\t\\tpadding: 0;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t> a {\\n\\t\\toverflow: hidden;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tpadding: 12px;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tmax-width: 100%;\\n\\t\\tborder-radius: var(--border-radius-pill);\\n\\t\\talign-items: center;\\n\\t\\tdisplay: inline-flex;\\n\\t\\tjustify-content: center;\\n\\n\\t\\t> span {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\t}\\n\\n\\t// Adjust action item appearance for crumbs with actions\\n\\t// to match other crumbs\\n\\t&:not(.dropdown) :deep(.action-item) {\\n\\t\\t// Adjustments necessary to correctly shrink on small screens\\n\\t\\tmax-width: 100%;\\n\\n\\t\\t.button-vue {\\n\\t\\t\\tpadding: 0 4px 0 16px;\\n\\n\\t\\t\\t&__wrapper {\\n\\t\\t\\t\\tflex-direction: row-reverse;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Adjust the background of the last crumb when the action is open\\n\\t\\t&.action-item--open .action-item__menutoggle {\\n\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},7114:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-09b1aba3]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.breadcrumb[data-v-09b1aba3]{width:100%;flex-grow:1;display:inline-flex;align-items:center}.breadcrumb--collapsed[data-v-09b1aba3] .vue-crumb:last-child{min-width:100px;flex-shrink:1}.breadcrumb nav[data-v-09b1aba3]{flex-shrink:1;max-width:100%;min-width:228px}.breadcrumb .breadcrumb__crumbs[data-v-09b1aba3]{max-width:100%}.breadcrumb .breadcrumb__crumbs[data-v-09b1aba3],.breadcrumb .breadcrumb__actions[data-v-09b1aba3]{display:inline-flex}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcBreadcrumbs/NcBreadcrumbs.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,UAAA,CACA,WAAA,CACA,mBAAA,CACA,kBAAA,CAEA,8DACC,eAAA,CACA,aAAA,CAGD,iCACC,aAAA,CACA,cAAA,CAKA,eAAA,CAGD,iDACC,cAAA,CAGD,mGAEC,mBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.breadcrumb {\\n\\twidth: 100%;\\n\\tflex-grow: 1;\\n\\tdisplay: inline-flex;\\n\\talign-items: center;\\n\\n\\t&--collapsed :deep(.vue-crumb:last-child) {\\n\\t\\tmin-width: 100px;\\n\\t\\tflex-shrink: 1;\\n\\t}\\n\\n\\tnav {\\n\\t\\tflex-shrink: 1;\\n\\t\\tmax-width: 100%;\\n\\t\\t/**\\n\\t\\t * This value is given by the min-width of the last crumb (100px) plus\\n\\t\\t * two times the width of a crumb with an icon (first crumb and hidden crumbs actions).\\n\\t\\t */\\n\\t\\tmin-width: 228px;\\n\\t}\\n\\n\\t& #{&}__crumbs {\\n\\t\\tmax-width: 100%;\\n\\t}\\n\\n\\t& #{&}__crumbs,\\n\\t& #{&}__actions {\\n\\t\\tdisplay: inline-flex;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},7294:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o=\"\",a=void 0!==t[5];return t[4]&&(o+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(o+=\"@media \".concat(t[2],\" {\")),a&&(o+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),o+=e(t),a&&(o+=\"}\"),t[2]&&(o+=\"}\"),t[4]&&(o+=\"}\"),o})).join(\"\")},t.i=function(e,o,a,n,i){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=i),o&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=o):d[2]=o),n&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=n):d[4]=\"\".concat(n)),t.push(d))}},t}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if(\"function\"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(a),i=\"/*# \".concat(n,\" */\");return[t].concat([i]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function o(e){for(var o=-1,a=0;a{\"use strict\";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(o)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{\"use strict\";e.exports=function(e){var t=o.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a=\"\";o.supports&&(a+=\"@supports (\".concat(o.supports,\") {\")),o.media&&(a+=\"@media \".concat(o.media,\" {\"));var n=void 0!==o.layer;n&&(a+=\"@layer\".concat(o.layer.length>0?\" \".concat(o.layer):\"\",\" {\")),a+=o.css,n&&(a+=\"}\"),o.media&&(a+=\"}\"),o.supports&&(a+=\"}\");var i=o.sourceMap;i&&\"undefined\"!=typeof btoa&&(a+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},4216:()=>{},9158:()=>{},5727:()=>{},6591:()=>{},1753:()=>{},2102:()=>{},2405:()=>{},1900:(e,t,o)=>{\"use strict\";function a(e,t,o,a,n,i,r,s){var l,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=o,c._compiled=!0),a&&(c.functional=!0),i&&(c._scopeId=\"data-v-\"+i),r?(l=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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=s?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var d=c.render;c.render=function(e,t){return l.call(t),d(e,t)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:c}}o.d(t,{Z:()=>a})},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function o(a){var n=t[a];if(void 0!==n)return n.exports;var i=t[a]={id:a,exports:{}};return e[a](i,i.exports,o),i.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},o.nc=void 0;var a={};return(()=>{\"use strict\";o.r(a),o.d(a,{default:()=>q});var e=o(7664),t=o(8034),n=o(968),i=o(5166),r=o(3186),s=o(2734),l=o.n(s);const c=function(e,t,o){if(void 0!==e)for(var a=e.length-1;a>=0;a--){var n=e[a],i=!n.componentOptions&&n.tag&&-1===t.indexOf(n.tag),r=!!n.componentOptions&&\"string\"==typeof n.componentOptions.tag,s=r&&-1===t.indexOf(n.componentOptions.tag);(i||!r||s)&&((i||s)&&l().util.warn(\"\".concat(i?n.tag:n.componentOptions.tag,\" is not allowed inside the \").concat(o.$options.name,\" component\"),o),e.splice(a,1))}},d=require(\"@nextcloud/event-bus\"),u=require(\"vue-material-design-icons/Folder.vue\");var m=o.n(u);const p=require(\"debounce\");var h=o.n(p);const g=require(\"vue-frag\");function v(e){return v=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},v(e)}function A(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function f(e){for(var t=1;t=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),u}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:x(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),u}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}var b=\"vue-crumb\";const w={name:\"NcBreadcrumbs\",components:{NcActions:e.default,NcActionButton:t.default,NcActionRouter:n.default,NcActionLink:i.default,NcBreadcrumb:r.default,IconFolder:m()},props:{rootIcon:{type:String,default:\"icon-home\"}},emits:[\"dropped\"],data:function(){return{hiddenIndices:[],menuBreadcrumbProps:{name:\"\",forceMenu:!0,disableDrop:!0,open:!1},breadcrumbsRefs:{}}},beforeMount:function(){c(this.$slots.default,[\"NcBreadcrumb\"],this)},beforeUpdate:function(){c(this.$slots.default,[\"NcBreadcrumb\"],this)},created:function(){var e=this;window.addEventListener(\"resize\",h()((function(){e.handleWindowResize()}),100)),(0,d.subscribe)(\"navigation-toggled\",this.delayedResize)},mounted:function(){this.handleWindowResize()},updated:function(){var e=this;this.delayedResize(),this.$nextTick((function(){e.hideCrumbs()}))},beforeDestroy:function(){window.removeEventListener(\"resize\",this.handleWindowResize),(0,d.unsubscribe)(\"navigation-toggled\",this.delayedResize)},methods:{closeActions:function(e){this.$refs.actionsBreadcrumb.$el.contains(e.relatedTarget)||(this.menuBreadcrumbProps.open=!1)},delayedResize:function(){var e,t=this;return(e=y().mark((function e(){return y().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:t.handleWindowResize();case 3:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){C(i,a,n,r,s,\"next\",e)}function s(e){C(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()},handleWindowResize:function(){if(this.$refs.container){var e=Object.values(this.breadcrumbsRefs),t=e.length,o=[],a=this.$refs.container.offsetWidth,n=this.getTotalWidth(e);this.$refs.breadcrumb__actions&&(n+=this.$refs.breadcrumb__actions.offsetWidth);var i=n-a;i+=i>0?64:0;for(var r=0,s=Math.floor(t/2);i>0&&r(()=>{var t={2105:(t,e,n)=>{\"use strict\";n.d(e,{Z:()=>c});var r=n(7537),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([t.id,\".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.icon-vue {\\n\\tdisplay: flex;\\n\\tjustify-content: center;\\n\\talign-items: center;\\n\\tmin-width: 44px;\\n\\tmin-height: 44px;\\n\\topacity: 1;\\n\\n\\t&:deep(svg) {\\n\\t\\tfill: currentColor;\\n\\t\\tmax-width: 20px;\\n\\t\\tmax-height: 20px;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const c=a},3645:t=>{\"use strict\";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=\"\",r=void 0!==e[5];return e[4]&&(n+=\"@supports (\".concat(e[4],\") {\")),e[2]&&(n+=\"@media \".concat(e[2],\" {\")),r&&(n+=\"@layer\".concat(e[5].length>0?\" \".concat(e[5]):\"\",\" {\")),n+=t(e),r&&(n+=\"}\"),e[2]&&(n+=\"}\"),e[4]&&(n+=\"}\"),n})).join(\"\")},e.i=function(t,n,r,o,i){\"string\"==typeof t&&(t=[[null,t,void 0]]);var a={};if(r)for(var c=0;c0?\" \".concat(l[5]):\"\",\" {\").concat(l[1],\"}\")),l[5]=i),n&&(l[2]?(l[1]=\"@media \".concat(l[2],\" {\").concat(l[1],\"}\"),l[2]=n):l[2]=n),o&&(l[4]?(l[1]=\"@supports (\".concat(l[4],\") {\").concat(l[1],\"}\"),l[4]=o):l[4]=\"\".concat(o)),e.push(l))}},e}},7537:t=>{\"use strict\";t.exports=function(t){var e=t[1],n=t[3];if(!n)return e;if(\"function\"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(r),i=\"/*# \".concat(o,\" */\");return[e].concat([i]).join(\"\\n\")}return[e].join(\"\\n\")}},3379:t=>{\"use strict\";var e=[];function n(t){for(var n=-1,r=0;r{\"use strict\";var e={};t.exports=function(t,n){var r=function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}e[t]=n}return e[t]}(t);if(!r)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");r.appendChild(n)}},9216:t=>{\"use strict\";t.exports=function(t){var e=document.createElement(\"style\");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},3565:(t,e,n)=>{\"use strict\";t.exports=function(t){var e=n.nc;e&&t.setAttribute(\"nonce\",e)}},7795:t=>{\"use strict\";t.exports=function(t){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var e=t.insertStyleElement(t);return{update:function(n){!function(t,e,n){var r=\"\";n.supports&&(r+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(r+=\"@media \".concat(n.media,\" {\"));var o=void 0!==n.layer;o&&(r+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),r+=n.css,o&&(r+=\"}\"),n.media&&(r+=\"}\"),n.supports&&(r+=\"}\");var i=n.sourceMap;i&&\"undefined\"!=typeof btoa&&(r+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),e.styleTagTransform(r,t,e.options)}(e,t,n)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},4589:t=>{\"use strict\";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},1287:()=>{},1900:(t,e,n)=>{\"use strict\";function r(t,e,n,r,o,i,a,c){var s,u=\"function\"==typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId=\"data-v-\"+i),a?(s=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__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=s):o&&(s=c?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),s)if(u.functional){u._injectStyles=s;var l=u.render;u.render=function(t,e){return s.call(e),l(t,e)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,s):[s]}return{exports:t,options:u}}n.d(e,{Z:()=>r})}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={id:r,exports:{}};return t[r](i,i.exports,n),i.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.nc=void 0;var r={};return(()=>{\"use strict\";n.r(r),n.d(r,{default:()=>E});const t=require(\"@skjnldsv/sanitize-svg\");function e(t){return e=\"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},e(t)}function o(){o=function(){return t};var t={},n=Object.prototype,r=n.hasOwnProperty,i=Object.defineProperty||function(t,e,n){t[e]=n.value},a=\"function\"==typeof Symbol?Symbol:{},c=a.iterator||\"@@iterator\",s=a.asyncIterator||\"@@asyncIterator\",u=a.toStringTag||\"@@toStringTag\";function l(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},\"\")}catch(t){l=function(t,e,n){return t[e]=n}}function f(t,e,n,r){var o=e&&e.prototype instanceof h?e:h,a=Object.create(o.prototype),c=new j(r||[]);return i(a,\"_invoke\",{value:C(t,n,c)}),a}function p(t,e,n){try{return{type:\"normal\",arg:t.call(e,n)}}catch(t){return{type:\"throw\",arg:t}}}t.wrap=f;var d={};function h(){}function v(){}function y(){}var m={};l(m,c,(function(){return this}));var g=Object.getPrototypeOf,A=g&&g(g(L([])));A&&A!==n&&r.call(A,c)&&(m=A);var x=y.prototype=h.prototype=Object.create(m);function b(t){[\"next\",\"throw\",\"return\"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,n){function o(i,a,c,s){var u=p(t[i],t,a);if(\"throw\"!==u.type){var l=u.arg,f=l.value;return f&&\"object\"==e(f)&&r.call(f,\"__await\")?n.resolve(f.__await).then((function(t){o(\"next\",t,c,s)}),(function(t){o(\"throw\",t,c,s)})):n.resolve(f).then((function(t){l.value=t,c(l)}),(function(t){return o(\"throw\",t,c,s)}))}s(u.arg)}var a;i(this,\"_invoke\",{value:function(t,e){function r(){return new n((function(n,r){o(t,e,n,r)}))}return a=a?a.then(r,r):r()}})}function C(t,e,n){var r=\"suspendedStart\";return function(o,i){if(\"executing\"===r)throw new Error(\"Generator is already running\");if(\"completed\"===r){if(\"throw\"===o)throw i;return N()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var c=S(a,n);if(c){if(c===d)continue;return c}}if(\"next\"===n.method)n.sent=n._sent=n.arg;else if(\"throw\"===n.method){if(\"suspendedStart\"===r)throw r=\"completed\",n.arg;n.dispatchException(n.arg)}else\"return\"===n.method&&n.abrupt(\"return\",n.arg);r=\"executing\";var s=p(t,e,n);if(\"normal\"===s.type){if(r=n.done?\"completed\":\"suspendedYield\",s.arg===d)continue;return{value:s.arg,done:n.done}}\"throw\"===s.type&&(r=\"completed\",n.method=\"throw\",n.arg=s.arg)}}}function S(t,e){var n=e.method,r=t.iterator[n];if(void 0===r)return e.delegate=null,\"throw\"===n&&t.iterator.return&&(e.method=\"return\",e.arg=void 0,S(t,e),\"throw\"===e.method)||\"return\"!==n&&(e.method=\"throw\",e.arg=new TypeError(\"The iterator does not provide a '\"+n+\"' method\")),d;var o=p(r,t.iterator,e.arg);if(\"throw\"===o.type)return e.method=\"throw\",e.arg=o.arg,e.delegate=null,d;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,\"return\"!==e.method&&(e.method=\"next\",e.arg=void 0),e.delegate=null,d):i:(e.method=\"throw\",e.arg=new TypeError(\"iterator result is not an object\"),e.delegate=null,d)}function _(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 E(t){var e=t.completion||{};e.type=\"normal\",delete e.arg,t.completion=e}function j(t){this.tryEntries=[{tryLoc:\"root\"}],t.forEach(_,this),this.reset(!0)}function L(t){if(t){var e=t[c];if(e)return e.call(t);if(\"function\"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n=0;--o){var i=this.tryEntries[o],a=i.completion;if(\"root\"===i.tryLoc)return n(\"end\");if(i.tryLoc<=this.prev){var c=r.call(i,\"catchLoc\"),s=r.call(i,\"finallyLoc\");if(c&&s){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,\"finallyLoc\")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),E(n),d}},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 o=r.arg;E(n)}return o}}throw new Error(\"illegal catch attempt\")},delegateYield:function(t,e,n){return this.delegate={iterator:L(t),resultName:e,nextLoc:n},\"next\"===this.method&&(this.arg=void 0),d}},t}function i(t,e,n,r,o,i,a){try{var c=t[i](a),s=c.value}catch(t){return void n(t)}c.done?e(s):Promise.resolve(s).then(r,o)}function a(t){return function(){var e=this,n=arguments;return new Promise((function(r,o){var a=t.apply(e,n);function c(t){i(a,r,o,c,s,\"next\",t)}function s(t){i(a,r,o,c,s,\"throw\",t)}c(void 0)}))}}const c={name:\"NcIconSvgWrapper\",props:{svg:{type:String,default:\"\"},name:{type:String,default:\"\"}},data:function(){return{cleanSvg:\"\"}},beforeMount:function(){var t=this;return a(o().mark((function e(){return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.sanitizeSVG();case 2:case\"end\":return e.stop()}}),e)})))()},methods:{sanitizeSVG:function(){var e=this;return a(o().mark((function n(){return o().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(e.svg){n.next=2;break}return n.abrupt(\"return\");case 2:return n.next=4,(0,t.sanitizeSVG)(e.svg);case 4:e.cleanSvg=n.sent;case 5:case\"end\":return n.stop()}}),n)})))()}}};var s=n(3379),u=n.n(s),l=n(7795),f=n.n(l),p=n(569),d=n.n(p),h=n(3565),v=n.n(h),y=n(9216),m=n.n(y),g=n(4589),A=n.n(g),x=n(2105),b={};b.styleTagTransform=A(),b.setAttributes=v(),b.insert=d().bind(null,\"head\"),b.domAPI=f(),b.insertStyleElement=m();u()(x.Z,b);x.Z&&x.Z.locals&&x.Z.locals;var w=n(1900),C=n(1287),S=n.n(C),_=(0,w.Z)(c,(function(){var t=this;return(0,t._self._c)(\"span\",{staticClass:\"icon-vue\",attrs:{role:\"img\",\"aria-hidden\":!t.name,\"aria-label\":t.name},domProps:{innerHTML:t._s(t.cleanSvg)}})}),[],!1,null,\"5937dacc\",null);\"function\"==typeof S()&&S()(_);const E=_.exports})(),r})()));\n//# sourceMappingURL=NcIconSvgWrapper.js.map","/*! For license information please see NcInputField.js.LICENSE.txt */\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=t.NextcloudVue||{},t.NextcloudVue[\"Components/NcInputField\"]=e())}(self,(()=>(()=>{var t={3089:(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},r(t)}function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;eB});const l={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(t){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(t)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(t){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(t)},default:\"secondary\"},nativeType:{type:String,validator:function(t){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(t)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(t){var e,n,r,o=this,l=null===(e=this.$slots.default)||void 0===e||null===(e=e[0])||void 0===e||null===(e=e.text)||void 0===e||null===(n=e.trim)||void 0===n?void 0:n.call(e),c=!!l,s=null===(r=this.$slots)||void 0===r?void 0:r.icon;l||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:l,ariaLabel:this.ariaLabel},this);var d=function(){var e,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.navigate,d=n.isActive,u=n.isExactActive;return t(o.to||!o.href?\"button\":\"a\",{class:[\"button-vue\",(e={\"button-vue--icon-only\":s&&!c,\"button-vue--text-only\":c&&!s,\"button-vue--icon-and-text\":s&&c},i(e,\"button-vue--vue-\".concat(o.realType),o.realType),i(e,\"button-vue--wide\",o.wide),i(e,\"button-vue--\".concat(o.flexAlignment),\"center\"!==o.flexAlignment),i(e,\"button-vue--reverse\",o.isReverseAligned),i(e,\"active\",d),i(e,\"router-link-exact-active\",u),e)],attrs:a({\"aria-label\":o.ariaLabel,\"aria-pressed\":o.pressed,disabled:o.disabled,type:o.href?null:o.nativeType,role:o.href?\"button\":null,href:!o.to&&o.href?o.href:null,target:!o.to&&o.href?\"_self\":null,rel:!o.to&&o.href?\"nofollow noreferrer noopener\":null,download:!o.to&&o.href&&o.download?o.download:null},o.$attrs),on:a(a({},o.$listeners),{},{click:function(t){\"boolean\"==typeof o.pressed&&o.$emit(\"update:pressed\",!o.pressed),o.$emit(\"click\",t),null==r||r(t)}})},[t(\"span\",{class:\"button-vue__wrapper\"},[s?t(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":o.ariaHidden}},[o.$slots.icon]):null,c?t(\"span\",{class:\"button-vue__text\"},[l]):null])])};return this.to?t(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=n(3379),s=n.n(c),d=n(7795),u=n.n(d),A=n(569),p=n.n(A),v=n(3565),C=n.n(v),f=n(9216),b=n.n(f),h=n(4589),g=n.n(h),m=n(7294),x={};x.styleTagTransform=g(),x.setAttributes=C(),x.insert=p().bind(null,\"head\"),x.domAPI=u(),x.insertStyleElement=b();s()(m.Z,x);m.Z&&m.Z.locals&&m.Z.locals;var y=n(1900),_=n(2102),w=n.n(_),k=(0,y.Z)(l,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof w()&&w()(k);const B=k.exports},7294:(t,e,n)=>{\"use strict\";n.d(e,{Z:()=>l});var r=n(7537),o=n.n(r),a=n(3645),i=n.n(a)()(o());i.push([t.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const l=i},4671:(t,e,n)=>{\"use strict\";n.d(e,{Z:()=>l});var r=n(7537),o=n.n(r),a=n(3645),i=n.n(a)()(o());i.push([t.id,\".material-design-icon[data-v-36cd7849]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.input-field[data-v-36cd7849]{position:relative;width:100%;border-radius:var(--border-radius-large);margin-block-start:6px}.input-field__main-wrapper[data-v-36cd7849]{height:38px;position:relative}.input-field--disabled[data-v-36cd7849]{opacity:.7;filter:saturate(0.7)}.input-field__input[data-v-36cd7849]{margin:0;padding-inline:10px 6px;height:38px !important;width:100%;font-size:var(--default-font-size);text-overflow:ellipsis;background-color:var(--color-main-background);color:var(--color-main-text);border:2px solid var(--color-border-maxcontrast);border-radius:var(--border-radius-large);cursor:pointer;-webkit-appearance:textfield !important;-moz-appearance:textfield !important}.input-field__input--label-outside[data-v-36cd7849]{padding-block:0}.input-field__input[data-v-36cd7849]:active:not([disabled]),.input-field__input[data-v-36cd7849]:hover:not([disabled]),.input-field__input[data-v-36cd7849]:focus:not([disabled]){border-color:var(--color-primary-element)}.input-field__input[data-v-36cd7849]:not(:focus,.input-field__input--label-outside)::placeholder{opacity:0}.input-field__input[data-v-36cd7849]:focus{cursor:text}.input-field__input[data-v-36cd7849]:disabled{cursor:default}.input-field__input[data-v-36cd7849]:focus-visible{box-shadow:unset !important}.input-field__input--leading-icon[data-v-36cd7849]{padding-inline-start:32px}.input-field__input--trailing-icon[data-v-36cd7849]{padding-inline-end:32px}.input-field__input--success[data-v-36cd7849]{border-color:var(--color-success) !important}.input-field__input--success[data-v-36cd7849]:focus-visible{box-shadow:#f8fafc 0px 0px 0px 2px,var(--color-primary-element) 0px 0px 0px 4px,rgba(0,0,0,.05) 0px 1px 2px 0px}.input-field__input--success:focus+.input-field__label[data-v-36cd7849],.input-field__input--success:hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-success-text)}.input-field__input--error[data-v-36cd7849]{border-color:var(--color-error) !important}.input-field__input--error[data-v-36cd7849]:focus-visible{box-shadow:#f8fafc 0px 0px 0px 2px,var(--color-primary-element) 0px 0px 0px 4px,rgba(0,0,0,.05) 0px 1px 2px 0px}.input-field__input--error:focus+.input-field__label[data-v-36cd7849],.input-field__input--error:hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-error-text)}.input-field__input:not(.input-field__input--success,.input-field__input--error):focus+.input-field__label[data-v-36cd7849],.input-field__input:not(.input-field__input--success,.input-field__input--error):hover:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{color:var(--color-primary-element)}.input-field__label[data-v-36cd7849]{position:absolute;margin-inline:12px 0;height:17px;max-width:fit-content;line-height:1;inset-block-start:12px;inset-inline:0;color:var(--color-text-maxcontrast);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;pointer-events:none;transition:height var(--animation-quick),inset-block-start var(--animation-quick),font-size var(--animation-quick),color var(--animation-quick),background-color var(--animation-quick) var(--animation-slow)}.input-field__label--leading-icon[data-v-36cd7849]{margin-inline-start:34px}.input-field__label--trailing-icon[data-v-36cd7849]{margin-inline-end:34px}.input-field__input:focus+.input-field__label[data-v-36cd7849],.input-field__input:not(:placeholder-shown)+.input-field__label[data-v-36cd7849]{inset-block-start:-6px;font-size:13px;background-color:var(--color-main-background);height:14px;padding-inline:4px;margin-inline-start:8px;transition:height var(--animation-quick),inset-block-start var(--animation-quick),font-size var(--animation-quick),color var(--animation-quick)}.input-field__input:focus+.input-field__label--leading-icon[data-v-36cd7849],.input-field__input:not(:placeholder-shown)+.input-field__label--leading-icon[data-v-36cd7849]{margin-inline-start:30px}.input-field__icon[data-v-36cd7849]{position:absolute;height:32px;width:32px;display:flex;align-items:center;justify-content:center;opacity:.7}.input-field__icon--leading[data-v-36cd7849]{inset-block-end:3px;inset-inline-start:2px}.input-field__icon--trailing[data-v-36cd7849]{inset-block-end:3px;inset-inline-end:2px}.input-field__clear-button.button-vue[data-v-36cd7849]{position:absolute;inset-block-end:3px;inset-inline-end:2px;min-width:unset;min-height:unset;height:32px;width:32px !important;border-radius:var(--border-radius-large)}.input-field__helper-text-message[data-v-36cd7849]{padding-block:4px;display:flex;align-items:center}.input-field__helper-text-message__icon[data-v-36cd7849]{margin-inline-end:8px}.input-field__helper-text-message--error[data-v-36cd7849]{color:var(--color-error-text)}.input-field__helper-text-message--success[data-v-36cd7849]{color:var(--color-success-text)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcInputField/NcInputField.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,8BACC,iBAAA,CACA,UAAA,CACA,wCAAA,CACA,sBAAA,CAEA,4CACC,WAAA,CACA,iBAAA,CAGD,wCACC,UAAA,CACA,oBAAA,CAGD,qCACC,QAAA,CACA,uBAAA,CACA,sBAAA,CACA,UAAA,CAEA,kCAAA,CACA,sBAAA,CAEA,6CAAA,CACA,4BAAA,CACA,gDAAA,CACA,wCAAA,CAEA,cAAA,CACA,uCAAA,CACA,oCAAA,CAGA,oDACC,eAAA,CAGD,kLAGC,yCAAA,CAID,iGACC,SAAA,CAGD,2CACC,WAAA,CAGD,8CACC,cAAA,CAGD,mDACC,2BAAA,CAGD,mDACC,yBAAA,CAGD,oDACC,uBAAA,CAGD,8CACC,4CAAA,CACA,4DACC,+GAAA,CAID,wKAEC,+BAAA,CAIF,4CACC,0CAAA,CACA,0DACC,+GAAA,CAID,oKAEC,6BAAA,CAMD,gRAEC,kCAAA,CAKH,qCACC,iBAAA,CACA,oBAAA,CAEA,WAAA,CACA,qBAAA,CACA,aAAA,CACA,sBAAA,CACA,cAAA,CAEA,mCAAA,CAEA,kBAAA,CACA,eAAA,CACA,sBAAA,CAEA,mBAAA,CAEA,6MAAA,CAEA,mDAEC,wBAAA,CAGD,oDAEC,sBAAA,CAIF,gJAEC,sBAAA,CACA,cAAA,CACA,6CAAA,CACA,WAAA,CACA,kBAAA,CACA,uBAAA,CAEA,+IAAA,CACA,4KACC,wBAAA,CAIF,oCACC,iBAAA,CACA,WAAA,CACA,UAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,6CACC,mBAAA,CACA,sBAAA,CAGD,8CACC,mBAAA,CACA,oBAAA,CAIF,uDACC,iBAAA,CACA,mBAAA,CACA,oBAAA,CACA,eAAA,CACA,gBAAA,CACA,WAAA,CACA,qBAAA,CACA,wCAAA,CAGD,mDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CAEA,yDACC,qBAAA,CAGD,0DACC,6BAAA,CAGD,4DACC,+BAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.input-field {\\n\\tposition: relative;\\n\\twidth: 100%;\\n\\tborder-radius: var(--border-radius-large);\\n\\tmargin-block-start: 6px; // for the label in active state\\n\\n\\t&__main-wrapper {\\n\\t\\theight: 38px; // 44px - 6px margin\\n\\t\\tposition: relative;\\n\\t}\\n\\n\\t&--disabled {\\n\\t\\topacity: 0.7;\\n\\t\\tfilter: saturate(0.7);\\n\\t}\\n\\n\\t&__input {\\n\\t\\tmargin: 0;\\n\\t\\tpadding-inline: 10px 6px; // align with label 8px margin label + 4px padding label - 2px border input\\n\\t\\theight: 38px !important;\\n\\t\\twidth: 100%;\\n\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\ttext-overflow: ellipsis;\\n\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 2px solid var(--color-border-maxcontrast);\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\n\\t\\tcursor: pointer;\\n\\t\\t-webkit-appearance: textfield !important;\\n\\t\\t-moz-appearance: textfield !important;\\n\\n\\t\\t// Center text if external label is used\\n\\t\\t&--label-outside {\\n\\t\\t\\tpadding-block: 0;\\n\\t\\t}\\n\\n\\t\\t&:active:not([disabled]),\\n\\t\\t&:hover:not([disabled]),\\n\\t\\t&:focus:not([disabled]) {\\n\\t\\t\\tborder-color: var(--color-primary-element);\\n\\t\\t}\\n\\n\\t\\t// Hide placeholder while not focussed -> show label instead (only if internal label is used)\\n\\t\\t&:not(:focus,&--label-outside)::placeholder {\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&:focus {\\n\\t\\t\\tcursor: text;\\n\\t\\t}\\n\\n\\t\\t&:disabled {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\n\\t\\t&:focus-visible {\\n\\t\\t\\tbox-shadow: unset !important; // Override server rules\\n\\t\\t}\\n\\n\\t\\t&--leading-icon {\\n\\t\\t\\tpadding-inline-start: 32px;\\n\\t\\t}\\n\\n\\t\\t&--trailing-icon {\\n\\t\\t\\tpadding-inline-end: 32px;\\n\\t\\t}\\n\\n\\t\\t&--success {\\n\\t\\t\\tborder-color: var(--color-success) !important; //Override hover border color\\n\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\tbox-shadow: rgb(248, 250, 252) 0px 0px 0px 2px, var(--color-primary-element) 0px 0px 0px 4px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px\\n\\t\\t\\t}\\n\\n\\t\\t\\t// Align label text color with border color (on hover / focus)\\n\\t\\t\\t&:focus + .input-field__label,\\n\\t\\t\\t&:hover:not(:placeholder-shown) + .input-field__label {\\n\\t\\t\\t\\tcolor: var(--color-success-text);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t&--error {\\n\\t\\t\\tborder-color: var(--color-error) !important; //Override hover border color\\n\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\tbox-shadow: rgb(248, 250, 252) 0px 0px 0px 2px, var(--color-primary-element) 0px 0px 0px 4px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px\\n\\t\\t\\t}\\n\\n\\t\\t\\t// Align label text color with border color (on hover / focus)\\n\\t\\t\\t&:focus + .input-field__label,\\n\\t\\t\\t&:hover:not(:placeholder-shown) + .input-field__label {\\n\\t\\t\\t\\tcolor: var(--color-error-text);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Align label text color with border color (on hover / focus)\\n\\t\\t&:not(&--success, &--error) {\\n\\t\\t\\t&:focus + .input-field__label,\\n\\t\\t\\t&:hover:not(:placeholder-shown) + .input-field__label {\\n\\t\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__label {\\n\\t\\tposition: absolute;\\n\\t\\tmargin-inline: 12px 0;\\n\\t\\t// fix height and line height to center label\\n\\t\\theight: 17px;\\n\\t\\tmax-width: fit-content;\\n\\t\\tline-height: 1;\\n\\t\\tinset-block-start: 12px;\\n\\t\\tinset-inline: 0;\\n\\t\\t// Fix color so that users do not think the input already has content\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t// only one line labels are allowed\\n\\t\\twhite-space: nowrap;\\n\\t\\toverflow: hidden;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\t// forward events to input\\n\\t\\tpointer-events: none;\\n\\t\\t// Position transition\\n\\t\\ttransition: height var(--animation-quick), inset-block-start var(--animation-quick), font-size var(--animation-quick), color var(--animation-quick), background-color var(--animation-quick) var(--animation-slow);\\n\\n\\t\\t&--leading-icon {\\n\\t\\t\\t// 32px icon + 2px border\\n\\t\\t\\tmargin-inline-start: 34px;\\n\\t\\t}\\n\\n\\t\\t&--trailing-icon {\\n\\t\\t\\t// 32px icon + 2px border\\n\\t\\t\\tmargin-inline-end: 34px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__input:focus + &__label,\\n\\t&__input:not(:placeholder-shown) + &__label {\\n\\t\\tinset-block-start: -6px;\\n\\t\\tfont-size: 13px; // minimum allowed font size for accessibility\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\theight: 14px;\\n\\t\\tpadding-inline: 4px;\\n\\t\\tmargin-inline-start: 8px;\\n\\n\\t\\ttransition: height var(--animation-quick), inset-block-start var(--animation-quick), font-size var(--animation-quick), color var(--animation-quick);\\n\\t\\t&--leading-icon {\\n\\t\\t\\tmargin-inline-start: 30px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__icon {\\n\\t\\tposition: absolute;\\n\\t\\theight: 32px;\\n\\t\\twidth: 32px;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\topacity: 0.7;\\n\\n\\t\\t&--leading {\\n\\t\\t\\tinset-block-end: 3px;\\n\\t\\t\\tinset-inline-start: 2px;\\n\\t\\t}\\n\\n\\t\\t&--trailing {\\n\\t\\t\\tinset-block-end: 3px;\\n\\t\\t\\tinset-inline-end: 2px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__clear-button.button-vue {\\n\\t\\tposition: absolute;\\n\\t\\tinset-block-end: 3px;\\n\\t\\tinset-inline-end: 2px;\\n\\t\\tmin-width: unset;\\n\\t\\tmin-height: unset;\\n\\t\\theight: 32px;\\n\\t\\twidth: 32px !important;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t}\\n\\n\\t&__helper-text-message {\\n\\t\\tpadding-block: 4px;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\n\\t\\t&__icon {\\n\\t\\t\\tmargin-inline-end: 8px;\\n\\t\\t}\\n\\n\\t\\t&--error {\\n\\t\\t\\tcolor: var(--color-error-text);\\n\\t\\t}\\n\\n\\t\\t&--success {\\n\\t\\t\\tcolor: var(--color-success-text);\\n\\t\\t}\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const l=i},3645:t=>{\"use strict\";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=\"\",r=void 0!==e[5];return e[4]&&(n+=\"@supports (\".concat(e[4],\") {\")),e[2]&&(n+=\"@media \".concat(e[2],\" {\")),r&&(n+=\"@layer\".concat(e[5].length>0?\" \".concat(e[5]):\"\",\" {\")),n+=t(e),r&&(n+=\"}\"),e[2]&&(n+=\"}\"),e[4]&&(n+=\"}\"),n})).join(\"\")},e.i=function(t,n,r,o,a){\"string\"==typeof t&&(t=[[null,t,void 0]]);var i={};if(r)for(var l=0;l0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=a),n&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=n):d[2]=n),o&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=o):d[4]=\"\".concat(o)),e.push(d))}},e}},7537:t=>{\"use strict\";t.exports=function(t){var e=t[1],n=t[3];if(!n)return e;if(\"function\"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(r),a=\"/*# \".concat(o,\" */\");return[e].concat([a]).join(\"\\n\")}return[e].join(\"\\n\")}},3379:t=>{\"use strict\";var e=[];function n(t){for(var n=-1,r=0;r{\"use strict\";var e={};t.exports=function(t,n){var r=function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}e[t]=n}return e[t]}(t);if(!r)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");r.appendChild(n)}},9216:t=>{\"use strict\";t.exports=function(t){var e=document.createElement(\"style\");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},3565:(t,e,n)=>{\"use strict\";t.exports=function(t){var e=n.nc;e&&t.setAttribute(\"nonce\",e)}},7795:t=>{\"use strict\";t.exports=function(t){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var e=t.insertStyleElement(t);return{update:function(n){!function(t,e,n){var r=\"\";n.supports&&(r+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(r+=\"@media \".concat(n.media,\" {\"));var o=void 0!==n.layer;o&&(r+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),r+=n.css,o&&(r+=\"}\"),n.media&&(r+=\"}\"),n.supports&&(r+=\"}\");var a=n.sourceMap;a&&\"undefined\"!=typeof btoa&&(r+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a)))),\" */\")),e.styleTagTransform(r,t,e.options)}(e,t,n)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},4589:t=>{\"use strict\";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},2102:()=>{},4348:()=>{},1900:(t,e,n)=>{\"use strict\";function r(t,e,n,r,o,a,i,l){var c,s=\"function\"==typeof t?t.options:t;if(e&&(s.render=e,s.staticRenderFns=n,s._compiled=!0),r&&(s.functional=!0),a&&(s._scopeId=\"data-v-\"+a),i?(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__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(i)},s._ssrRegister=c):o&&(c=l?function(){o.call(this,(s.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(s.functional){s._injectStyles=c;var d=s.render;s.render=function(t,e){return c.call(e),d(t,e)}}else{var u=s.beforeCreate;s.beforeCreate=u?[].concat(u,c):[c]}return{exports:t,options:s}}n.d(e,{Z:()=>r})}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var a=e[r]={id:r,exports:{}};return t[r](a,a.exports,n),a.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.nc=void 0;var r={};return(()=>{\"use strict\";n.r(r),n.d(r,{default:()=>D});var t=n(3089);const e=function(t){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,t||5)},o=require(\"vue-material-design-icons/AlertCircleOutline.vue\");var a=n.n(o);const i=require(\"vue-material-design-icons/Check.vue\");var l=n.n(i);const c={name:\"NcInputField\",components:{NcButton:t.default,AlertCircle:a(),Check:l()},inheritAttrs:!1,props:{value:{type:String,required:!0},type:{type:String,default:\"text\",validator:function(t){return[\"text\",\"password\",\"email\",\"tel\",\"url\",\"search\",\"number\"].includes(t)}},label:{type:String,default:void 0},labelOutside:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},showTrailingButton:{type:Boolean,default:!1},trailingButtonLabel:{type:String,default:\"\"},success:{type:Boolean,default:!1},error:{type:Boolean,default:!1},helperText:{type:String,default:\"\"},disabled:{type:Boolean,default:!1},inputClass:{type:[Object,String],default:\"\"}},emits:[\"update:value\",\"trailing-button-click\"],computed:{computedId:function(){return this.$attrs.id&&\"\"!==this.$attrs.id?this.$attrs.id:this.inputName},inputName:function(){return\"input\"+e()},hasLeadingIcon:function(){return this.$slots.default},hasTrailingIcon:function(){return this.success},hasPlaceholder:function(){return\"\"!==this.placeholder&&void 0!==this.placeholder},computedPlaceholder:function(){return this.hasPlaceholder?this.placeholder:this.label},isValidLabel:function(){var t=this.label||this.labelOutside;return t||console.warn(\"You need to add a label to the NcInputField component. Either use the prop label or use an external one, as per the example in the documentation.\"),t},ariaDescribedby:function(){var t=[];return this.helperText.length>0&&t.push(\"\".concat(this.inputName,\"-helper-text\")),this.$attrs[\"aria-describedby\"]&&t.push(this.$attrs[\"aria-describedby\"]),t.join(\" \")||null}},methods:{focus:function(){this.$refs.input.focus()},select:function(){this.$refs.input.select()},handleInput:function(t){this.$emit(\"update:value\",t.target.value)},handleTrailingButtonClick:function(t){this.$emit(\"trailing-button-click\",t)}}};var s=n(3379),d=n.n(s),u=n(7795),A=n.n(u),p=n(569),v=n.n(p),C=n(3565),f=n.n(C),b=n(9216),h=n.n(b),g=n(4589),m=n.n(g),x=n(4671),y={};y.styleTagTransform=m(),y.setAttributes=f(),y.insert=v().bind(null,\"head\"),y.domAPI=A(),y.insertStyleElement=h();d()(x.Z,y);x.Z&&x.Z.locals&&x.Z.locals;var _=n(1900),w=n(4348),k=n.n(w),B=(0,_.Z)(c,(function(){var t=this,e=t._self._c;return e(\"div\",{staticClass:\"input-field\",class:{\"input-field--disabled\":t.disabled}},[e(\"div\",{staticClass:\"input-field__main-wrapper\"},[e(\"input\",t._g(t._b({ref:\"input\",staticClass:\"input-field__input\",class:[t.inputClass,{\"input-field__input--trailing-icon\":t.showTrailingButton||t.hasTrailingIcon,\"input-field__input--leading-icon\":t.hasLeadingIcon,\"input-field__input--label-outside\":t.labelOutside,\"input-field__input--success\":t.success,\"input-field__input--error\":t.error}],attrs:{id:t.computedId,type:t.type,disabled:t.disabled,placeholder:t.computedPlaceholder,\"aria-describedby\":t.ariaDescribedby,\"aria-live\":\"polite\"},domProps:{value:t.value},on:{input:t.handleInput}},\"input\",t.$attrs,!1),t.$listeners)),t._v(\" \"),!t.labelOutside&&t.isValidLabel?e(\"label\",{staticClass:\"input-field__label\",class:[{\"input-field__label--trailing-icon\":t.showTrailingButton||t.hasTrailingIcon,\"input-field__label--leading-icon\":t.hasLeadingIcon}],attrs:{for:t.computedId}},[t._v(\"\\n\\t\\t\\t\"+t._s(t.label)+\"\\n\\t\\t\")]):t._e(),t._v(\" \"),e(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.hasLeadingIcon,expression:\"hasLeadingIcon\"}],staticClass:\"input-field__icon input-field__icon--leading\"},[t._t(\"default\")],2),t._v(\" \"),t.showTrailingButton?e(\"NcButton\",{staticClass:\"input-field__clear-button\",attrs:{type:\"tertiary-no-background\",\"aria-label\":t.trailingButtonLabel,disabled:t.disabled},on:{click:t.handleTrailingButtonClick},scopedSlots:t._u([{key:\"icon\",fn:function(){return[t._t(\"trailing-button-icon\")]},proxy:!0}],null,!0)}):t.success||t.error?e(\"div\",{staticClass:\"input-field__icon input-field__icon--trailing\"},[t.success?e(\"Check\",{staticStyle:{color:\"var(--color-success-text)\"},attrs:{size:20}}):t.error?e(\"AlertCircle\",{staticStyle:{color:\"var(--color-error-text)\"},attrs:{size:20}}):t._e()],1):t._e()],1),t._v(\" \"),t.helperText.length>0?e(\"p\",{staticClass:\"input-field__helper-text-message\",class:{\"input-field__helper-text-message--error\":t.error,\"input-field__helper-text-message--success\":t.success},attrs:{id:\"\".concat(t.inputName,\"-helper-text\")}},[t.success?e(\"Check\",{staticClass:\"input-field__helper-text-message__icon\",attrs:{size:18}}):t.error?e(\"AlertCircle\",{staticClass:\"input-field__helper-text-message__icon\",attrs:{size:18}}):t._e(),t._v(\"\\n\\t\\t\"+t._s(t.helperText)+\"\\n\\t\")],1):t._e()])}),[],!1,null,\"36cd7849\",null);\"function\"==typeof k()&&k()(B);const D=B.exports})(),r})()));\n//# sourceMappingURL=NcInputField.js.map","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { generateRemoteUrl } from '@nextcloud/router'\nimport { getCurrentUser } from '@nextcloud/auth'\n\nexport const getRootPath = function() {\n\tif (getCurrentUser()) {\n\t\treturn generateRemoteUrl(`dav/files/${getCurrentUser().uid}`)\n\t} else {\n\t\treturn generateRemoteUrl('webdav').replace('/remote.php', '/public.php')\n\t}\n}\n\nexport const isPublic = function() {\n\treturn !getCurrentUser()\n}\n\nexport const getToken = function() {\n\treturn document.getElementById('sharingToken') && document.getElementById('sharingToken').value\n}\n\n/**\n * Return the current directory, fallback to root\n *\n * @return {string}\n */\nexport const getCurrentDirectory = function() {\n\tconst currentDirInfo = OCA?.Files?.App?.currentFileList?.dirInfo\n\t\t|| { path: '/', name: '' }\n\n\t// Make sure we don't have double slashes\n\treturn `${currentDirInfo.path}/${currentDirInfo.name}`.replace(/\\/\\//gi, '/')\n}\n","/**\n * @copyright Copyright (c) 2021 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { generateOcsUrl } from '@nextcloud/router'\nimport axios from '@nextcloud/axios'\n\nexport const getTemplates = async function() {\n\tconst response = await axios.get(generateOcsUrl('apps/files/api/v1/templates'))\n\treturn response.data.ocs.data\n}\n\n/**\n * Create a new file from a specified template\n *\n * @param {string} filePath The new file destination path\n * @param {string} templatePath The template source path\n * @param {string} templateType The template type e.g 'user'\n */\nexport const createFromTemplate = async function(filePath, templatePath, templateType) {\n\tconst response = await axios.post(generateOcsUrl('apps/files/api/v1/templates/create'), {\n\t\tfilePath,\n\t\ttemplatePath,\n\t\ttemplateType,\n\t})\n\treturn response.data.ocs.data\n}\n","\n\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=script&lang=js&\"","/**\n * @copyright Copyright (c) 2021 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nconst encodeFilePath = function(path) {\n\tconst pathSections = (path.startsWith('/') ? path : `/${path}`).split('/')\n\tlet relativePath = ''\n\tpathSections.forEach((section) => {\n\t\tif (section !== '') {\n\t\t\trelativePath += '/' + encodeURIComponent(section)\n\t\t}\n\t})\n\treturn relativePath\n}\n\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nconst extractFilePaths = function(path) {\n\tconst pathSections = path.split('/')\n\tconst fileName = pathSections[pathSections.length - 1]\n\tconst dirPath = pathSections.slice(0, pathSections.length - 1).join('/')\n\treturn [dirPath, fileName]\n}\n\nexport { encodeFilePath, extractFilePaths }\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./TemplatePreview.vue?vue&type=template&id=5b09ec60&scoped=true&\"\nimport script from \"./TemplatePreview.vue?vue&type=script&lang=js&\"\nexport * from \"./TemplatePreview.vue?vue&type=script&lang=js&\"\nimport style0 from \"./TemplatePreview.vue?vue&type=style&index=0&id=5b09ec60&prod&lang=scss&scoped=true&\"\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 \"5b09ec60\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('li',{staticClass:\"template-picker__item\"},[_c('input',{staticClass:\"radio\",attrs:{\"id\":_vm.id,\"type\":\"radio\",\"name\":\"template-picker\"},domProps:{\"checked\":_vm.checked},on:{\"change\":_vm.onCheck}}),_vm._v(\" \"),_c('label',{staticClass:\"template-picker__label\",attrs:{\"for\":_vm.id}},[_c('div',{staticClass:\"template-picker__preview\",class:_vm.failedPreview ? 'template-picker__preview--failed' : ''},[_c('img',{staticClass:\"template-picker__image\",attrs:{\"src\":_vm.realPreviewUrl,\"alt\":\"\",\"draggable\":\"false\"},on:{\"error\":_vm.onFailure}})]),_vm._v(\" \"),_c('span',{staticClass:\"template-picker__title\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.nameWithoutExt)+\"\\n\\t\\t\")])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./TemplatePicker.vue?vue&type=template&id=d46f1dc6&scoped=true&\"\nimport script from \"./TemplatePicker.vue?vue&type=script&lang=js&\"\nexport * from \"./TemplatePicker.vue?vue&type=script&lang=js&\"\nimport style0 from \"./TemplatePicker.vue?vue&type=style&index=0&id=d46f1dc6&prod&lang=scss&scoped=true&\"\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 \"d46f1dc6\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.opened)?_c('NcModal',{staticClass:\"templates-picker\",attrs:{\"clear-view-delay\":-1,\"size\":\"large\"},on:{\"close\":_vm.close}},[_c('form',{staticClass:\"templates-picker__form\",style:(_vm.style),on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onSubmit.apply(null, arguments)}}},[_c('h2',[_vm._v(_vm._s(_vm.t('files', 'Pick a template for {name}', { name: _vm.nameWithoutExt })))]),_vm._v(\" \"),_c('ul',{staticClass:\"templates-picker__list\"},[_c('TemplatePreview',_vm._b({attrs:{\"checked\":_vm.checked === _vm.emptyTemplate.fileid},on:{\"check\":_vm.onCheck}},'TemplatePreview',_vm.emptyTemplate,false)),_vm._v(\" \"),_vm._l((_vm.provider.templates),function(template){return _c('TemplatePreview',_vm._b({key:template.fileid,attrs:{\"checked\":_vm.checked === template.fileid,\"ratio\":_vm.provider.ratio},on:{\"check\":_vm.onCheck}},'TemplatePreview',template,false))})],2),_vm._v(\" \"),_c('div',{staticClass:\"templates-picker__buttons\"},[_c('input',{staticClass:\"primary\",attrs:{\"type\":\"submit\",\"aria-label\":_vm.t('files', 'Create a new file with the selected template')},domProps:{\"value\":_vm.t('files', 'Create')}})])]),_vm._v(\" \"),(_vm.loading)?_c('NcEmptyContent',{staticClass:\"templates-picker__loading\",attrs:{\"icon\":\"icon-loading\"}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('files', 'Creating file'))+\"\\n\\t\")]):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2020 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Julius Härtl \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { getLoggerBuilder } from '@nextcloud/logger'\nimport { loadState } from '@nextcloud/initial-state'\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n'\nimport { generateOcsUrl } from '@nextcloud/router'\nimport { getCurrentDirectory } from './utils/davUtils.js'\nimport axios from '@nextcloud/axios'\nimport Vue from 'vue'\n\nimport TemplatePickerView from './views/TemplatePicker.vue'\nimport { showError } from '@nextcloud/dialogs'\n\n// Set up logger\nconst logger = getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n\n// Add translates functions\nVue.mixin({\n\tmethods: {\n\t\tt,\n\t\tn,\n\t},\n})\n\n// Create document root\nconst TemplatePickerRoot = document.createElement('div')\nTemplatePickerRoot.id = 'template-picker'\ndocument.body.appendChild(TemplatePickerRoot)\n\n// Retrieve and init templates\nlet templates = loadState('files', 'templates', [])\nlet templatesPath = loadState('files', 'templates_path', false)\nlogger.debug('Templates providers', templates)\nlogger.debug('Templates folder', { templatesPath })\n\n// Init vue app\nconst View = Vue.extend(TemplatePickerView)\nconst TemplatePicker = new View({\n\tname: 'TemplatePicker',\n\tpropsData: {\n\t\tlogger,\n\t},\n})\nTemplatePicker.$mount('#template-picker')\n\n// Init template engine after load to make sure it's the last injected entry\nwindow.addEventListener('DOMContentLoaded', function() {\n\tif (!templatesPath) {\n\t\tlogger.debug('Templates folder not initialized')\n\t\tconst initTemplatesPlugin = {\n\t\t\tattach(menu) {\n\t\t\t\t// register the new menu entry\n\t\t\t\tmenu.addMenuEntry({\n\t\t\t\t\tid: 'template-init',\n\t\t\t\t\tdisplayName: t('files', 'Set up templates folder'),\n\t\t\t\t\ttemplateName: t('files', 'Templates'),\n\t\t\t\t\ticonClass: 'icon-template-add',\n\t\t\t\t\tfileType: 'file',\n\t\t\t\t\tactionLabel: t('files', 'Create new templates folder'),\n\t\t\t\t\tactionHandler(name) {\n\t\t\t\t\t\tinitTemplatesFolder(name)\n\t\t\t\t\t\tmenu.removeMenuEntry('template-init')\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t},\n\t\t}\n\t\tOC.Plugins.register('OCA.Files.NewFileMenu', initTemplatesPlugin)\n\t}\n})\n\n// Init template files menu\ntemplates.forEach((provider, index) => {\n\tconst newTemplatePlugin = {\n\t\tattach(menu) {\n\t\t\tconst fileList = menu.fileList\n\n\t\t\t// only attach to main file list, public view is not supported yet\n\t\t\tif (fileList.id !== 'files' && fileList.id !== 'files.public') {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\t// register the new menu entry\n\t\t\tmenu.addMenuEntry({\n\t\t\t\tid: `template-new-${provider.app}-${index}`,\n\t\t\t\tdisplayName: provider.label,\n\t\t\t\ttemplateName: provider.label + provider.extension,\n\t\t\t\ticonClass: provider.iconClass || 'icon-file',\n\t\t\t\tfileType: 'file',\n\t\t\t\tactionLabel: provider.actionLabel,\n\t\t\t\tactionHandler(name) {\n\t\t\t\t\tTemplatePicker.open(name, provider)\n\t\t\t\t},\n\t\t\t})\n\t\t},\n\t}\n\tOC.Plugins.register('OCA.Files.NewFileMenu', newTemplatePlugin)\n})\n\n/**\n * Init the template directory\n *\n * @param {string} name the templates folder name\n */\nconst initTemplatesFolder = async function(name) {\n\tconst templatePath = (getCurrentDirectory() + `/${name}`).replace('//', '/')\n\ttry {\n\t\tlogger.debug('Initializing the templates directory', { templatePath })\n\t\tconst response = await axios.post(generateOcsUrl('apps/files/api/v1/templates/path'), {\n\t\t\ttemplatePath,\n\t\t\tcopySystemTemplates: true,\n\t\t})\n\n\t\t// Go to template directory\n\t\tOCA.Files.App.currentFileList.changeDirectory(templatePath, true, true)\n\n\t\ttemplates = response.data.ocs.data.templates\n\t\ttemplatesPath = response.data.ocs.data.template_path\n\t} catch (error) {\n\t\tlogger.error('Unable to initialize the templates directory')\n\t\tshowError(t('files', 'Unable to initialize the templates directory'))\n\t}\n}\n","/*\n * @copyright Copyright (c) 2021 Julius Härtl \n *\n * @author Julius Härtl \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { subscribe } from '@nextcloud/event-bus'\n\n(function() {\n\n\tconst FilesPlugin = {\n\t\tattach(fileList) {\n\t\t\tsubscribe('nextcloud:unified-search.search', ({ query }) => {\n\t\t\t\tfileList.setFilter(query)\n\t\t\t})\n\t\t\tsubscribe('nextcloud:unified-search.reset', () => {\n\t\t\t\tthis.query = null\n\t\t\t\tfileList.setFilter('')\n\t\t\t})\n\n\t\t},\n\t}\n\n\twindow.OC.Plugins.register('OCA.Files.FileList', FilesPlugin)\n\n})()\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { Permission, Node, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport TrashCanSvg from '@mdi/svg/svg/trash-can.svg?raw';\nimport logger from '../logger.js';\nexport const action = new FileAction({\n id: 'delete',\n displayName(nodes, view) {\n return view.id === 'trashbin'\n ? t('files_trashbin', 'Delete permanently')\n : t('files', 'Delete');\n },\n iconSvgInline: () => TrashCanSvg,\n enabled(nodes) {\n return nodes.length > 0 && nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.DELETE) !== 0);\n },\n async exec(node) {\n try {\n await axios.delete(node.source);\n // Let's delete even if it's moved to the trashbin\n // since it has been removed from the current view\n // and changing the view will trigger a reload anyway.\n emit('files:node:deleted', node);\n return true;\n }\n catch (error) {\n logger.error('Error while deleting a file', { error, source: node.source, node });\n return false;\n }\n },\n async execBatch(nodes, view, dir) {\n return Promise.all(nodes.map(node => this.exec(node, view, dir)));\n },\n order: 100,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router';\nimport { registerFileAction, FileAction, Permission, Node, FileType, View } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport ArrowDownSvg from '@mdi/svg/svg/arrow-down.svg?raw';\nconst triggerDownload = function (url) {\n const hiddenElement = document.createElement('a');\n hiddenElement.download = '';\n hiddenElement.href = url;\n hiddenElement.click();\n};\nconst downloadNodes = function (dir, nodes) {\n const secret = Math.random().toString(36).substring(2);\n const url = generateUrl('/apps/files/ajax/download.php?dir={dir}&files={files}&downloadStartSecret={secret}', {\n dir,\n secret,\n files: JSON.stringify(nodes.map(node => node.basename)),\n });\n triggerDownload(url);\n};\nexport const action = new FileAction({\n id: 'download',\n displayName: () => t('files', 'Download'),\n iconSvgInline: () => ArrowDownSvg,\n enabled(nodes) {\n if (nodes.length === 0) {\n return false;\n }\n // We can download direct dav files. But if we have\n // some folders, we need to use the /apps/files/ajax/download.php\n // endpoint, which only supports user root folder.\n if (nodes.some(node => node.type === FileType.Folder)\n && nodes.some(node => !node.root?.startsWith('/files'))) {\n return false;\n }\n return nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.READ) !== 0);\n },\n async exec(node, view, dir) {\n if (node.type === FileType.Folder) {\n downloadNodes(dir, [node]);\n return null;\n }\n triggerDownload(node.source);\n return null;\n },\n async execBatch(nodes, view, dir) {\n if (nodes.length === 1) {\n this.exec(nodes[0], view, dir);\n return [null];\n }\n downloadNodes(dir, nodes);\n return new Array(nodes.length).fill(null);\n },\n order: 30,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { encodePath } from '@nextcloud/paths';\nimport { generateOcsUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { registerFileAction, FileAction, Permission } from '@nextcloud/files';\nimport { showError } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport LaptopSvg from '@mdi/svg/svg/laptop.svg?raw';\nconst openLocalClient = async function (path) {\n const link = generateOcsUrl('apps/files/api/v1') + '/openlocaleditor?format=json';\n try {\n const result = await axios.post(link, { path });\n const uid = getCurrentUser()?.uid;\n let url = `nc://open/${uid}@` + window.location.host + encodePath(path);\n url += '?token=' + result.data.ocs.data.token;\n window.location.href = url;\n }\n catch (error) {\n showError(t('files', 'Failed to redirect to client'));\n }\n};\nexport const action = new FileAction({\n id: 'edit-locally',\n displayName: () => t('files', 'Edit locally'),\n iconSvgInline: () => LaptopSvg,\n // Only works on single files\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n return (nodes[0].permissions & Permission.UPDATE) !== 0;\n },\n async exec(node) {\n openLocalClient(node.path);\n return null;\n },\n order: 25,\n});\nif (!/Android|iPhone|iPad|iPod/i.test(navigator.userAgent)) {\n registerFileAction(action);\n}\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { Permission, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nimport StarOutlineSvg from '@mdi/svg/svg/star-outline.svg?raw';\nimport StarSvg from '@mdi/svg/svg/star.svg?raw';\nimport logger from '../logger.js';\n// If any of the nodes is not favorited, we display the favorite action.\nconst shouldFavorite = (nodes) => {\n return nodes.some(node => node.attributes.favorite !== 1);\n};\nexport const favoriteNode = async (node, view, willFavorite) => {\n try {\n // TODO: migrate to webdav tags plugin\n const url = generateUrl('/apps/files/api/v1/files') + node.path;\n await axios.post(url, {\n tags: willFavorite\n ? [window.OC.TAG_FAVORITE]\n : [],\n });\n // Let's delete if we are in the favourites view\n // AND if it is removed from the user favorites\n // AND it's in the root of the favorites view\n if (view.id === 'favorites' && !willFavorite && node.dirname === '/') {\n emit('files:node:deleted', node);\n }\n // Update the node webdav attribute\n Vue.set(node.attributes, 'favorite', willFavorite ? 1 : 0);\n // Dispatch event to whoever is interested\n if (willFavorite) {\n emit('files:favorites:added', node);\n }\n else {\n emit('files:favorites:removed', node);\n }\n return true;\n }\n catch (error) {\n const action = willFavorite ? 'adding a file to favourites' : 'removing a file from favourites';\n logger.error('Error while ' + action, { error, source: node.source, node });\n return false;\n }\n};\nexport const action = new FileAction({\n id: 'favorite',\n displayName(nodes) {\n return shouldFavorite(nodes)\n ? t('files', 'Add to favorites')\n : t('files', 'Remove from favorites');\n },\n iconSvgInline: (nodes) => {\n return shouldFavorite(nodes)\n ? StarOutlineSvg\n : StarSvg;\n },\n enabled(nodes) {\n // We can only favorite nodes within files and with permissions\n return !nodes.some(node => !node.root?.startsWith?.('/files'))\n && nodes.every(node => node.permissions !== Permission.NONE);\n },\n async exec(node, view) {\n const willFavorite = shouldFavorite([node]);\n return await favoriteNode(node, view, willFavorite);\n },\n async execBatch(nodes, view) {\n const willFavorite = shouldFavorite(nodes);\n return Promise.all(nodes.map(async (node) => await favoriteNode(node, view, willFavorite)));\n },\n order: -50,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { join } from 'path';\nimport { Permission, Node, FileType, View, registerFileAction, FileAction, DefaultType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nexport const action = new FileAction({\n id: 'open-folder',\n displayName(files) {\n // Only works on single node\n const displayName = files[0].attributes.displayName || files[0].basename;\n return t('files', 'Open folder {displayName}', { displayName });\n },\n iconSvgInline: () => FolderSvg,\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n if (!node.isDavRessource) {\n return false;\n }\n return node.type === FileType.Folder\n && (node.permissions & Permission.READ) !== 0;\n },\n async exec(node, view, dir) {\n if (!node || node.type !== FileType.Folder) {\n return false;\n }\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: undefined }, { dir: join(dir, node.basename), fileid: undefined });\n return null;\n },\n // Main action if enabled, meaning folders only\n default: DefaultType.HIDDEN,\n order: -100,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport { FileType } from '@nextcloud/files';\nimport { registerFileAction, FileAction, DefaultType } from '@nextcloud/files';\n/**\n * TODO: Move away from a redirect and handle\n * navigation straight out of the recent view\n */\nexport const action = new FileAction({\n id: 'open-in-files-recent',\n displayName: () => t('files', 'Open in Files'),\n iconSvgInline: () => '',\n enabled: (nodes, view) => view.id === 'recent',\n async exec(node) {\n let dir = node.dirname;\n if (node.type === FileType.Folder) {\n dir = dir + '/' + node.basename;\n }\n window.OCP.Files.Router.goToRoute(null, // use default route\n { view: 'files', fileid: node.fileid }, { dir, fileid: node.fileid });\n return null;\n },\n // Before openFolderAction\n order: -1000,\n default: DefaultType.HIDDEN,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { emit } from '@nextcloud/event-bus';\nimport { Permission, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport PencilSvg from '@mdi/svg/svg/pencil.svg?raw';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: 'rename',\n displayName: () => t('files', 'Rename'),\n iconSvgInline: () => PencilSvg,\n enabled: (nodes) => {\n return nodes.length > 0 && nodes\n .map(node => node.permissions)\n .every(permission => (permission & Permission.UPDATE) !== 0);\n },\n async exec(node) {\n // Renaming is a built-in feature of the files app\n emit('files:node:rename', node);\n return null;\n },\n order: 10,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Permission, View, registerFileAction, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: ACTION_DETAILS,\n displayName: () => t('files', 'Open details'),\n iconSvgInline: () => InformationSvg,\n // Sidebar currently supports user folder only, /files/USER\n enabled: (nodes) => {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n if (!nodes[0]) {\n return false;\n }\n // Only work if the sidebar is available\n if (!window?.OCA?.Files?.Sidebar) {\n return false;\n }\n return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n },\n async exec(node, view, dir) {\n try {\n // TODO: migrate Sidebar to use a Node instead\n await window.OCA.Files.Sidebar.open(node.path);\n // Silently update current fileid\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n return null;\n }\n catch (error) {\n logger.error('Error while opening sidebar', { error });\n return false;\n }\n },\n order: -50,\n});\nregisterFileAction(action);\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Node, FileType, Permission, View, registerFileAction, FileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nexport const action = new FileAction({\n id: 'view-in-folder',\n displayName() {\n return t('files', 'View in folder');\n },\n iconSvgInline: () => FolderMoveSvg,\n enabled(nodes) {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n if (!node.isDavRessource) {\n return false;\n }\n if (node.permissions === Permission.NONE) {\n return false;\n }\n return node.type === FileType.File;\n },\n async exec(node, view, dir) {\n if (!node || node.type !== FileType.File) {\n return false;\n }\n window.OCP.Files.Router.goToRoute(null, { view: 'files', fileid: node.fileid }, { dir: node.dirname });\n return null;\n },\n order: 80,\n});\nregisterFileAction(action);\n","import { addNewFileMenuEntry, Permission, Folder } from '@nextcloud/files';\nimport { basename, extname } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { showSuccess } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport axios from '@nextcloud/axios';\nimport FolderPlusSvg from '@mdi/svg/svg/folder-plus.svg?raw';\nimport Vue from 'vue';\nconst createNewFolder = async (root, name) => {\n const source = root + '/' + name;\n const response = await axios({\n method: 'MKCOL',\n url: source,\n headers: {\n Overwrite: 'F',\n },\n });\n return {\n fileid: parseInt(response.headers['oc-fileid']),\n source,\n };\n};\n// TODO: move to @nextcloud/files\nexport const getUniqueName = (name, names) => {\n let newName = name;\n let i = 1;\n while (names.includes(newName)) {\n const ext = extname(name);\n newName = `${basename(name, ext)} (${i++})${ext}`;\n }\n return newName;\n};\nconst entry = {\n id: 'newFolder',\n displayName: t('files', 'New folder'),\n if: (context) => (context.permissions & Permission.CREATE) !== 0,\n iconSvgInline: FolderPlusSvg,\n async handler(context, content) {\n const contentNames = content.map((node) => node.basename);\n const name = getUniqueName(t('files', 'New folder'), contentNames);\n const { fileid, source } = await createNewFolder(context.source, name);\n // Create the folder in the store\n const folder = new Folder({\n source,\n id: fileid,\n mtime: new Date(),\n owner: getCurrentUser()?.uid || null,\n permissions: Permission.ALL,\n root: context?.root || '/files/' + getCurrentUser()?.uid,\n });\n if (!context._children) {\n Vue.set(context, '_children', []);\n }\n context._children.push(folder.fileid);\n showSuccess(t('files', 'Created new folder \"{name}\"', { name: basename(source) }));\n emit('files:node:created', folder);\n emit('files:node:rename', folder);\n },\n};\naddNewFileMenuEntry(entry);\n","import Vue from 'vue'\nimport { getCurrentInstance } from 'vue'\n\nvar isVue2 = true\nvar isVue3 = false\nvar Vue2 = Vue\nvar warn = Vue.util.warn\n\nfunction install() {}\n\n// createApp polyfill\nexport function createApp(rootComponent, rootProps) {\n var vm\n var provide = {}\n var app = {\n config: Vue.config,\n use: Vue.use.bind(Vue),\n mixin: Vue.mixin.bind(Vue),\n component: Vue.component.bind(Vue),\n provide: function (key, value) {\n provide[key] = value\n return this\n },\n directive: function (name, dir) {\n if (dir) {\n Vue.directive(name, dir)\n return app\n } else {\n return Vue.directive(name)\n }\n },\n mount: function (el, hydrating) {\n if (!vm) {\n vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))\n vm.$mount(el, hydrating)\n return vm\n } else {\n return vm\n }\n },\n unmount: function () {\n if (vm) {\n vm.$destroy()\n vm = undefined\n }\n },\n }\n return app\n}\n\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n warn\n}\n\n// Vue 3 components mock\nfunction createMockComponent(name) {\n return {\n setup() {\n throw new Error('[vue-demi] ' + name + ' is not supported in Vue 2. It\\'s provided to avoid compiler errors.')\n }\n }\n}\nexport var Fragment = /*#__PURE__*/ createMockComponent('Fragment')\nexport var Transition = /*#__PURE__*/ createMockComponent('Transition')\nexport var TransitionGroup = /*#__PURE__*/ createMockComponent('TransitionGroup')\nexport var Teleport = /*#__PURE__*/ createMockComponent('Teleport')\nexport var Suspense = /*#__PURE__*/ createMockComponent('Suspense')\nexport var KeepAlive = /*#__PURE__*/ createMockComponent('KeepAlive')\n\nexport * from 'vue'\n\n// Not implemented https://github.com/vuejs/core/pull/8111, falls back to getCurrentInstance()\nexport function hasInjectionContext() {\n return !!getCurrentInstance()\n}\n","export function getDevtoolsGlobalHook() {\n return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;\n}\nexport function getTarget() {\n // @ts-ignore\n return (typeof navigator !== 'undefined' && typeof window !== 'undefined')\n ? window\n : typeof global !== 'undefined'\n ? global\n : {};\n}\nexport const isProxyAvailable = typeof Proxy === 'function';\n","export const HOOK_SETUP = 'devtools-plugin:setup';\nexport const HOOK_PLUGIN_SETTINGS_SET = 'plugin:settings:set';\n","let supported;\nlet perf;\nexport function isPerformanceSupported() {\n var _a;\n if (supported !== undefined) {\n return supported;\n }\n if (typeof window !== 'undefined' && window.performance) {\n supported = true;\n perf = window.performance;\n }\n else if (typeof global !== 'undefined' && ((_a = global.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) {\n supported = true;\n perf = global.perf_hooks.performance;\n }\n else {\n supported = false;\n }\n return supported;\n}\nexport function now() {\n return isPerformanceSupported() ? perf.now() : Date.now();\n}\n","import { HOOK_PLUGIN_SETTINGS_SET } from './const.js';\nimport { now } from './time.js';\nexport class ApiProxy {\n constructor(plugin, hook) {\n this.target = null;\n this.targetQueue = [];\n this.onQueue = [];\n this.plugin = plugin;\n this.hook = hook;\n const defaultSettings = {};\n if (plugin.settings) {\n for (const id in plugin.settings) {\n const item = plugin.settings[id];\n defaultSettings[id] = item.defaultValue;\n }\n }\n const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`;\n let currentSettings = Object.assign({}, defaultSettings);\n try {\n const raw = localStorage.getItem(localSettingsSaveId);\n const data = JSON.parse(raw);\n Object.assign(currentSettings, data);\n }\n catch (e) {\n // noop\n }\n this.fallbacks = {\n getSettings() {\n return currentSettings;\n },\n setSettings(value) {\n try {\n localStorage.setItem(localSettingsSaveId, JSON.stringify(value));\n }\n catch (e) {\n // noop\n }\n currentSettings = value;\n },\n now() {\n return now();\n },\n };\n if (hook) {\n hook.on(HOOK_PLUGIN_SETTINGS_SET, (pluginId, value) => {\n if (pluginId === this.plugin.id) {\n this.fallbacks.setSettings(value);\n }\n });\n }\n this.proxiedOn = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target.on[prop];\n }\n else {\n return (...args) => {\n this.onQueue.push({\n method: prop,\n args,\n });\n };\n }\n },\n });\n this.proxiedTarget = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target[prop];\n }\n else if (prop === 'on') {\n return this.proxiedOn;\n }\n else if (Object.keys(this.fallbacks).includes(prop)) {\n return (...args) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve: () => { },\n });\n return this.fallbacks[prop](...args);\n };\n }\n else {\n return (...args) => {\n return new Promise(resolve => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve,\n });\n });\n };\n }\n },\n });\n }\n async setRealTarget(target) {\n this.target = target;\n for (const item of this.onQueue) {\n this.target.on[item.method](...item.args);\n }\n for (const item of this.targetQueue) {\n item.resolve(await this.target[item.method](...item.args));\n }\n }\n}\n","import { getTarget, getDevtoolsGlobalHook, isProxyAvailable } from './env.js';\nimport { HOOK_SETUP } from './const.js';\nimport { ApiProxy } from './proxy.js';\nexport * from './api/index.js';\nexport * from './plugin.js';\nexport * from './time.js';\nexport function setupDevtoolsPlugin(pluginDescriptor, setupFn) {\n const descriptor = pluginDescriptor;\n const target = getTarget();\n const hook = getDevtoolsGlobalHook();\n const enableProxy = isProxyAvailable && descriptor.enableEarlyProxy;\n if (hook && (target.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !enableProxy)) {\n hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);\n }\n else {\n const proxy = enableProxy ? new ApiProxy(descriptor, hook) : null;\n const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];\n list.push({\n pluginDescriptor: descriptor,\n setupFn,\n proxy,\n });\n if (proxy)\n setupFn(proxy.proxiedTarget);\n }\n}\n","/*!\n * pinia v2.1.6\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly = { readonly [P in keyof T]: DeepReadonly }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '🍍 ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n // No longer available :(\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n loadStoresState(pinia, JSON.parse(text));\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nfunction loadStoresState(pinia, state) {\n for (const key in state) {\n const storeState = pinia.state.value[key];\n if (storeState) {\n Object.assign(storeState, state[key]);\n }\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia 🍍`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia 🍍',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('🍍')) {\n const storeId = payload.type.replace(/^🍍\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages ⚡️',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛫 ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛬 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '💥 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n if (type === MutationType.patchFunction) {\n eventData.subtitle = '⤵️';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '🧩';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🔥 ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed 🆕`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = wrapWithProxy\n ? new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n })\n : store;\n // For Setup Stores we need https://github.com/tc39/proposal-async-context\n activeAction = _actionId;\n const retValue = actions[actionName].apply(trackedStore, arguments);\n // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n activeAction = undefined;\n return retValue;\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n store._isOptionsAPI = !!options.state;\n patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n // Upgrade the HMR to also update the new actions\n const originalHotUpdate = store._hotUpdate;\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n };\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = pinia._e.run(() => {\n scope = effectScope();\n return runWithContext(() => scope.run(setup));\n });\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Did you forget to install pinia?\\n` +\n `\\tconst pinia = createPinia()\\n` +\n `\\tapp.use(pinia)\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('ShareVariantIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2776780758)}):_vm._e(),_vm._v(\" \"),(_vm.currentFolder && _vm.canUpload)?_c('UploadPicker',{attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":\"t('files', 'Go to the previous folder')\",\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * natural-orderby v3.0.2\n *\n * Copyright (c) Olaf Ennen\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nvar compareNumbers = function compareNumbers(numberA, numberB) {\n if (numberA < numberB) {\n return -1;\n }\n if (numberA > numberB) {\n return 1;\n }\n return 0;\n};\n\nvar compareUnicode = function compareUnicode(stringA, stringB) {\n var result = stringA.localeCompare(stringB);\n return result ? result / Math.abs(result) : 0;\n};\n\nvar RE_NUMBERS = /(^0x[\\da-fA-F]+$|^([+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?(?!\\.\\d+)(?=\\D|\\s|$))|\\d+)/g;\nvar RE_LEADING_OR_TRAILING_WHITESPACES = /^\\s+|\\s+$/g; // trim pre-post whitespace\nvar RE_WHITESPACES = /\\s+/g; // normalize all whitespace to single ' ' character\nvar RE_INT_OR_FLOAT = /^[+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?$/; // identify integers and floats\nvar RE_DATE = /(^([\\w ]+,?[\\w ]+)?[\\w ]+,?[\\w ]+\\d+:\\d+(:\\d+)?[\\w ]?|^\\d{1,4}[/-]\\d{1,4}[/-]\\d{1,4}|^\\w+, \\w+ \\d+, \\d{4})/; // identify date strings\nvar RE_LEADING_ZERO = /^0+[1-9]{1}[0-9]*$/;\n// eslint-disable-next-line no-control-regex\nvar RE_UNICODE_CHARACTERS = /[^\\x00-\\x80]/;\n\nvar stringCompare = function stringCompare(stringA, stringB) {\n if (stringA < stringB) {\n return -1;\n }\n if (stringA > stringB) {\n return 1;\n }\n return 0;\n};\n\nvar compareChunks = function compareChunks(chunksA, chunksB) {\n var lengthA = chunksA.length;\n var lengthB = chunksB.length;\n var size = Math.min(lengthA, lengthB);\n for (var i = 0; i < size; i++) {\n var chunkA = chunksA[i];\n var chunkB = chunksB[i];\n if (chunkA.normalizedString !== chunkB.normalizedString) {\n if (chunkA.normalizedString === '' !== (chunkB.normalizedString === '')) {\n // empty strings have lowest value\n return chunkA.normalizedString === '' ? -1 : 1;\n }\n if (chunkA.parsedNumber !== undefined && chunkB.parsedNumber !== undefined) {\n // compare numbers\n var result = compareNumbers(chunkA.parsedNumber, chunkB.parsedNumber);\n if (result === 0) {\n // compare string value, if parsed numbers are equal\n // Example:\n // chunkA = { parsedNumber: 1, normalizedString: \"001\" }\n // chunkB = { parsedNumber: 1, normalizedString: \"01\" }\n // chunkA.parsedNumber === chunkB.parsedNumber\n // chunkA.normalizedString < chunkB.normalizedString\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n return result;\n } else if (chunkA.parsedNumber !== undefined || chunkB.parsedNumber !== undefined) {\n // number < string\n return chunkA.parsedNumber !== undefined ? -1 : 1;\n } else if (RE_UNICODE_CHARACTERS.test(chunkA.normalizedString + chunkB.normalizedString)) {\n // use locale comparison only if one of the chunks contains unicode characters\n return compareUnicode(chunkA.normalizedString, chunkB.normalizedString);\n } else {\n // use common string comparison for performance reason\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n }\n }\n // if the chunks are equal so far, the one which has more chunks is greater than the other one\n if (lengthA > size || lengthB > size) {\n return lengthA <= size ? -1 : 1;\n }\n return 0;\n};\n\nvar compareOtherTypes = function compareOtherTypes(valueA, valueB) {\n if (!valueA.chunks ? valueB.chunks : !valueB.chunks) {\n return !valueA.chunks ? 1 : -1;\n }\n if (valueA.isNaN ? !valueB.isNaN : valueB.isNaN) {\n return valueA.isNaN ? -1 : 1;\n }\n if (valueA.isSymbol ? !valueB.isSymbol : valueB.isSymbol) {\n return valueA.isSymbol ? -1 : 1;\n }\n if (valueA.isObject ? !valueB.isObject : valueB.isObject) {\n return valueA.isObject ? -1 : 1;\n }\n if (valueA.isArray ? !valueB.isArray : valueB.isArray) {\n return valueA.isArray ? -1 : 1;\n }\n if (valueA.isFunction ? !valueB.isFunction : valueB.isFunction) {\n return valueA.isFunction ? -1 : 1;\n }\n if (valueA.isNull ? !valueB.isNull : valueB.isNull) {\n return valueA.isNull ? -1 : 1;\n }\n return 0;\n};\n\nvar compareValues = function compareValues(valueA, valueB) {\n if (valueA.value === valueB.value) {\n return 0;\n }\n if (valueA.parsedNumber !== undefined && valueB.parsedNumber !== undefined) {\n return compareNumbers(valueA.parsedNumber, valueB.parsedNumber);\n }\n if (valueA.chunks && valueB.chunks) {\n return compareChunks(valueA.chunks, valueB.chunks);\n }\n return compareOtherTypes(valueA, valueB);\n};\n\nvar normalizeAlphaChunk = function normalizeAlphaChunk(chunk) {\n return chunk.replace(RE_WHITESPACES, ' ').replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n};\n\nvar parseNumber = function parseNumber(value) {\n if (value.length !== 0) {\n var parsedNumber = Number(value);\n if (!Number.isNaN(parsedNumber)) {\n return parsedNumber;\n }\n }\n return undefined;\n};\n\nvar normalizeNumericChunk = function normalizeNumericChunk(chunk, index, chunks) {\n if (RE_INT_OR_FLOAT.test(chunk)) {\n // don´t parse a number, if there´s a preceding decimal point\n // to keep significance\n // e.g. 1.0020, 1.020\n if (!RE_LEADING_ZERO.test(chunk) || index === 0 || chunks[index - 1] !== '.') {\n return parseNumber(chunk) || 0;\n }\n }\n return undefined;\n};\n\nvar createChunkMap = function createChunkMap(chunk, index, chunks) {\n return {\n parsedNumber: normalizeNumericChunk(chunk, index, chunks),\n normalizedString: normalizeAlphaChunk(chunk)\n };\n};\n\nvar createChunks = function createChunks(value) {\n return value.replace(RE_NUMBERS, '\\0$1\\0').replace(/\\0$/, '').replace(/^\\0/, '').split('\\0');\n};\n\nvar createChunkMaps = function createChunkMaps(value) {\n var chunksMaps = createChunks(value).map(createChunkMap);\n return chunksMaps;\n};\n\nvar isFunction = function isFunction(value) {\n return typeof value === 'function';\n};\n\nvar isNaN = function isNaN(value) {\n return Number.isNaN(value) || value instanceof Number && Number.isNaN(value.valueOf());\n};\n\nvar isNull = function isNull(value) {\n return value === null;\n};\n\nvar isObject = function isObject(value) {\n return value !== null && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Number) && !(value instanceof String) && !(value instanceof Boolean) && !(value instanceof Date);\n};\n\nvar isSymbol = function isSymbol(value) {\n return typeof value === 'symbol';\n};\n\nvar isUndefined = function isUndefined(value) {\n return value === undefined;\n};\n\nvar parseDate = function parseDate(value) {\n try {\n var parsedDate = Date.parse(value);\n if (!Number.isNaN(parsedDate)) {\n if (RE_DATE.test(value)) {\n return parsedDate;\n }\n }\n return undefined;\n } catch (_unused) {\n return undefined;\n }\n};\n\nvar numberify = function numberify(value) {\n var parsedNumber = parseNumber(value);\n if (parsedNumber !== undefined) {\n return parsedNumber;\n }\n return parseDate(value);\n};\n\nvar stringify = function stringify(value) {\n if (typeof value === 'boolean' || value instanceof Boolean) {\n return Number(value).toString();\n }\n if (typeof value === 'number' || value instanceof Number) {\n return value.toString();\n }\n if (value instanceof Date) {\n return value.getTime().toString();\n }\n if (typeof value === 'string' || value instanceof String) {\n return value.toLowerCase().replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n }\n return '';\n};\n\nvar getMappedValueRecord = function getMappedValueRecord(value) {\n if (typeof value === 'string' || value instanceof String || (typeof value === 'number' || value instanceof Number) && !isNaN(value) || typeof value === 'boolean' || value instanceof Boolean || value instanceof Date) {\n var stringValue = stringify(value);\n var parsedNumber = numberify(stringValue);\n var chunks = createChunkMaps(parsedNumber ? \"\" + parsedNumber : stringValue);\n return {\n parsedNumber: parsedNumber,\n chunks: chunks,\n value: value\n };\n }\n return {\n isArray: Array.isArray(value),\n isFunction: isFunction(value),\n isNaN: isNaN(value),\n isNull: isNull(value),\n isObject: isObject(value),\n isSymbol: isSymbol(value),\n isUndefined: isUndefined(value),\n value: value\n };\n};\n\nvar baseCompare = function baseCompare(options) {\n return function (valueA, valueB) {\n var a = getMappedValueRecord(valueA);\n var b = getMappedValueRecord(valueB);\n var result = compareValues(a, b);\n return result * (options.order === 'desc' ? -1 : 1);\n };\n};\n\nvar isValidOrder = function isValidOrder(value) {\n return typeof value === 'string' && (value === 'asc' || value === 'desc');\n};\nvar getOptions = function getOptions(customOptions) {\n var order = 'asc';\n if (typeof customOptions === 'string' && isValidOrder(customOptions)) {\n order = customOptions;\n } else if (customOptions && typeof customOptions === 'object' && customOptions.order && isValidOrder(customOptions.order)) {\n order = customOptions.order;\n }\n return {\n order: order\n };\n};\n\n/**\n * Creates a compare function that defines the natural sort order considering\n * the given `options` which may be passed to [`Array.prototype.sort()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort).\n */\nfunction compare(options) {\n var validatedOptions = getOptions(options);\n return baseCompare(validatedOptions);\n}\n\nvar compareMultiple = function compareMultiple(recordA, recordB, orders) {\n var indexA = recordA.index,\n valuesA = recordA.values;\n var indexB = recordB.index,\n valuesB = recordB.values;\n var length = valuesA.length;\n var ordersLength = orders.length;\n for (var i = 0; i < length; i++) {\n var order = i < ordersLength ? orders[i] : null;\n if (order && typeof order === 'function') {\n var result = order(valuesA[i].value, valuesB[i].value);\n if (result) {\n return result;\n }\n } else {\n var _result = compareValues(valuesA[i], valuesB[i]);\n if (_result) {\n return _result * (order === 'desc' ? -1 : 1);\n }\n }\n }\n return indexA - indexB;\n};\n\nvar createIdentifierFn = function createIdentifierFn(identifier) {\n if (typeof identifier === 'function') {\n // identifier is already a lookup function\n return identifier;\n }\n return function (value) {\n if (Array.isArray(value)) {\n var index = Number(identifier);\n if (Number.isInteger(index)) {\n return value[index];\n }\n } else if (value && typeof value === 'object') {\n var result = Object.getOwnPropertyDescriptor(value, identifier);\n return result == null ? void 0 : result.value;\n }\n return value;\n };\n};\n\nvar getElementByIndex = function getElementByIndex(collection, index) {\n return collection[index];\n};\n\nvar getValueByIdentifier = function getValueByIdentifier(value, getValue) {\n return getValue(value);\n};\n\nvar baseOrderBy = function baseOrderBy(collection, identifiers, orders) {\n var identifierFns = identifiers.length ? identifiers.map(createIdentifierFn) : [function (value) {\n return value;\n }];\n\n // temporary array holds elements with position and sort-values\n var mappedCollection = collection.map(function (element, index) {\n var values = identifierFns.map(function (identifier) {\n return getValueByIdentifier(element, identifier);\n }).map(getMappedValueRecord);\n return {\n index: index,\n values: values\n };\n });\n\n // iterate over values and compare values until a != b or last value reached\n mappedCollection.sort(function (recordA, recordB) {\n return compareMultiple(recordA, recordB, orders);\n });\n return mappedCollection.map(function (element) {\n return getElementByIndex(collection, element.index);\n });\n};\n\nvar getIdentifiers = function getIdentifiers(identifiers) {\n if (!identifiers) {\n return [];\n }\n var identifierList = !Array.isArray(identifiers) ? [identifiers] : [].concat(identifiers);\n if (identifierList.some(function (identifier) {\n return typeof identifier !== 'string' && typeof identifier !== 'number' && typeof identifier !== 'function';\n })) {\n return [];\n }\n return identifierList;\n};\n\nvar getOrders = function getOrders(orders) {\n if (!orders) {\n return [];\n }\n var orderList = !Array.isArray(orders) ? [orders] : [].concat(orders);\n if (orderList.some(function (order) {\n return order !== 'asc' && order !== 'desc' && typeof order !== 'function';\n })) {\n return [];\n }\n return orderList;\n};\n\n/**\n * Creates an array of elements, natural sorted by specified identifiers and\n * the corresponding sort orders. This method implements a stable sort\n * algorithm, which means the original sort order of equal elements is\n * preserved.\n */\nfunction orderBy(collection, identifiers, orders) {\n if (!collection || !Array.isArray(collection)) {\n return [];\n }\n var validatedIdentifiers = getIdentifiers(identifiers);\n var validatedOrders = getOrders(orders);\n return baseOrderBy(collection, validatedIdentifiers, validatedOrders);\n}\n\nexport { compare, orderBy };\n","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ShareVariant.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ShareVariant.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./ShareVariant.vue?vue&type=template&id=1f144a5c&\"\nimport script from \"./ShareVariant.vue?vue&type=script&lang=js&\"\nexport * from \"./ShareVariant.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon share-variant-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n const store = defineStore('files', {\n state: () => ({\n files: {},\n roots: {},\n }),\n getters: {\n /**\n * Get a file or folder by id\n */\n getNode: (state) => (id) => state.files[id],\n /**\n * Get a list of files or folders by their IDs\n * Does not return undefined values\n */\n getNodes: (state) => (ids) => ids\n .map(id => state.files[id])\n .filter(Boolean),\n /**\n * Get a file or folder by id\n */\n getRoot: (state) => (service) => state.roots[service],\n },\n actions: {\n updateNodes(nodes) {\n // Update the store all at once\n const files = nodes.reduce((acc, node) => {\n if (!node.fileid) {\n logger.error('Trying to update/set a node without fileid', node);\n return acc;\n }\n acc[node.fileid] = node;\n return acc;\n }, {});\n Vue.set(this, 'files', { ...this.files, ...files });\n },\n deleteNodes(nodes) {\n nodes.forEach(node => {\n if (node.fileid) {\n Vue.delete(this.files, node.fileid);\n }\n });\n },\n setRoot({ service, root }) {\n Vue.set(this.roots, service, root);\n },\n onDeletedNode(node) {\n this.deleteNodes([node]);\n },\n onCreatedNode(node) {\n this.updateNodes([node]);\n },\n },\n });\n const fileStore = store(...args);\n // Make sure we only register the listeners once\n if (!fileStore._initialized) {\n subscribe('files:node:created', fileStore.onCreatedNode);\n subscribe('files:node:deleted', fileStore.onDeletedNode);\n // subscribe('files:node:moved', fileStore.onMovedNode)\n // subscribe('files:node:updated', fileStore.onUpdatedNode)\n fileStore._initialized = true;\n }\n return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n // Only init on runtime\n uploader = getUploader();\n const store = defineStore('uploader', {\n state: () => ({\n queue: uploader.queue,\n }),\n });\n return store(...args);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { Node, getNavigation } from '@nextcloud/files';\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const usePathsStore = function (...args) {\n const store = defineStore('paths', {\n state: () => ({\n paths: {},\n }),\n getters: {\n getPath: (state) => {\n return (service, path) => {\n if (!state.paths[service]) {\n return undefined;\n }\n return state.paths[service][path];\n };\n },\n },\n actions: {\n addPath(payload) {\n // If it doesn't exists, init the service state\n if (!this.paths[payload.service]) {\n Vue.set(this.paths, payload.service, {});\n }\n // Now we can set the provided path\n Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n },\n onCreatedNode(node) {\n const currentView = getNavigation().active;\n if (!node.fileid) {\n logger.error('Node has no fileid', { node });\n return;\n }\n this.addPath({\n service: currentView?.id || 'files',\n path: node.path,\n fileid: node.fileid,\n });\n },\n },\n });\n const pathsStore = store(...args);\n // Make sure we only register the listeners once\n if (!pathsStore._initialized) {\n // TODO: watch folders to update paths?\n subscribe('files:node:created', pathsStore.onCreatedNode);\n // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n // subscribe('files:node:moved', pathsStore.onMovedNode)\n pathsStore._initialized = true;\n }\n return pathsStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport { FileId, SelectionStore } from '../types';\nexport const useSelectionStore = defineStore('selection', {\n state: () => ({\n selected: [],\n lastSelection: [],\n lastSelectedIndex: null,\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'selected', selection);\n },\n /**\n * Set the last selected index\n */\n setLastIndex(lastSelectedIndex = null) {\n // Update the last selection if we provided a new selection starting point\n Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'selected', []);\n Vue.set(this, 'lastSelection', []);\n Vue.set(this, 'lastSelectedIndex', null);\n },\n },\n});\n","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n show_hidden: false,\n crop_image_previews: true,\n sort_favorites_first: true,\n});\nexport const useUserConfigStore = function (...args) {\n const store = defineStore('userconfig', {\n state: () => ({\n userConfig,\n }),\n actions: {\n /**\n * Update the user config local store\n */\n onUpdate(key, value) {\n Vue.set(this.userConfig, key, value);\n },\n /**\n * Update the user config local store AND on server side\n */\n async update(key, value) {\n await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n value,\n });\n emit('files:config:updated', { key, value });\n },\n },\n });\n const userConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!userConfigStore._initialized) {\n subscribe('files:config:updated', function ({ key, value }) {\n userConfigStore.onUpdate(key, value);\n });\n userConfigStore._initialized = true;\n }\n return userConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n const store = defineStore('viewconfig', {\n state: () => ({\n viewConfig,\n }),\n getters: {\n getConfig: (state) => (view) => state.viewConfig[view] || {},\n },\n actions: {\n /**\n * Update the view config local store\n */\n onUpdate(view, key, value) {\n if (!this.viewConfig[view]) {\n Vue.set(this.viewConfig, view, {});\n }\n Vue.set(this.viewConfig[view], key, value);\n },\n /**\n * Update the view config local store AND on server side\n */\n async update(view, key, value) {\n axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n value,\n });\n emit('files:viewconfig:updated', { view, key, value });\n },\n /**\n * Set the sorting key AND sort by ASC\n * The key param must be a valid key of a File object\n * If not found, will be searched within the File attributes\n */\n setSortingBy(key = 'basename', view = 'files') {\n // Save new config\n this.update(view, 'sorting_mode', key);\n this.update(view, 'sorting_direction', 'asc');\n },\n /**\n * Toggle the sorting direction\n */\n toggleSortingDirection(view = 'files') {\n const config = this.getConfig(view) || { sorting_direction: 'asc' };\n const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n // Save new config\n this.update(view, 'sorting_direction', newDirection);\n },\n },\n });\n const viewConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!viewConfigStore._initialized) {\n subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n viewConfigStore.onUpdate(view, key, value);\n });\n viewConfigStore._initialized = true;\n }\n return viewConfigStore;\n};\n","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=ec40407a&scoped=true&\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=js&\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=js&\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=ec40407a&prod&lang=scss&scoped=true&\"\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 \"ec40407a\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{attrs:{\"data-cy-files-content-breadcrumbs\":\"\"},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({key:section.dir,attrs:{\"aria-label\":_vm.ariaLabel(section),\"title\":_vm.ariaLabel(section)},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('Home',{attrs:{\"size\":20}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=aa295eae&\"\nimport script from \"./Key.vue?vue&type=script&lang=js&\"\nexport * from \"./Key.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=4d7171be&\"\nimport script from \"./Tag.vue?vue&type=script&lang=js&\"\nexport * from \"./Tag.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=7c7d2907&\"\nimport script from \"./Network.vue?vue&type=script&lang=js&\"\nexport * from \"./Network.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=98f97aee&\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js&\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n// The preview service worker cache name (see webpack config)\nconst SWCacheName = 'previews';\n/**\n * Check if the preview is already cached by the service worker\n */\nexport const isCachedPreview = function (previewUrl) {\n if (!window?.caches?.open) {\n return Promise.resolve(false);\n }\n return window?.caches?.open(SWCacheName)\n .then(function (cache) {\n return cache.match(previewUrl)\n .then(function (response) {\n return !!response;\n });\n });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n state: () => ({\n opened: null,\n }),\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6&\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts&\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts&\"\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\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./CustomSvgIconRender.vue?vue&type=template&id=93e9b2f4&scoped=true&\"\nimport script from \"./CustomSvgIconRender.vue?vue&type=script&lang=js&\"\nexport * from \"./CustomSvgIconRender.vue?vue&type=script&lang=js&\"\nimport style0 from \"./CustomSvgIconRender.vue?vue&type=style&index=0&id=93e9b2f4&prod&lang=scss&scoped=true&\"\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 \"93e9b2f4\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',{staticClass:\"custom-svg-icon\"})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=324501a3&scoped=true&\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=js&\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=js&\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=324501a3&prod&lang=scss&scoped=true&\"\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 \"324501a3\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('CustomSvgIconRender',{staticClass:\"favorite-marker-icon\",attrs:{\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--visible': _vm.visible, 'files-list__row--active': _vm.isActive},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename},on:{\"contextmenu\":_vm.onRightClick}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-checkbox\"},[(_vm.visible)?_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.t('files', 'Select the row for {displayName}', { displayName: _vm.displayName }),\"checked\":_vm.selectedFiles,\"value\":_vm.fileid,\"name\":\"selectedFiles\"},on:{\"update:checked\":_vm.onSelectionChange}}):_vm._e()],1),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('span',{staticClass:\"files-list__row-icon\",on:{\"click\":_vm.execDefaultAction}},[(_vm.source.type === 'folder')?[_c('FolderIcon'),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]:(_vm.previewUrl && !_vm.backgroundFailed)?_c('span',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",style:({ backgroundImage: _vm.backgroundImage })}):_c('FileIcon'),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\",attrs:{\"aria-label\":_vm.t('files', 'Favorite')}},[_c('FavoriteIcon',{attrs:{\"aria-hidden\":true}})],1):_vm._e()],2),_vm._v(\" \"),_c('form',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isRenaming),expression:\"isRenaming\"},{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-hidden\":!_vm.isRenaming,\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1),_vm._v(\" \"),_c('a',_vm._b({directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenaming),expression:\"!isRenaming\"}],ref:\"basename\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":_vm.execDefaultAction}},'a',_vm.linkTo,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])]),_vm._v(\" \"),_c('td',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],staticClass:\"files-list__row-actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),(_vm.visible)?_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement(),\"container\":_vm.getBoundariesElement(),\"disabled\":_vm.source._loading,\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-action-' + action.id,attrs:{\"close-after-click\":true,\"data-cy-files-list-row-action\":action.id},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('CustomSvgIconRender',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(action.displayName([_vm.source], _vm.currentView))+\"\\n\\t\\t\\t\")])}),1):_vm._e()],2),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:({ opacity: _vm.sizeOpacity }),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.mtime))])]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[(_vm.visible)?_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}}):_vm._e()],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n const store = defineStore('keyboard', {\n state: () => ({\n altKey: false,\n ctrlKey: false,\n metaKey: false,\n shiftKey: false,\n }),\n actions: {\n onEvent(event) {\n if (!event) {\n event = window.event;\n }\n Vue.set(this, 'altKey', !!event.altKey);\n Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n Vue.set(this, 'metaKey', !!event.metaKey);\n Vue.set(this, 'shiftKey', !!event.shiftKey);\n },\n },\n });\n const keyboardStore = store(...args);\n // Make sure we only register the listeners once\n if (!keyboardStore._initialized) {\n window.addEventListener('keydown', keyboardStore.onEvent);\n window.addEventListener('keyup', keyboardStore.onEvent);\n window.addEventListener('mousemove', keyboardStore.onEvent);\n keyboardStore._initialized = true;\n }\n return keyboardStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n const store = defineStore('renaming', {\n state: () => ({\n renamingNode: undefined,\n newName: '',\n }),\n });\n const renamingStore = store(...args);\n // Make sure we only register the listeners once\n if (!renamingStore._initialized) {\n subscribe('files:node:rename', function (node) {\n renamingStore.renamingNode = node;\n renamingStore.newName = node.basename;\n });\n renamingStore._initialized = true;\n }\n return renamingStore;\n};\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=10164d76&scoped=true&\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts&\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FileEntry.vue?vue&type=style&index=0&id=10164d76&prod&scoped=true&lang=scss&\"\nimport style1 from \"./FileEntry.vue?vue&type=style&index=1&id=10164d76&prod&lang=css&\"\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 \"10164d76\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153&\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts&\"\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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=5d5c2897&scoped=true&\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=5d5c2897&prod&scoped=true&lang=scss&\"\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 \"5d5c2897\",\n null\n \n)\n\nexport default component.exports","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n data() {\n return {\n filesListWidth: null,\n };\n },\n created() {\n const fileListEl = document.querySelector('#app-content-vue');\n this.$resizeObserver = new ResizeObserver((entries) => {\n if (entries.length > 0 && entries[0].target === fileListEl) {\n this.filesListWidth = entries[0].contentRect.width;\n }\n });\n this.$resizeObserver.observe(fileListEl);\n },\n beforeDestroy() {\n this.$resizeObserver.disconnect();\n },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('th',{staticClass:\"files-list__column files-list__row-actions-batch\",attrs:{\"colspan\":\"2\"}},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('CustomSvgIconRender',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=0d9363a1&scoped=true&\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=0d9363a1&prod&scoped=true&lang=scss&\"\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 \"0d9363a1\",\n null\n \n)\n\nexport default component.exports","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n computed: {\n ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n currentView() {\n return this.$navigation.active;\n },\n /**\n * Get the sorting mode for the current view\n */\n sortingMode() {\n return this.getConfig(this.currentView.id)?.sorting_mode\n || this.currentView?.defaultSortKey\n || 'basename';\n },\n /**\n * Get the sorting direction for the current view\n */\n isAscSorting() {\n const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n return sortingDirection === 'asc';\n },\n },\n methods: {\n toggleSortBy(key) {\n // If we're already sorting by this key, flip the direction\n if (this.sortingMode === key) {\n this.toggleSortingDirection(this.currentView.id);\n return;\n }\n // else sort ASC by this new key\n this.setSortingBy(key, this.currentView.id);\n },\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{staticClass:\"files-list__column-sort-button\",class:{'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode},attrs:{\"aria-label\":_vm.sortAriaLabel(_vm.name),\"type\":\"tertiary\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.toggleSortBy(_vm.mode)}}},[(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{attrs:{\"slot\":\"icon\"},slot:\"icon\"}):_c('MenuDown',{attrs:{\"slot\":\"icon\"},slot:\"icon\"}),_vm._v(\"\\n\\t\"+_vm._s(_vm.name)+\"\\n\")],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=99802676&\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=99802676&prod&lang=scss&\"\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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\"},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),(!_vm.isNoneSelected)?_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}}):[_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.toggleSortBy('basename')}}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{'files-list__column--sortable': _vm.isSizeAvailable}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{'files-list__column--sortable': _vm.isMtimeAvailable}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\\t\")])],1)})]],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=50439046&scoped=true&\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=50439046&prod&scoped=true&lang=scss&\"\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 \"50439046\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('table',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function(item,i){return _c(_vm.dataComponent,_vm._b({key:i,tag:\"component\",attrs:{\"visible\":(i >= _vm.bufferItems || _vm.index <= _vm.bufferItems) && (i < _vm.shownItems - _vm.bufferItems),\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],ref:\"tfoot\",staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=57877aea&scoped=true&\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts&\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts&\"\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 \"57877aea\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{attrs:{\"data-component\":_vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"item-height\":56,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex},scopedSlots:_vm._u([{key:\"before\",fn:function(){return [_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.currentView.caption || _vm.t('files', 'List of files and folders.'))+\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})]},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}])})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=18a212d2&scoped=true&\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=18a212d2&prod&scoped=true&lang=scss&\"\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 \"18a212d2\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=54f78fd5&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=54f78fd5&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=54f78fd5&scoped=true&\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts&\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=54f78fd5&prod&scoped=true&lang=scss&\"\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 \"54f78fd5\",\n null\n \n)\n\nexport default component.exports","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n * are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n * as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.noTrailing] - Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n * while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n * one final time after the last throttled-function call. (After the throttled-function has not been called for\n * `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] - Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n * immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n * callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n * false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n var _ref = options || {},\n _ref$noTrailing = _ref.noTrailing,\n noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n _ref$noLeading = _ref.noLeading,\n noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n _ref$debounceMode = _ref.debounceMode,\n debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n /*\n * After wrapper has stopped being called, this timeout ensures that\n * `callback` is executed at the proper times in `throttle` and `end`\n * debounce modes.\n */\n\n\n var timeoutID;\n var cancelled = false; // Keep track of the last time `callback` was executed.\n\n var lastExec = 0; // Function to clear existing timeout\n\n function clearExistingTimeout() {\n if (timeoutID) {\n clearTimeout(timeoutID);\n }\n } // Function to cancel next exec\n\n\n function cancel(options) {\n var _ref2 = options || {},\n _ref2$upcomingOnly = _ref2.upcomingOnly,\n upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n clearExistingTimeout();\n cancelled = !upcomingOnly;\n }\n /*\n * The `wrapper` function encapsulates all of the throttling / debouncing\n * functionality and when executed will limit the rate at which `callback`\n * is executed.\n */\n\n\n function wrapper() {\n for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n arguments_[_key] = arguments[_key];\n }\n\n var self = this;\n var elapsed = Date.now() - lastExec;\n\n if (cancelled) {\n return;\n } // Execute `callback` and update the `lastExec` timestamp.\n\n\n function exec() {\n lastExec = Date.now();\n callback.apply(self, arguments_);\n }\n /*\n * If `debounceMode` is true (at begin) this is used to clear the flag\n * to allow future `callback` executions.\n */\n\n\n function clear() {\n timeoutID = undefined;\n }\n\n if (!noLeading && debounceMode && !timeoutID) {\n /*\n * Since `wrapper` is being called for the first time and\n * `debounceMode` is true (at begin), execute `callback`\n * and noLeading != true.\n */\n exec();\n }\n\n clearExistingTimeout();\n\n if (debounceMode === undefined && elapsed > delay) {\n if (noLeading) {\n /*\n * In throttle mode with noLeading, if `delay` time has\n * been exceeded, update `lastExec` and schedule `callback`\n * to execute after `delay` ms.\n */\n lastExec = Date.now();\n\n if (!noTrailing) {\n timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n }\n } else {\n /*\n * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n * `callback`.\n */\n exec();\n }\n } else if (noTrailing !== true) {\n /*\n * In trailing throttle mode, since `delay` time has not been\n * exceeded, schedule `callback` to execute `delay` ms after most\n * recent execution.\n *\n * If `debounceMode` is true (at begin), schedule `clear` to execute\n * after `delay` ms.\n *\n * If `debounceMode` is false (at end), schedule `callback` to\n * execute after `delay` ms.\n */\n timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n }\n }\n\n wrapper.cancel = cancel; // Return the wrapper function.\n\n return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n * to `callback` when the debounced-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.atBegin] - Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n * after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n * (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n var _ref = options || {},\n _ref$atBegin = _ref.atBegin,\n atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n return throttle(delay, callback, {\n debounceMode: atBegin !== false\n });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=44de6464&\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js&\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=0df392ce&scoped=true&\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js&\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js&\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=0df392ce&prod&lang=scss&scoped=true&\"\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 \"0df392ce\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0e008e34&\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js&\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js&\"","\n\n\n\n","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae&\"\nimport script from \"./Setting.vue?vue&type=script&lang=js&\"\nexport * from \"./Setting.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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=7aaa0c4e&scoped=true&\"\nimport script from \"./Settings.vue?vue&type=script&lang=js&\"\nexport * from \"./Settings.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=7aaa0c4e&prod&lang=scss&scoped=true&\"\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 \"7aaa0c4e\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")])],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\"},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"icon\":view.iconClass,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"name\":view.name,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts&\"","/**\n * @copyright Copyright (c) 2022 Joas Schilling \n *\n * @author Joas Schilling \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport { loadState } from '@nextcloud/initial-state'\n\n/**\n * Set the page heading\n *\n * @param {string} heading page title from the history api\n * @since 27.0.0\n */\nexport function setPageHeading(heading) {\n\tconst headingEl = document.getElementById('page-heading-level-1')\n\tif (headingEl) {\n\t\theadingEl.textContent = heading\n\t}\n}\nexport default {\n\t/**\n\t * @return {boolean} Whether the user opted-out of shortcuts so that they should not be registered\n\t */\n\tdisableKeyboardShortcuts() {\n\t\treturn loadState('theming', 'shortcutsDisabled', false)\n\t},\n\tsetPageHeading,\n}\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=5b025a97&scoped=true&\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts&\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=5b025a97&prod&scoped=true&lang=scss&\"\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 \"5b025a97\",\n null\n \n)\n\nexport default component.exports","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport logger from '../logger';\nconst defaultDavProperties = [\n 'd:getcontentlength',\n 'd:getcontenttype',\n 'd:getetag',\n 'd:getlastmodified',\n 'd:quota-available-bytes',\n 'd:resourcetype',\n 'nc:has-preview',\n 'nc:is-encrypted',\n 'nc:mount-type',\n 'nc:share-attributes',\n 'oc:comments-unread',\n 'oc:favorite',\n 'oc:fileid',\n 'oc:owner-display-name',\n 'oc:owner-id',\n 'oc:permissions',\n 'oc:share-types',\n 'oc:size',\n 'ocs:share-permissions',\n];\nconst defaultDavNamespaces = {\n d: 'DAV:',\n nc: 'http://nextcloud.org/ns',\n oc: 'http://owncloud.org/ns',\n ocs: 'http://open-collaboration-services.org/ns',\n};\n/**\n * TODO: remove and move to @nextcloud/files\n * @param prop\n * @param namespace\n */\nexport const registerDavProperty = function (prop, namespace = { nc: 'http://nextcloud.org/ns' }) {\n if (typeof window._nc_dav_properties === 'undefined') {\n window._nc_dav_properties = defaultDavProperties;\n window._nc_dav_namespaces = defaultDavNamespaces;\n }\n const namespaces = { ...window._nc_dav_namespaces, ...namespace };\n // Check duplicates\n if (window._nc_dav_properties.find(search => search === prop)) {\n logger.error(`${prop} already registered`, { prop });\n return;\n }\n if (prop.startsWith('<') || prop.split(':').length !== 2) {\n logger.error(`${prop} is not valid. See example: 'oc:fileid'`, { prop });\n return;\n }\n const ns = prop.split(':')[0];\n if (!namespaces[ns]) {\n logger.error(`${prop} namespace unknown`, { prop, namespaces });\n return;\n }\n window._nc_dav_properties.push(prop);\n window._nc_dav_namespaces = namespaces;\n};\n/**\n * Get the registered dav properties\n */\nexport const getDavProperties = function () {\n if (typeof window._nc_dav_properties === 'undefined') {\n window._nc_dav_properties = defaultDavProperties;\n }\n return window._nc_dav_properties.map(prop => `<${prop} />`).join(' ');\n};\n/**\n * Get the registered dav namespaces\n */\nexport const getDavNameSpaces = function () {\n if (typeof window._nc_dav_namespaces === 'undefined') {\n window._nc_dav_namespaces = defaultDavNamespaces;\n }\n return Object.keys(window._nc_dav_namespaces).map(ns => `xmlns:${ns}=\"${window._nc_dav_namespaces[ns]}\"`).join(' ');\n};\n/**\n * Get the default PROPFIND request payload\n */\nexport const getDefaultPropfind = function () {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${getDavProperties()}\n\t\t\t\n\t\t`;\n};\n","import { cancelable, CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDefaultPropfind } from './DavProperties';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = getCurrentUser()?.uid;\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime,\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = getDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","import { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDavNameSpaces, getDavProperties, getDefaultPropfind } from './DavProperties';\nimport { resultToNode } from './Files';\nconst client = getClient();\nconst reportPayload = `\n\n\t\n\t\t${getDavProperties()}\n\t\n\t\n\t\t1\n\t\n`;\nexport const getContents = async (path = '/') => {\n const propfindPayload = getDefaultPropfind();\n // Get root folder\n let rootResponse;\n if (path === '/') {\n rootResponse = await client.stat(path, {\n details: true,\n data: getDefaultPropfind(),\n });\n }\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n // Only filter favorites if we're at the root\n data: path === '/' ? reportPayload : propfindPayload,\n headers: {\n // Patched in WebdavClient.ts\n method: path === '/' ? 'REPORT' : 'PROPFIND',\n },\n includeSelf: true,\n });\n const root = rootResponse?.data || contentsResponse.data[0];\n const contents = contentsResponse.data.filter(node => node.filename !== path);\n return {\n folder: resultToNode(root),\n contents: contents.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { basename } from 'path';\nimport { getLanguage, translate as t } from '@nextcloud/l10n';\nimport { loadState } from '@nextcloud/initial-state';\nimport { Node, FileType, View, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nimport StarSvg from '@mdi/svg/svg/star.svg?raw';\nimport { getContents } from '../services/Favorites';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nexport const generateFolderView = function (folder, index = 0) {\n return new View({\n id: generateIdFromPath(folder),\n name: basename(folder),\n icon: FolderSvg,\n order: index,\n params: {\n dir: folder,\n view: 'favorites',\n },\n parent: 'favorites',\n columns: [],\n getContents,\n });\n};\nexport const generateIdFromPath = function (path) {\n return `favorite-${hashCode(path)}`;\n};\nexport default () => {\n // Load state in function for mock testing purposes\n const favoriteFolders = loadState('files', 'favoriteFolders', []);\n const favoriteFoldersViews = favoriteFolders.map((folder, index) => generateFolderView(folder, index));\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'favorites',\n name: t('files', 'Favorites'),\n caption: t('files', 'List of favorites files and folders.'),\n emptyTitle: t('files', 'No favorites yet'),\n emptyCaption: t('files', 'Files and folders you mark as favorite will show up here'),\n icon: StarSvg,\n order: 5,\n columns: [],\n getContents,\n }));\n favoriteFoldersViews.forEach(view => Navigation.register(view));\n /**\n * Update favourites navigation when a new folder is added\n */\n subscribe('files:favorites:added', (node) => {\n if (node.type !== FileType.Folder) {\n return;\n }\n // Sanity check\n if (node.path === null || !node.root?.startsWith('/files')) {\n logger.error('Favorite folder is not within user files root', { node });\n return;\n }\n addPathToFavorites(node.path);\n });\n /**\n * Remove favourites navigation when a folder is removed\n */\n subscribe('files:favorites:removed', (node) => {\n if (node.type !== FileType.Folder) {\n return;\n }\n // Sanity check\n if (node.path === null || !node.root?.startsWith('/files')) {\n logger.error('Favorite folder is not within user files root', { node });\n return;\n }\n removePathFromFavorites(node.path);\n });\n /**\n * Sort the favorites paths array and\n * update the order property of the existing views\n */\n const updateAndSortViews = function () {\n favoriteFolders.sort((a, b) => a.localeCompare(b, getLanguage(), { ignorePunctuation: true }));\n favoriteFolders.forEach((folder, index) => {\n const view = favoriteFoldersViews.find(view => view.id === generateIdFromPath(folder));\n if (view) {\n view.order = index;\n }\n });\n };\n // Add a folder to the favorites paths array and update the views\n const addPathToFavorites = function (path) {\n const view = generateFolderView(path);\n // Skip if already exists\n if (favoriteFolders.find(folder => folder === path)) {\n return;\n }\n // Update arrays\n favoriteFolders.push(path);\n favoriteFoldersViews.push(view);\n // Update and sort views\n updateAndSortViews();\n Navigation.register(view);\n };\n // Remove a folder from the favorites paths array and update the views\n const removePathFromFavorites = function (path) {\n const id = generateIdFromPath(path);\n const index = favoriteFolders.findIndex(folder => folder === path);\n // Skip if not exists\n if (index === -1) {\n return;\n }\n // Update arrays\n favoriteFolders.splice(index, 1);\n favoriteFoldersViews.splice(index, 1);\n // Update and sort views\n Navigation.remove(id);\n updateAndSortViews();\n };\n};\n","import { File, Folder, Permission, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDavNameSpaces, getDavProperties } from './DavProperties';\nimport { resultToNode } from './Files';\nconst client = getClient(generateRemoteUrl('dav'));\nconst lastTwoWeeksTimestamp = Math.round((Date.now() / 1000) - (60 * 60 * 24 * 14));\nconst searchPayload = `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${getDavProperties()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${getCurrentUser()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${lastTwoWeeksTimestamp}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\nexport const getContents = async (path = '/') => {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: searchPayload,\n headers: {\n // Patched in WebdavClient.ts\n method: 'SEARCH',\n // Somehow it's needed to get the correct response\n 'Content-Type': 'application/xml; charset=utf-8',\n },\n deep: true,\n });\n const contents = contentsResponse.data;\n return {\n folder: new Folder({\n id: 0,\n source: generateRemoteUrl('dav' + rootPath),\n root: rootPath,\n owner: getCurrentUser()?.uid || null,\n permissions: Permission.READ,\n }),\n contents: contents.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router'\nimport logger from '../logger.js'\n\nexport default () => {\n\tif ('serviceWorker' in navigator) {\n\t\t// Use the window load event to keep the page load performant\n\t\twindow.addEventListener('load', async () => {\n\t\t\ttry {\n\t\t\t\tconst url = generateUrl('/apps/files/preview-service-worker.js', {}, { noRewrite: true })\n\t\t\t\tconst registration = await navigator.serviceWorker.register(url, { scope: '/' })\n\t\t\t\tlogger.debug('SW registered: ', { registration })\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('SW registration failed: ', { error })\n\t\t\t}\n\t\t})\n\t} else {\n\t\tlogger.debug('Service Worker is not enabled on this browser.')\n\t}\n}\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSep = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSep, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replace(/\\+/g, ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tif (Boolean(value) && typeof value === 'object' && !Array.isArray(value)) {\n\t\t\t// Sort object keys, not values\n\t\t\tresult[key] = keysSorter(value);\n\t\t} else {\n\t\t\tresult[key] = value;\n\t\t}\n\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n * vue-router v3.6.5\n * (c) 2022 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if (process.env.NODE_ENV !== 'production' && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an
element. Use the custom prop to remove this warning:\\n\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n (\" with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (process.env.NODE_ENV === 'development') {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if (process.env.NODE_ENV !== 'production' && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1$1.ensureURL();\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1$1.ready) {\n this$1$1.ready = true;\n this$1$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1$1.ready = true;\n this$1$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1$1.errorCbs.length) {\n this$1$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1$1.replace(to);\n } else {\n this$1$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1$1.pending = null;\n onComplete(route);\n if (this$1$1.router.app) {\n this$1$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1$1.base);\n if (this$1$1.current === START && location === this$1$1._startLocation) {\n return\n }\n\n this$1$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n this$1$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1$1.current;\n this$1$1.index = targetIndex;\n this$1$1.updateRoute(route);\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\n\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (process.env.NODE_ENV !== 'production') {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1$1 = this;\n\n process.env.NODE_ENV !== 'production' &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1$1.apps.indexOf(app);\n if (index > -1) { this$1$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n if (!this$1$1.app) { this$1$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router, { RawLocation, Route } from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n if (onComplete || onAbort)\n return originalPush.call(this, to, onComplete, onAbort);\n return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n mode: 'history',\n // if index.php is in the url AND we got this far, then it's working:\n // let's keep using index.php in the url\n base: generateUrl('/apps/files'),\n linkActiveClass: 'active',\n routes: [\n {\n path: '/',\n // Pretending we're using the default view\n redirect: { name: 'filelist' },\n },\n {\n path: '/:view/:fileid?',\n name: 'filelist',\n props: true,\n },\n ],\n // Custom stringifyQuery to prevent encoding of slashes in the url\n stringifyQuery(query) {\n const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n return result ? ('?' + result) : '';\n },\n});\nexport default router;\n","export default class RouterService {\n _router;\n constructor(router) {\n this._router = router;\n }\n get name() {\n return this._router.currentRoute.name;\n }\n get query() {\n return this._router.currentRoute.query || {};\n }\n get params() {\n return this._router.currentRoute.params || {};\n }\n /**\n * Trigger a route change on the files app\n *\n * @param path the url path, eg: '/trashbin?dir=/Deleted'\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goTo(path, replace = false) {\n return this._router.push({\n path,\n replace,\n });\n }\n /**\n * Trigger a route change on the files App\n *\n * @param name the route name\n * @param params the route parameters\n * @param query the url query parameters\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goToRoute(name, params, query, replace) {\n return this._router.push({\n name,\n query,\n params,\n replace,\n });\n }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","import './templates.js';\nimport './legacy/filelistSearch.js';\nimport './actions/deleteAction';\nimport './actions/downloadAction';\nimport './actions/editLocallyAction';\nimport './actions/favoriteAction';\nimport './actions/openFolderAction';\nimport './actions/openInFilesAction.js';\nimport './actions/renameAction';\nimport './actions/sidebarAction';\nimport './actions/viewInFolderAction';\nimport './newMenu/newFolder';\nimport Vue from 'vue';\nimport { createPinia, PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport FilesListView from './views/FilesList.vue';\nimport NavigationView from './views/Navigation.vue';\nimport registerFavoritesView from './views/favorites';\nimport registerRecentView from './views/recent';\nimport registerFilesView from './views/files';\nimport registerPreviewServiceWorker from './services/ServiceWorker.js';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\nconst pinia = createPinia();\n// Init Navigation Service\nconst Navigation = getNavigation();\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\n// Init Navigation View\nconst View = Vue.extend(NavigationView);\nconst FilesNavigationRoot = new View({\n name: 'FilesNavigationRoot',\n propsData: {\n Navigation,\n },\n router,\n pinia,\n});\nFilesNavigationRoot.$mount('#app-navigation-files');\n// Init content list view\nconst ListView = Vue.extend(FilesListView);\nconst FilesList = new ListView({\n name: 'FilesListRoot',\n router,\n pinia,\n});\nFilesList.$mount('#app-content-vue');\n// Init legacy and new files views\nregisterFavoritesView();\nregisterFilesView();\nregisterRecentView();\n// Register preview service worker\nregisterPreviewServiceWorker();\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport FolderSvg from '@mdi/svg/svg/folder.svg?raw';\nimport { getContents } from '../services/Files';\nimport { View, getNavigation } from '@nextcloud/files';\nexport default () => {\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'files',\n name: t('files', 'All files'),\n caption: t('files', 'List of your files and folders.'),\n icon: FolderSvg,\n order: 0,\n getContents,\n }));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { translate as t } from '@nextcloud/l10n';\nimport HistorySvg from '@mdi/svg/svg/history.svg?raw';\nimport { getContents } from '../services/Recent';\nimport { View, getNavigation } from '@nextcloud/files';\nexport default () => {\n const Navigation = getNavigation();\n Navigation.register(new View({\n id: 'recent',\n name: t('files', 'Recent'),\n caption: t('files', 'List of recently modified files and folders.'),\n emptyTitle: t('files', 'No recently modified files'),\n emptyCaption: t('files', 'Files and folders you recently modified will show up here.'),\n icon: HistorySvg,\n order: 2,\n defaultSortKey: 'mtime',\n getContents,\n }));\n};\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".upload-picker[data-v-5f1bec03]{display:inline-flex;align-items:center;height:44px}.upload-picker__progress[data-v-5f1bec03]{width:200px;max-width:0;transition:max-width var(--animation-quick) ease-in-out;margin-top:8px}.upload-picker__progress p[data-v-5f1bec03]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.upload-picker--uploading .upload-picker__progress[data-v-5f1bec03]{max-width:200px;margin-right:20px;margin-left:8px}.upload-picker--paused .upload-picker__progress[data-v-5f1bec03]{animation:breathing-5f1bec03 3s ease-out infinite normal}@keyframes breathing-5f1bec03{0%{opacity:.5}25%{opacity:1}60%{opacity:.5}to{opacity:.5}}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index.css\"],\"names\":[],\"mappings\":\"AAAA,gCAAgC,mBAAmB,CAAC,kBAAkB,CAAC,WAAW,CAAC,0CAA0C,WAAW,CAAC,WAAW,CAAC,uDAAuD,CAAC,cAAc,CAAC,4CAA4C,eAAe,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,oEAAoE,eAAe,CAAC,iBAAiB,CAAC,eAAe,CAAC,iEAAiE,wDAAwD,CAAC,8BAA8B,GAAG,UAAU,CAAC,IAAI,SAAS,CAAC,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC\",\"sourcesContent\":[\".upload-picker[data-v-5f1bec03]{display:inline-flex;align-items:center;height:44px}.upload-picker__progress[data-v-5f1bec03]{width:200px;max-width:0;transition:max-width var(--animation-quick) ease-in-out;margin-top:8px}.upload-picker__progress p[data-v-5f1bec03]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.upload-picker--uploading .upload-picker__progress[data-v-5f1bec03]{max-width:200px;margin-right:20px;margin-left:8px}.upload-picker--paused .upload-picker__progress[data-v-5f1bec03]{animation:breathing-5f1bec03 3s ease-out infinite normal}@keyframes breathing-5f1bec03{0%{opacity:.5}25%{opacity:1}60%{opacity:.5}to{opacity:.5}}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".breadcrumb[data-v-ec40407a]{flex:1 1 100% !important;width:100%}.breadcrumb[data-v-ec40407a] a{cursor:pointer !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,6BAEC,wBAAA,CACA,UAAA,CAEA,+BACC,yBAAA\",\"sourcesContent\":[\"\\n.breadcrumb {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\n\\t::v-deep a {\\n\\t\\tcursor: pointer !important;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".custom-svg-icon[data-v-93e9b2f4]{display:flex;align-items:center;align-self:center;justify-content:center;justify-self:center;width:44px;height:44px;opacity:1}.custom-svg-icon[data-v-93e9b2f4] svg{height:22px;width:22px;fill:currentColor}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/CustomSvgIconRender.vue\"],\"names\":[],\"mappings\":\"AACA,kCACC,YAAA,CACA,kBAAA,CACA,iBAAA,CACA,sBAAA,CACA,mBAAA,CACA,UAAA,CACA,WAAA,CACA,SAAA,CAEA,sCAGC,WAAA,CACA,UAAA,CACA,iBAAA\",\"sourcesContent\":[\"\\n.custom-svg-icon {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\talign-self: center;\\n\\tjustify-content: center;\\n\\tjustify-self: center;\\n\\twidth: 44px;\\n\\theight: 44px;\\n\\topacity: 1;\\n\\n\\t::v-deep svg {\\n\\t\\t// mdi icons have a size of 24px\\n\\t\\t// 22px results in roughly 16px inner size\\n\\t\\theight: 22px;\\n\\t\\twidth: 22px;\\n\\t\\tfill: currentColor;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".favorite-marker-icon[data-v-324501a3]{color:#a08b00;width:fit-content;height:fit-content}.favorite-marker-icon[data-v-324501a3] svg{width:26px;height:26px}.favorite-marker-icon[data-v-324501a3] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,aAAA,CACA,iBAAA,CACA,kBAAA,CAGC,4CAEC,UAAA,CACA,WAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: #a08b00;\\n\\twidth: fit-content;\\n\\theight: fit-content;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px;\\n\\t\\t\\theight: 26px;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"tr[data-v-10164d76]:hover,tr[data-v-10164d76]:focus{background-color:var(--color-background-dark)}.files-list__row-icon-overlay[data-v-10164d76]{position:absolute;max-height:18px;max-width:18px;color:var(--color-main-background);margin-top:2px}.files-list__row-icon-preview[data-v-10164d76]:not([style*=background]){background:var(--color-loading-dark)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry.vue\"],\"names\":[],\"mappings\":\"AAGC,oDAEC,6CAAA,CAKF,+CACC,iBAAA,CACA,eAAA,CACA,cAAA,CACA,kCAAA,CAEA,cAAA,CAID,wEACI,oCAAA\",\"sourcesContent\":[\"\\n/* Hover effect on tbody lines only */\\ntr {\\n\\t&:hover,\\n\\t&:focus {\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t}\\n}\\n\\n// Folder overlay\\n.files-list__row-icon-overlay {\\n\\tposition: absolute;\\n\\tmax-height: 18px;\\n\\tmax-width: 18px;\\n\\tcolor: var(--color-main-background);\\n\\t// better alignment with the folder icon\\n\\tmargin-top: 2px;\\n}\\n\\n/* Preview not loaded animation effect */\\n.files-list__row-icon-preview:not([style*='background']) {\\n background: var(--color-loading-dark);\\n\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"tr[data-v-5d5c2897]{padding-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}td[data-v-5d5c2897]{user-select:none;color:var(--color-text-maxcontrast) !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,oBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAGD,oBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tpadding-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n}\\n\\ntd {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__column[data-v-50439046]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-50439046]{cursor:pointer}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__row-actions-batch[data-v-0d9363a1]{flex:1 1 100% !important}.files-list__row-actions-batch[data-v-0d9363a1] .button-vue__wrapper{width:100%}.files-list__row-actions-batch[data-v-0d9363a1] .button-vue__wrapper span.button-vue__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CAGA,qEACC,UAAA,CACA,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\n\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t::v-deep .button-vue__wrapper {\\n\\t\\twidth: 100%;\\n\\t\\tspan.button-vue__text {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__column-sort-button{margin:0 calc(var(--cell-margin)*-1);padding:0 4px 0 16px !important}.files-list__column-sort-button .button-vue__wrapper{flex-direction:row-reverse;width:100%}.files-list__column-sort-button .button-vue__icon{transition-timing-function:linear;transition-duration:.1s;transition-property:opacity;opacity:0}.files-list__column-sort-button .button-vue__text{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list__column-sort-button--active .button-vue__icon,.files-list__column-sort-button:hover .button-vue__icon,.files-list__column-sort-button:focus .button-vue__icon,.files-list__column-sort-button:active .button-vue__icon{opacity:1 !important}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,gCAEC,oCAAA,CAEA,+BAAA,CAGA,qDACC,0BAAA,CAGA,UAAA,CAGD,kDACC,iCAAA,CACA,uBAAA,CACA,2BAAA,CACA,SAAA,CAID,kDACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAOA,mOACC,oBAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\t// Reverse padding\\n\\tpadding: 0 4px 0 16px !important;\\n\\n\\t// Icon after text\\n\\t.button-vue__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t\\t// Take max inner width for text overflow ellipsis\\n\\t\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t.button-vue__icon {\\n\\t\\ttransition-timing-function: linear;\\n\\t\\ttransition-duration: .1s;\\n\\t\\ttransition-property: opacity;\\n\\t\\topacity: 0;\\n\\t}\\n\\n\\t// Remove when https://github.com/nextcloud/nextcloud-vue/pull/3936 is merged\\n\\t.button-vue__text {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n\\n\\t&--active,\\n\\t&:hover,\\n\\t&:focus,\\n\\t&:active {\\n\\t\\t.button-vue__icon {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list[data-v-18a212d2]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;display:block;overflow:auto;height:100%}.files-list[data-v-18a212d2] tbody{display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-18a212d2] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-18a212d2] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-18a212d2] .files-list__thead,.files-list[data-v-18a212d2] .files-list__tfoot{display:flex;width:100%;background-color:var(--color-main-background)}.files-list[data-v-18a212d2] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);user-select:none}.files-list[data-v-18a212d2] td,.files-list[data-v-18a212d2] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-18a212d2] td span,.files-list[data-v-18a212d2] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-18a212d2] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-18a212d2] .files-list__row-checkbox{justify-content:center}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-18a212d2] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-18a212d2] .files-list__row:hover,.files-list[data-v-18a212d2] .files-list__row:focus,.files-list[data-v-18a212d2] .files-list__row:active,.files-list[data-v-18a212d2] .files-list__row--active{background-color:var(--color-background-dark)}.files-list[data-v-18a212d2] .files-list__row:hover>*,.files-list[data-v-18a212d2] .files-list__row:focus>*,.files-list[data-v-18a212d2] .files-list__row:active>*,.files-list[data-v-18a212d2] .files-list__row--active>*{--color-border: var(--color-border-dark)}.files-list[data-v-18a212d2] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-18a212d2] .files-list__row--active .favorite-marker-icon svg path{stroke:var(--color-background-dark)}.files-list[data-v-18a212d2] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-18a212d2] .files-list__row-icon *{cursor:pointer}.files-list[data-v-18a212d2] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-18a212d2] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon{margin:-3px}.files-list[data-v-18a212d2] .files-list__row-icon>span.folder-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-18a212d2] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);background-repeat:no-repeat;background-position:center;background-size:contain}.files-list[data-v-18a212d2] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-18a212d2] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-18a212d2] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-18a212d2] .files-list__row-name a:focus .files-list__row-name-text,.files-list[data-v-18a212d2] .files-list__row-name a:focus-visible .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-18a212d2] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-18a212d2] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-18a212d2] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-18a212d2] .files-list__row-actions{width:auto}.files-list[data-v-18a212d2] .files-list__row-actions~td,.files-list[data-v-18a212d2] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-18a212d2] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-18a212d2] .files-list__row-actions button:not(:hover,:focus,:active) .button-vue__wrapper{color:var(--color-text-maxcontrast)}.files-list[data-v-18a212d2] .files-list__row-mtime,.files-list[data-v-18a212d2] .files-list__row-size{justify-content:flex-end;width:calc(var(--row-height)*1.5);color:var(--color-main-text)}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button{padding:0 16px 0 4px !important}.files-list[data-v-18a212d2] .files-list__row-mtime .files-list__column-sort-button .button-vue__wrapper,.files-list[data-v-18a212d2] .files-list__row-size .files-list__column-sort-button .button-vue__wrapper{flex-direction:row}.files-list[data-v-18a212d2] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-18a212d2] .files-list__row-column-custom{width:calc(var(--row-height)*2)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,aAAA,CACA,WAAA,CAIC,mCACC,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAID,iDACC,YAAA,CACA,qBAAA,CAID,gDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAGD,gGAEC,YAAA,CACA,UAAA,CACA,6CAAA,CAID,gCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,gBAAA,CAGD,gEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,0EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,sDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,uDACC,sBAAA,CAEA,8EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,iHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,2GACC,mBAAA,CAMF,mNACC,6CAAA,CACA,2NACC,wCAAA,CAGD,+UACC,mCAAA,CAMH,mDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,qDACC,cAAA,CAGD,wDACC,0BAAA,CAEA,gGACC,8BAAA,CACA,+BAAA,CAID,oEACC,WAAA,CACA,wEACC,0CAAA,CACA,2CAAA,CAKH,2DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CACA,2BAAA,CAEA,0BAAA,CACA,uBAAA,CAGD,4DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAKF,mDAEC,eAAA,CAEA,aAAA,CAEA,qDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,mEACC,YAAA,CAID,oLAEC,mDAAA,CACA,kBAAA,CAIF,8EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,6EACC,mCAAA,CAKF,qDACC,UAAA,CACA,eAAA,CACA,2DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,mEAEC,+BAAA,CACA,SAAA,CAKH,sDACC,UAAA,CAGA,kHAEC,2BAAA,CAIA,+EAEC,kBAAA,CAED,6GAEC,mCAAA,CAKH,uGAGC,wBAAA,CACA,iCAAA,CAEA,4BAAA,CAGA,uKACC,+BAAA,CACA,iNACC,kBAAA,CAKH,oDACC,+BAAA,CAGD,4DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\tdisplay: block;\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\n\\t&::v-deep {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tuser-select: none;\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active {\\n\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tbackground-position: center;\\n\\t\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text,\\n\\t\\t\\t\\t&:focus-visible .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:not(:hover, :focus, :active) .button-vue__wrapper {\\n\\t\\t\\t\\t\\t// Also apply color-text-maxcontrast to non-active button\\n\\t\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\t// Right align text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// opacity varies with the size\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\n\\t\\t\\t// Icon is before text since size is right aligned\\n\\t\\t\\t.files-list__column-sort-button {\\n\\t\\t\\t\\tpadding: 0 16px 0 4px !important;\\n\\t\\t\\t\\t.button-vue__wrapper {\\n\\t\\t\\t\\t\\tflex-direction: row;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-navigation-entry__settings-quota--not-unlimited[data-v-0df392ce] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-0df392ce]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".template-picker__item[data-v-5b09ec60]{display:flex}.template-picker__label[data-v-5b09ec60]{display:flex;align-items:center;flex:1 1;flex-direction:column}.template-picker__label[data-v-5b09ec60],.template-picker__label *[data-v-5b09ec60]{cursor:pointer;user-select:none}.template-picker__label[data-v-5b09ec60]::before{display:none !important}.template-picker__preview[data-v-5b09ec60]{display:block;overflow:hidden;flex:1 1;width:var(--width);min-height:var(--height);max-height:var(--height);padding:0;border:var(--border) solid var(--color-border);border-radius:var(--border-radius-large)}input:checked+label>.template-picker__preview[data-v-5b09ec60]{border-color:var(--color-primary-element)}.template-picker__preview--failed[data-v-5b09ec60]{display:flex}.template-picker__image[data-v-5b09ec60]{max-width:100%;background-color:var(--color-main-background);object-fit:cover}.template-picker__preview--failed .template-picker__image[data-v-5b09ec60]{width:calc(var(--margin)*8);margin:auto;background-color:rgba(0,0,0,0) !important;object-fit:initial}.template-picker__title[data-v-5b09ec60]{overflow:hidden;max-width:calc(var(--width) + 4px);padding:var(--margin);white-space:nowrap;text-overflow:ellipsis}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/TemplatePreview.vue\"],\"names\":[],\"mappings\":\"AAGC,wCACC,YAAA,CAGD,yCACC,YAAA,CAEA,kBAAA,CACA,QAAA,CACA,qBAAA,CAEA,oFACC,cAAA,CACA,gBAAA,CAGD,iDACC,uBAAA,CAIF,2CACC,aAAA,CACA,eAAA,CAEA,QAAA,CACA,kBAAA,CACA,wBAAA,CACA,wBAAA,CACA,SAAA,CACA,8CAAA,CACA,wCAAA,CAEA,+DACC,yCAAA,CAGD,mDAEC,YAAA,CAIF,yCACC,cAAA,CACA,6CAAA,CAEA,gBAAA,CAID,2EACC,2BAAA,CAEA,WAAA,CACA,yCAAA,CAEA,kBAAA,CAGD,yCACC,eAAA,CAEA,kCAAA,CACA,qBAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n\\n.template-picker {\\n\\t&__item {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\n\\t&__label {\\n\\t\\tdisplay: flex;\\n\\t\\t// Align in the middle of the grid\\n\\t\\talign-items: center;\\n\\t\\tflex: 1 1;\\n\\t\\tflex-direction: column;\\n\\n\\t\\t&, * {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\tuser-select: none;\\n\\t\\t}\\n\\n\\t\\t&::before {\\n\\t\\t\\tdisplay: none !important;\\n\\t\\t}\\n\\t}\\n\\n\\t&__preview {\\n\\t\\tdisplay: block;\\n\\t\\toverflow: hidden;\\n\\t\\t// Stretch so all entries are the same width\\n\\t\\tflex: 1 1;\\n\\t\\twidth: var(--width);\\n\\t\\tmin-height: var(--height);\\n\\t\\tmax-height: var(--height);\\n\\t\\tpadding: 0;\\n\\t\\tborder: var(--border) solid var(--color-border);\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\n\\t\\tinput:checked + label > & {\\n\\t\\t\\tborder-color: var(--color-primary-element);\\n\\t\\t}\\n\\n\\t\\t&--failed {\\n\\t\\t\\t// Make sure to properly center fallback icon\\n\\t\\t\\tdisplay: flex;\\n\\t\\t}\\n\\t}\\n\\n\\t&__image {\\n\\t\\tmax-width: 100%;\\n\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\tobject-fit: cover;\\n\\t}\\n\\n\\t// Failed preview, fallback to mime icon\\n\\t&__preview--failed &__image {\\n\\t\\twidth: calc(var(--margin) * 8);\\n\\t\\t// Center mime icon\\n\\t\\tmargin: auto;\\n\\t\\tbackground-color: transparent !important;\\n\\n\\t\\tobject-fit: initial;\\n\\t}\\n\\n\\t&__title {\\n\\t\\toverflow: hidden;\\n\\t\\t// also count preview border\\n\\t\\tmax-width: calc(var(--width) + 2*2px);\\n\\t\\tpadding: var(--margin);\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-content[data-v-54f78fd5]{display:flex;overflow:hidden;flex-direction:column;max-height:100%}.files-list__header[data-v-54f78fd5]{display:flex;align-content:center;flex:0 0;margin:4px 4px 4px 50px}.files-list__header>*[data-v-54f78fd5]{flex:0 0}.files-list__header-share-button[data-v-54f78fd5]{opacity:.3}.files-list__header-share-button--shared[data-v-54f78fd5]{opacity:1}.files-list__refresh-icon[data-v-54f78fd5]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-54f78fd5]{margin:auto}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CAOA,qCACC,YAAA,CACA,oBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,uCAGC,QAAA,CAGD,kDACC,UAAA,CACA,0DACC,SAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n}\\n\\n$margin: 4px;\\n$navigationToggleSize: 50px;\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-content: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin: $margin $margin $margin $navigationToggleSize;\\n\\t\\t> * {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\topacity: .3;\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\topacity: 1;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-navigation[data-v-5b025a97] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation>ul.app-navigation__list[data-v-5b025a97]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-5b025a97]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".setting-link[data-v-7aaa0c4e]:hover{text-decoration:underline}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".templates-picker__form[data-v-d46f1dc6]{padding:calc(var(--margin)*2);padding-bottom:0}.templates-picker__form h2[data-v-d46f1dc6]{text-align:center;font-weight:bold;margin:var(--margin) 0 calc(var(--margin)*2)}.templates-picker__list[data-v-d46f1dc6]{display:grid;grid-gap:calc(var(--margin)*2);grid-auto-columns:1fr;max-width:calc(var(--fullwidth)*6);grid-template-columns:repeat(auto-fit, var(--fullwidth));grid-auto-rows:1fr;justify-content:center}.templates-picker__buttons[data-v-d46f1dc6]{display:flex;justify-content:end;padding:calc(var(--margin)*2) var(--margin);position:sticky;bottom:0;background-image:linear-gradient(0, var(--gradient-main-background))}.templates-picker__buttons button[data-v-d46f1dc6],.templates-picker__buttons input[type=submit][data-v-d46f1dc6]{height:44px}.templates-picker[data-v-d46f1dc6] .modal-container{position:relative}.templates-picker__loading[data-v-d46f1dc6]{position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;margin:0;background-color:var(--color-main-background-translucent)}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/TemplatePicker.vue\"],\"names\":[],\"mappings\":\"AAEC,yCACC,6BAAA,CAEA,gBAAA,CAEA,4CACC,iBAAA,CACA,gBAAA,CACA,4CAAA,CAIF,yCACC,YAAA,CACA,8BAAA,CACA,qBAAA,CAEA,kCAAA,CACA,wDAAA,CAEA,kBAAA,CAEA,sBAAA,CAGD,4CACC,YAAA,CACA,mBAAA,CACA,2CAAA,CACA,eAAA,CACA,QAAA,CACA,oEAAA,CAEA,kHACC,WAAA,CAKF,oDACC,iBAAA,CAGD,4CACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,yDAAA\",\"sourcesContent\":[\"\\n.templates-picker {\\n\\t&__form {\\n\\t\\tpadding: calc(var(--margin) * 2);\\n\\t\\t// Will be handled by the buttons\\n\\t\\tpadding-bottom: 0;\\n\\n\\t\\th2 {\\n\\t\\t\\ttext-align: center;\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\tmargin: var(--margin) 0 calc(var(--margin) * 2);\\n\\t\\t}\\n\\t}\\n\\n\\t&__list {\\n\\t\\tdisplay: grid;\\n\\t\\tgrid-gap: calc(var(--margin) * 2);\\n\\t\\tgrid-auto-columns: 1fr;\\n\\t\\t// We want maximum 5 columns. Putting 6 as we don't count the grid gap. So it will always be lower than 6\\n\\t\\tmax-width: calc(var(--fullwidth) * 6);\\n\\t\\tgrid-template-columns: repeat(auto-fit, var(--fullwidth));\\n\\t\\t// Make sure all rows are the same height\\n\\t\\tgrid-auto-rows: 1fr;\\n\\t\\t// Center the columns set\\n\\t\\tjustify-content: center;\\n\\t}\\n\\n\\t&__buttons {\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: end;\\n\\t\\tpadding: calc(var(--margin) * 2) var(--margin);\\n\\t\\tposition: sticky;\\n\\t\\tbottom: 0;\\n\\t\\tbackground-image: linear-gradient(0, var(--gradient-main-background));\\n\\n\\t\\tbutton, input[type='submit'] {\\n\\t\\t\\theight: 44px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Make sure we're relative for the loading emptycontent on top\\n\\t::v-deep .modal-container {\\n\\t\\tposition: relative;\\n\\t}\\n\\n\\t&__loading {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tmargin: 0;\\n\\t\\tbackground-color: var(--color-main-background-translucent);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\\n/* @keyframes preview-gradient-fade {\\n 0% {\\n opacity: 1;\\n }\\n 50% {\\n opacity: 0.5;\\n }\\n 100% {\\n opacity: 1;\\n }\\n} */\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry.vue\"],\"names\":[],\"mappings\":\";AAs7BA;;;;;;;;;;GAUA\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","var map = {\n\t\"./af\": 42786,\n\t\"./af.js\": 42786,\n\t\"./ar\": 30867,\n\t\"./ar-dz\": 14130,\n\t\"./ar-dz.js\": 14130,\n\t\"./ar-kw\": 96135,\n\t\"./ar-kw.js\": 96135,\n\t\"./ar-ly\": 56440,\n\t\"./ar-ly.js\": 56440,\n\t\"./ar-ma\": 47702,\n\t\"./ar-ma.js\": 47702,\n\t\"./ar-sa\": 16040,\n\t\"./ar-sa.js\": 16040,\n\t\"./ar-tn\": 37100,\n\t\"./ar-tn.js\": 37100,\n\t\"./ar.js\": 30867,\n\t\"./az\": 31083,\n\t\"./az.js\": 31083,\n\t\"./be\": 9808,\n\t\"./be.js\": 9808,\n\t\"./bg\": 68338,\n\t\"./bg.js\": 68338,\n\t\"./bm\": 67438,\n\t\"./bm.js\": 67438,\n\t\"./bn\": 8905,\n\t\"./bn-bd\": 76225,\n\t\"./bn-bd.js\": 76225,\n\t\"./bn.js\": 8905,\n\t\"./bo\": 11560,\n\t\"./bo.js\": 11560,\n\t\"./br\": 1278,\n\t\"./br.js\": 1278,\n\t\"./bs\": 80622,\n\t\"./bs.js\": 80622,\n\t\"./ca\": 2468,\n\t\"./ca.js\": 2468,\n\t\"./cs\": 5822,\n\t\"./cs.js\": 5822,\n\t\"./cv\": 50877,\n\t\"./cv.js\": 50877,\n\t\"./cy\": 47373,\n\t\"./cy.js\": 47373,\n\t\"./da\": 24780,\n\t\"./da.js\": 24780,\n\t\"./de\": 59740,\n\t\"./de-at\": 60217,\n\t\"./de-at.js\": 60217,\n\t\"./de-ch\": 60894,\n\t\"./de-ch.js\": 60894,\n\t\"./de.js\": 59740,\n\t\"./dv\": 5300,\n\t\"./dv.js\": 5300,\n\t\"./el\": 50837,\n\t\"./el.js\": 50837,\n\t\"./en-au\": 78348,\n\t\"./en-au.js\": 78348,\n\t\"./en-ca\": 77925,\n\t\"./en-ca.js\": 77925,\n\t\"./en-gb\": 22243,\n\t\"./en-gb.js\": 22243,\n\t\"./en-ie\": 46436,\n\t\"./en-ie.js\": 46436,\n\t\"./en-il\": 47207,\n\t\"./en-il.js\": 47207,\n\t\"./en-in\": 44175,\n\t\"./en-in.js\": 44175,\n\t\"./en-nz\": 76319,\n\t\"./en-nz.js\": 76319,\n\t\"./en-sg\": 31662,\n\t\"./en-sg.js\": 31662,\n\t\"./eo\": 92915,\n\t\"./eo.js\": 92915,\n\t\"./es\": 55655,\n\t\"./es-do\": 55251,\n\t\"./es-do.js\": 55251,\n\t\"./es-mx\": 96112,\n\t\"./es-mx.js\": 96112,\n\t\"./es-us\": 71146,\n\t\"./es-us.js\": 71146,\n\t\"./es.js\": 55655,\n\t\"./et\": 5603,\n\t\"./et.js\": 5603,\n\t\"./eu\": 77763,\n\t\"./eu.js\": 77763,\n\t\"./fa\": 76959,\n\t\"./fa.js\": 76959,\n\t\"./fi\": 11897,\n\t\"./fi.js\": 11897,\n\t\"./fil\": 42549,\n\t\"./fil.js\": 42549,\n\t\"./fo\": 94694,\n\t\"./fo.js\": 94694,\n\t\"./fr\": 94470,\n\t\"./fr-ca\": 63049,\n\t\"./fr-ca.js\": 63049,\n\t\"./fr-ch\": 52330,\n\t\"./fr-ch.js\": 52330,\n\t\"./fr.js\": 94470,\n\t\"./fy\": 5044,\n\t\"./fy.js\": 5044,\n\t\"./ga\": 29295,\n\t\"./ga.js\": 29295,\n\t\"./gd\": 2101,\n\t\"./gd.js\": 2101,\n\t\"./gl\": 38794,\n\t\"./gl.js\": 38794,\n\t\"./gom-deva\": 27884,\n\t\"./gom-deva.js\": 27884,\n\t\"./gom-latn\": 23168,\n\t\"./gom-latn.js\": 23168,\n\t\"./gu\": 95349,\n\t\"./gu.js\": 95349,\n\t\"./he\": 24206,\n\t\"./he.js\": 24206,\n\t\"./hi\": 30094,\n\t\"./hi.js\": 30094,\n\t\"./hr\": 30316,\n\t\"./hr.js\": 30316,\n\t\"./hu\": 22138,\n\t\"./hu.js\": 22138,\n\t\"./hy-am\": 11423,\n\t\"./hy-am.js\": 11423,\n\t\"./id\": 29218,\n\t\"./id.js\": 29218,\n\t\"./is\": 90135,\n\t\"./is.js\": 90135,\n\t\"./it\": 90626,\n\t\"./it-ch\": 10150,\n\t\"./it-ch.js\": 10150,\n\t\"./it.js\": 90626,\n\t\"./ja\": 39183,\n\t\"./ja.js\": 39183,\n\t\"./jv\": 24286,\n\t\"./jv.js\": 24286,\n\t\"./ka\": 12105,\n\t\"./ka.js\": 12105,\n\t\"./kk\": 47772,\n\t\"./kk.js\": 47772,\n\t\"./km\": 18758,\n\t\"./km.js\": 18758,\n\t\"./kn\": 79282,\n\t\"./kn.js\": 79282,\n\t\"./ko\": 33730,\n\t\"./ko.js\": 33730,\n\t\"./ku\": 1408,\n\t\"./ku.js\": 1408,\n\t\"./ky\": 33291,\n\t\"./ky.js\": 33291,\n\t\"./lb\": 36841,\n\t\"./lb.js\": 36841,\n\t\"./lo\": 55466,\n\t\"./lo.js\": 55466,\n\t\"./lt\": 57010,\n\t\"./lt.js\": 57010,\n\t\"./lv\": 37595,\n\t\"./lv.js\": 37595,\n\t\"./me\": 39861,\n\t\"./me.js\": 39861,\n\t\"./mi\": 35493,\n\t\"./mi.js\": 35493,\n\t\"./mk\": 95966,\n\t\"./mk.js\": 95966,\n\t\"./ml\": 87341,\n\t\"./ml.js\": 87341,\n\t\"./mn\": 5115,\n\t\"./mn.js\": 5115,\n\t\"./mr\": 10370,\n\t\"./mr.js\": 10370,\n\t\"./ms\": 9847,\n\t\"./ms-my\": 41237,\n\t\"./ms-my.js\": 41237,\n\t\"./ms.js\": 9847,\n\t\"./mt\": 72126,\n\t\"./mt.js\": 72126,\n\t\"./my\": 56165,\n\t\"./my.js\": 56165,\n\t\"./nb\": 64924,\n\t\"./nb.js\": 64924,\n\t\"./ne\": 16744,\n\t\"./ne.js\": 16744,\n\t\"./nl\": 93901,\n\t\"./nl-be\": 59814,\n\t\"./nl-be.js\": 59814,\n\t\"./nl.js\": 93901,\n\t\"./nn\": 83877,\n\t\"./nn.js\": 83877,\n\t\"./oc-lnc\": 92135,\n\t\"./oc-lnc.js\": 92135,\n\t\"./pa-in\": 15858,\n\t\"./pa-in.js\": 15858,\n\t\"./pl\": 64495,\n\t\"./pl.js\": 64495,\n\t\"./pt\": 89520,\n\t\"./pt-br\": 57971,\n\t\"./pt-br.js\": 57971,\n\t\"./pt.js\": 89520,\n\t\"./ro\": 96459,\n\t\"./ro.js\": 96459,\n\t\"./ru\": 21793,\n\t\"./ru.js\": 21793,\n\t\"./sd\": 40950,\n\t\"./sd.js\": 40950,\n\t\"./se\": 10490,\n\t\"./se.js\": 10490,\n\t\"./si\": 90124,\n\t\"./si.js\": 90124,\n\t\"./sk\": 64249,\n\t\"./sk.js\": 64249,\n\t\"./sl\": 14985,\n\t\"./sl.js\": 14985,\n\t\"./sq\": 51104,\n\t\"./sq.js\": 51104,\n\t\"./sr\": 49131,\n\t\"./sr-cyrl\": 79915,\n\t\"./sr-cyrl.js\": 79915,\n\t\"./sr.js\": 49131,\n\t\"./ss\": 85893,\n\t\"./ss.js\": 85893,\n\t\"./sv\": 98760,\n\t\"./sv.js\": 98760,\n\t\"./sw\": 91172,\n\t\"./sw.js\": 91172,\n\t\"./ta\": 27333,\n\t\"./ta.js\": 27333,\n\t\"./te\": 23110,\n\t\"./te.js\": 23110,\n\t\"./tet\": 52095,\n\t\"./tet.js\": 52095,\n\t\"./tg\": 27321,\n\t\"./tg.js\": 27321,\n\t\"./th\": 9041,\n\t\"./th.js\": 9041,\n\t\"./tk\": 19005,\n\t\"./tk.js\": 19005,\n\t\"./tl-ph\": 75768,\n\t\"./tl-ph.js\": 75768,\n\t\"./tlh\": 89444,\n\t\"./tlh.js\": 89444,\n\t\"./tr\": 72397,\n\t\"./tr.js\": 72397,\n\t\"./tzl\": 28254,\n\t\"./tzl.js\": 28254,\n\t\"./tzm\": 51106,\n\t\"./tzm-latn\": 30699,\n\t\"./tzm-latn.js\": 30699,\n\t\"./tzm.js\": 51106,\n\t\"./ug-cn\": 9288,\n\t\"./ug-cn.js\": 9288,\n\t\"./uk\": 67691,\n\t\"./uk.js\": 67691,\n\t\"./ur\": 13795,\n\t\"./ur.js\": 13795,\n\t\"./uz\": 6791,\n\t\"./uz-latn\": 60588,\n\t\"./uz-latn.js\": 60588,\n\t\"./uz.js\": 6791,\n\t\"./vi\": 65666,\n\t\"./vi.js\": 65666,\n\t\"./x-pseudo\": 14378,\n\t\"./x-pseudo.js\": 14378,\n\t\"./yo\": 75805,\n\t\"./yo.js\": 75805,\n\t\"./zh-cn\": 83839,\n\t\"./zh-cn.js\": 83839,\n\t\"./zh-hk\": 55726,\n\t\"./zh-hk.js\": 55726,\n\t\"./zh-mo\": 99807,\n\t\"./zh-mo.js\": 99807,\n\t\"./zh-tw\": 74152,\n\t\"./zh-tw.js\": 74152\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 46700;","// @flow\n\n/*::\ntype Options = {\n max?: number,\n min?: number,\n historyTimeConstant?: number,\n autostart?: boolean,\n ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n return function (previousOutput, input, dt) {\n const alpha = dt / (dt + RC);\n return previousOutput + alpha * (input - previousOutput);\n }\n}\n\nfunction def/*:: */(x/*: ?T*/, d/*: T*/)/*: T*/ {\n return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n options = options || {};\n var max = def(options.max, 1);\n var min = def(options.min, 0);\n var autostart = def(options.autostart, true);\n var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n var rate/*: number | null */ = null;\n var lastTimestamp/*: number | null */ = null;\n var lastProgress/*: number | null */ = null;\n\n var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n function start() {\n report(min);\n }\n\n function reset() {\n rate = null;\n lastTimestamp = null;\n lastProgress = null;\n if (autostart) {\n start();\n }\n }\n\n function report(progress /*: number */, timestamp/*::?: number */) {\n if (typeof timestamp !== 'number') {\n timestamp = Date.now();\n }\n\n if (lastTimestamp === timestamp) { return; }\n if (ignoreSameProgress && lastProgress === progress) { return; }\n\n if (lastTimestamp === null || lastProgress === null) {\n lastProgress = progress;\n lastTimestamp = timestamp;\n return;\n }\n\n var deltaProgress = progress - lastProgress;\n var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n var currentRate = deltaProgress / deltaTimestamp;\n\n rate = rate === null\n ? currentRate\n : filter(rate, currentRate, deltaTimestamp);\n lastProgress = progress;\n lastTimestamp = timestamp;\n }\n\n function estimate(timestamp/*::?: number*/) {\n if (lastProgress === null) { return Infinity; }\n if (lastProgress >= max) { return 0; }\n if (rate === null) { return Infinity; }\n\n var estimatedTime = (max - lastProgress) / rate;\n if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n }\n return Math.max(0, estimatedTime);\n }\n\n function getRate() {\n return rate === null ? 0 : rate;\n }\n\n return {\n start: start,\n reset: reset,\n report: report,\n estimate: estimate,\n rate: getRate,\n }\n}\n\nmodule.exports = makeEta;\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=5c8d96c6&\"\nimport script from \"./File.vue?vue&type=script&lang=js&\"\nexport * from \"./File.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon home-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"","\n\n","import { render, staticRenderFns } from \"./Home.vue?vue&type=template&id=69a49b0f&\"\nimport script from \"./Home.vue?vue&type=script&lang=js&\"\nexport * from \"./Home.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../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\nexport default component.exports","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index.css\";\n export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined ?\n\tnew AbortError(errorMessage) :\n\tnew DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined ?\n\t\tgetDOMException('This operation was aborted.') :\n\t\tsignal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, milliseconds, fallback, options) {\n\tlet timer;\n\n\tconst cancelablePromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tresolve(promise);\n\t\t\treturn;\n\t\t}\n\n\t\toptions = {\n\t\t\tcustomTimers: {setTimeout, clearTimeout},\n\t\t\t...options\n\t\t};\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\ttimer = options.customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (typeof fallback === 'function') {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst message = typeof fallback === 'string' ? fallback : `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\tconst timeoutError = fallback instanceof Error ? fallback : new TimeoutError(message);\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\treject(timeoutError);\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t} finally {\n\t\t\t\toptions.customTimers.clearTimeout.call(undefined, timer);\n\t\t\t}\n\t\t})();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tclearTimeout(timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _PriorityQueue_queue;\nimport lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n constructor() {\n _PriorityQueue_queue.set(this, []);\n }\n enqueue(run, options) {\n options = {\n priority: 0,\n ...options,\n };\n const element = {\n priority: options.priority,\n run,\n };\n if (this.size && __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\")[this.size - 1].priority >= options.priority) {\n __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").push(element);\n return;\n }\n const index = lowerBound(__classPrivateFieldGet(this, _PriorityQueue_queue, \"f\"), element, (a, b) => b.priority - a.priority);\n __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").splice(index, 0, element);\n }\n dequeue() {\n const item = __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").shift();\n return item === null || item === void 0 ? void 0 : item.run;\n }\n filter(options) {\n return __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").filter((element) => element.priority === options.priority).map((element) => element.run);\n }\n get size() {\n return __classPrivateFieldGet(this, _PriorityQueue_queue, \"f\").length;\n }\n}\n_PriorityQueue_queue = new WeakMap();\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n let first = 0;\n let count = array.length;\n while (count > 0) {\n const step = Math.trunc(count / 2);\n let it = first + step;\n if (comparator(array[it], value) <= 0) {\n first = ++it;\n count -= step + 1;\n }\n else {\n count = step;\n }\n }\n return first;\n}\n","var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n};\nvar __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _PQueue_instances, _PQueue_carryoverConcurrencyCount, _PQueue_isIntervalIgnored, _PQueue_intervalCount, _PQueue_intervalCap, _PQueue_interval, _PQueue_intervalEnd, _PQueue_intervalId, _PQueue_timeoutId, _PQueue_queue, _PQueue_queueClass, _PQueue_pending, _PQueue_concurrency, _PQueue_isPaused, _PQueue_throwOnTimeout, _PQueue_doesIntervalAllowAnother_get, _PQueue_doesConcurrentAllowAnother_get, _PQueue_next, _PQueue_onResumeInterval, _PQueue_isIntervalPaused_get, _PQueue_tryToStartAnother, _PQueue_initializeIntervalIfNeeded, _PQueue_onInterval, _PQueue_processQueue, _PQueue_throwOnAbort, _PQueue_onEvent;\nimport EventEmitter from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nThe error thrown by `queue.add()` when a job is aborted before it is run. See `signal`.\n*/\nexport class AbortError extends Error {\n}\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n constructor(options) {\n var _a, _b, _c, _d;\n super();\n _PQueue_instances.add(this);\n _PQueue_carryoverConcurrencyCount.set(this, void 0);\n _PQueue_isIntervalIgnored.set(this, void 0);\n _PQueue_intervalCount.set(this, 0);\n _PQueue_intervalCap.set(this, void 0);\n _PQueue_interval.set(this, void 0);\n _PQueue_intervalEnd.set(this, 0);\n _PQueue_intervalId.set(this, void 0);\n _PQueue_timeoutId.set(this, void 0);\n _PQueue_queue.set(this, void 0);\n _PQueue_queueClass.set(this, void 0);\n _PQueue_pending.set(this, 0);\n // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n _PQueue_concurrency.set(this, void 0);\n _PQueue_isPaused.set(this, void 0);\n _PQueue_throwOnTimeout.set(this, void 0);\n /**\n Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n \n Applies to each future operation.\n */\n Object.defineProperty(this, \"timeout\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: void 0\n });\n // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n options = {\n carryoverConcurrencyCount: false,\n intervalCap: Number.POSITIVE_INFINITY,\n interval: 0,\n concurrency: Number.POSITIVE_INFINITY,\n autoStart: true,\n queueClass: PriorityQueue,\n ...options,\n };\n if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${(_b = (_a = options.intervalCap) === null || _a === void 0 ? void 0 : _a.toString()) !== null && _b !== void 0 ? _b : ''}\\` (${typeof options.intervalCap})`);\n }\n if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${(_d = (_c = options.interval) === null || _c === void 0 ? void 0 : _c.toString()) !== null && _d !== void 0 ? _d : ''}\\` (${typeof options.interval})`);\n }\n __classPrivateFieldSet(this, _PQueue_carryoverConcurrencyCount, options.carryoverConcurrencyCount, \"f\");\n __classPrivateFieldSet(this, _PQueue_isIntervalIgnored, options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0, \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalCap, options.intervalCap, \"f\");\n __classPrivateFieldSet(this, _PQueue_interval, options.interval, \"f\");\n __classPrivateFieldSet(this, _PQueue_queue, new options.queueClass(), \"f\");\n __classPrivateFieldSet(this, _PQueue_queueClass, options.queueClass, \"f\");\n this.concurrency = options.concurrency;\n this.timeout = options.timeout;\n __classPrivateFieldSet(this, _PQueue_throwOnTimeout, options.throwOnTimeout === true, \"f\");\n __classPrivateFieldSet(this, _PQueue_isPaused, options.autoStart === false, \"f\");\n }\n get concurrency() {\n return __classPrivateFieldGet(this, _PQueue_concurrency, \"f\");\n }\n set concurrency(newConcurrency) {\n if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n }\n __classPrivateFieldSet(this, _PQueue_concurrency, newConcurrency, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n }\n async add(function_, options = {}) {\n options = {\n timeout: this.timeout,\n throwOnTimeout: __classPrivateFieldGet(this, _PQueue_throwOnTimeout, \"f\"),\n ...options,\n };\n return new Promise((resolve, reject) => {\n __classPrivateFieldGet(this, _PQueue_queue, \"f\").enqueue(async () => {\n var _a;\n var _b, _c;\n __classPrivateFieldSet(this, _PQueue_pending, (_b = __classPrivateFieldGet(this, _PQueue_pending, \"f\"), _b++, _b), \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalCount, (_c = __classPrivateFieldGet(this, _PQueue_intervalCount, \"f\"), _c++, _c), \"f\");\n try {\n // TODO: Use options.signal?.throwIfAborted() when targeting Node.js 18\n if ((_a = options.signal) === null || _a === void 0 ? void 0 : _a.aborted) {\n // TODO: Use ABORT_ERR code when targeting Node.js 16 (https://nodejs.org/docs/latest-v16.x/api/errors.html#abort_err)\n throw new AbortError('The task was aborted.');\n }\n let operation = function_({ signal: options.signal });\n if (options.timeout) {\n operation = pTimeout(Promise.resolve(operation), options.timeout);\n }\n if (options.signal) {\n operation = Promise.race([operation, __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_throwOnAbort).call(this, options.signal)]);\n }\n const result = await operation;\n resolve(result);\n this.emit('completed', result);\n }\n catch (error) {\n if (error instanceof TimeoutError && !options.throwOnTimeout) {\n resolve();\n return;\n }\n reject(error);\n this.emit('error', error);\n }\n finally {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_next).call(this);\n }\n }, options);\n this.emit('add');\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this);\n });\n }\n async addAll(functions, options) {\n return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n }\n /**\n Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n */\n start() {\n if (!__classPrivateFieldGet(this, _PQueue_isPaused, \"f\")) {\n return this;\n }\n __classPrivateFieldSet(this, _PQueue_isPaused, false, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n return this;\n }\n /**\n Put queue execution on hold.\n */\n pause() {\n __classPrivateFieldSet(this, _PQueue_isPaused, true, \"f\");\n }\n /**\n Clear the queue.\n */\n clear() {\n __classPrivateFieldSet(this, _PQueue_queue, new (__classPrivateFieldGet(this, _PQueue_queueClass, \"f\"))(), \"f\");\n }\n /**\n Can be called multiple times. Useful if you for example add additional items at a later time.\n\n @returns A promise that settles when the queue becomes empty.\n */\n async onEmpty() {\n // Instantly resolve if the queue is empty\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'empty');\n }\n /**\n @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n */\n async onSizeLessThan(limit) {\n // Instantly resolve if the queue is empty.\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size < limit) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'next', () => __classPrivateFieldGet(this, _PQueue_queue, \"f\").size < limit);\n }\n /**\n The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n */\n async onIdle() {\n // Instantly resolve if none pending and if nothing else is queued\n if (__classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n return;\n }\n await __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onEvent).call(this, 'idle');\n }\n /**\n Size of the queue, the number of queued items waiting to run.\n */\n get size() {\n return __classPrivateFieldGet(this, _PQueue_queue, \"f\").size;\n }\n /**\n Size of the queue, filtered by the given options.\n\n For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n */\n sizeBy(options) {\n // eslint-disable-next-line unicorn/no-array-callback-reference\n return __classPrivateFieldGet(this, _PQueue_queue, \"f\").filter(options).length;\n }\n /**\n Number of running items (no longer in the queue).\n */\n get pending() {\n return __classPrivateFieldGet(this, _PQueue_pending, \"f\");\n }\n /**\n Whether the queue is currently paused.\n */\n get isPaused() {\n return __classPrivateFieldGet(this, _PQueue_isPaused, \"f\");\n }\n}\n_PQueue_carryoverConcurrencyCount = new WeakMap(), _PQueue_isIntervalIgnored = new WeakMap(), _PQueue_intervalCount = new WeakMap(), _PQueue_intervalCap = new WeakMap(), _PQueue_interval = new WeakMap(), _PQueue_intervalEnd = new WeakMap(), _PQueue_intervalId = new WeakMap(), _PQueue_timeoutId = new WeakMap(), _PQueue_queue = new WeakMap(), _PQueue_queueClass = new WeakMap(), _PQueue_pending = new WeakMap(), _PQueue_concurrency = new WeakMap(), _PQueue_isPaused = new WeakMap(), _PQueue_throwOnTimeout = new WeakMap(), _PQueue_instances = new WeakSet(), _PQueue_doesIntervalAllowAnother_get = function _PQueue_doesIntervalAllowAnother_get() {\n return __classPrivateFieldGet(this, _PQueue_isIntervalIgnored, \"f\") || __classPrivateFieldGet(this, _PQueue_intervalCount, \"f\") < __classPrivateFieldGet(this, _PQueue_intervalCap, \"f\");\n}, _PQueue_doesConcurrentAllowAnother_get = function _PQueue_doesConcurrentAllowAnother_get() {\n return __classPrivateFieldGet(this, _PQueue_pending, \"f\") < __classPrivateFieldGet(this, _PQueue_concurrency, \"f\");\n}, _PQueue_next = function _PQueue_next() {\n var _a;\n __classPrivateFieldSet(this, _PQueue_pending, (_a = __classPrivateFieldGet(this, _PQueue_pending, \"f\"), _a--, _a), \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this);\n this.emit('next');\n}, _PQueue_onResumeInterval = function _PQueue_onResumeInterval() {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onInterval).call(this);\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_initializeIntervalIfNeeded).call(this);\n __classPrivateFieldSet(this, _PQueue_timeoutId, undefined, \"f\");\n}, _PQueue_isIntervalPaused_get = function _PQueue_isIntervalPaused_get() {\n const now = Date.now();\n if (__classPrivateFieldGet(this, _PQueue_intervalId, \"f\") === undefined) {\n const delay = __classPrivateFieldGet(this, _PQueue_intervalEnd, \"f\") - now;\n if (delay < 0) {\n // Act as the interval was done\n // We don't need to resume it here because it will be resumed on line 160\n __classPrivateFieldSet(this, _PQueue_intervalCount, (__classPrivateFieldGet(this, _PQueue_carryoverConcurrencyCount, \"f\")) ? __classPrivateFieldGet(this, _PQueue_pending, \"f\") : 0, \"f\");\n }\n else {\n // Act as the interval is pending\n if (__classPrivateFieldGet(this, _PQueue_timeoutId, \"f\") === undefined) {\n __classPrivateFieldSet(this, _PQueue_timeoutId, setTimeout(() => {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onResumeInterval).call(this);\n }, delay), \"f\");\n }\n return true;\n }\n }\n return false;\n}, _PQueue_tryToStartAnother = function _PQueue_tryToStartAnother() {\n if (__classPrivateFieldGet(this, _PQueue_queue, \"f\").size === 0) {\n // We can clear the interval (\"pause\")\n // Because we can redo it later (\"resume\")\n if (__classPrivateFieldGet(this, _PQueue_intervalId, \"f\")) {\n clearInterval(__classPrivateFieldGet(this, _PQueue_intervalId, \"f\"));\n }\n __classPrivateFieldSet(this, _PQueue_intervalId, undefined, \"f\");\n this.emit('empty');\n if (__classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0) {\n this.emit('idle');\n }\n return false;\n }\n if (!__classPrivateFieldGet(this, _PQueue_isPaused, \"f\")) {\n const canInitializeInterval = !__classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_isIntervalPaused_get);\n if (__classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_doesIntervalAllowAnother_get) && __classPrivateFieldGet(this, _PQueue_instances, \"a\", _PQueue_doesConcurrentAllowAnother_get)) {\n const job = __classPrivateFieldGet(this, _PQueue_queue, \"f\").dequeue();\n if (!job) {\n return false;\n }\n this.emit('active');\n job();\n if (canInitializeInterval) {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_initializeIntervalIfNeeded).call(this);\n }\n return true;\n }\n }\n return false;\n}, _PQueue_initializeIntervalIfNeeded = function _PQueue_initializeIntervalIfNeeded() {\n if (__classPrivateFieldGet(this, _PQueue_isIntervalIgnored, \"f\") || __classPrivateFieldGet(this, _PQueue_intervalId, \"f\") !== undefined) {\n return;\n }\n __classPrivateFieldSet(this, _PQueue_intervalId, setInterval(() => {\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_onInterval).call(this);\n }, __classPrivateFieldGet(this, _PQueue_interval, \"f\")), \"f\");\n __classPrivateFieldSet(this, _PQueue_intervalEnd, Date.now() + __classPrivateFieldGet(this, _PQueue_interval, \"f\"), \"f\");\n}, _PQueue_onInterval = function _PQueue_onInterval() {\n if (__classPrivateFieldGet(this, _PQueue_intervalCount, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_pending, \"f\") === 0 && __classPrivateFieldGet(this, _PQueue_intervalId, \"f\")) {\n clearInterval(__classPrivateFieldGet(this, _PQueue_intervalId, \"f\"));\n __classPrivateFieldSet(this, _PQueue_intervalId, undefined, \"f\");\n }\n __classPrivateFieldSet(this, _PQueue_intervalCount, __classPrivateFieldGet(this, _PQueue_carryoverConcurrencyCount, \"f\") ? __classPrivateFieldGet(this, _PQueue_pending, \"f\") : 0, \"f\");\n __classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_processQueue).call(this);\n}, _PQueue_processQueue = function _PQueue_processQueue() {\n // eslint-disable-next-line no-empty\n while (__classPrivateFieldGet(this, _PQueue_instances, \"m\", _PQueue_tryToStartAnother).call(this)) { }\n}, _PQueue_throwOnAbort = async function _PQueue_throwOnAbort(signal) {\n return new Promise((_resolve, reject) => {\n signal.addEventListener('abort', () => {\n // TODO: Reject with signal.throwIfAborted() when targeting Node.js 18\n // TODO: Use ABORT_ERR code when targeting Node.js 16 (https://nodejs.org/docs/latest-v16.x/api/errors.html#abort_err)\n reject(new AbortError('The task was aborted.'));\n }, { once: true });\n });\n}, _PQueue_onEvent = async function _PQueue_onEvent(event, filter) {\n return new Promise(resolve => {\n const listener = () => {\n if (filter && !filter()) {\n return;\n }\n this.off(event, listener);\n resolve();\n };\n this.on(event, listener);\n });\n};\n","import \"../assets/index.css\";\nimport { generateRemoteUrl as xl } from \"@nextcloud/router\";\nimport { getCurrentUser as mr } from \"@nextcloud/auth\";\nimport { Folder as kl, Permission as Vm, getNewFileMenuEntries as Wm } from \"@nextcloud/files\";\nimport Wn from \"@nextcloud/axios\";\nimport Zm from \"p-cancelable\";\nimport Km from \"p-queue\";\nimport Jm from \"p-limit\";\nimport { getLoggerBuilder as hi } from \"@nextcloud/logger\";\nimport { showError as Ym } from \"@nextcloud/dialogs\";\nimport Xm from \"simple-eta\";\nimport Qm from \"buffer\";\nfunction El(e, t) {\n return function() {\n return e.apply(t, arguments);\n };\n}\nconst { toString: e0 } = Object.prototype, { getPrototypeOf: dr } = Object, vs = ((e) => (t) => {\n const a = e0.call(t);\n return e[a] || (e[a] = a.slice(8, -1).toLowerCase());\n})(/* @__PURE__ */ Object.create(null)), vt = (e) => (e = e.toLowerCase(), (t) => vs(t) === e), Cs = (e) => (t) => typeof t === e, { isArray: Ta } = Array, Ka = Cs(\"undefined\");\nfunction t0(e) {\n return e !== null && !Ka(e) && e.constructor !== null && !Ka(e.constructor) && ot(e.constructor.isBuffer) && e.constructor.isBuffer(e);\n}\nconst Pl = vt(\"ArrayBuffer\");\nfunction a0(e) {\n let t;\n return typeof ArrayBuffer < \"u\" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && Pl(e.buffer), t;\n}\nconst n0 = Cs(\"string\"), ot = Cs(\"function\"), Sl = Cs(\"number\"), ys = (e) => e !== null && typeof e == \"object\", s0 = (e) => e === !0 || e === !1, Ln = (e) => {\n if (vs(e) !== \"object\")\n return !1;\n const t = dr(e);\n return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);\n}, o0 = vt(\"Date\"), r0 = vt(\"File\"), i0 = vt(\"Blob\"), u0 = vt(\"FileList\"), l0 = (e) => ys(e) && ot(e.pipe), c0 = (e) => {\n let t;\n return e && (typeof FormData == \"function\" && e instanceof FormData || ot(e.append) && ((t = vs(e)) === \"formdata\" || t === \"object\" && ot(e.toString) && e.toString() === \"[object FormData]\"));\n}, m0 = vt(\"URLSearchParams\"), d0 = (e) => e.trim ? e.trim() : e.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, \"\");\nfunction nn(e, t, { allOwnKeys: a = !1 } = {}) {\n if (e === null || typeof e > \"u\")\n return;\n let n, s;\n if (typeof e != \"object\" && (e = [e]), Ta(e))\n for (n = 0, s = e.length; n < s; n++)\n t.call(null, e[n], n, e);\n else {\n const r = a ? Object.getOwnPropertyNames(e) : Object.keys(e), o = r.length;\n let i;\n for (n = 0; n < o; n++)\n i = r[n], t.call(null, e[i], i, e);\n }\n}\nfunction Tl(e, t) {\n t = t.toLowerCase();\n const a = Object.keys(e);\n let n = a.length, s;\n for (; n-- > 0; )\n if (s = a[n], t === s.toLowerCase())\n return s;\n return null;\n}\nconst Fl = (() => typeof globalThis < \"u\" ? globalThis : typeof self < \"u\" ? self : typeof window < \"u\" ? window : global)(), Dl = (e) => !Ka(e) && e !== Fl;\nfunction Po() {\n const { caseless: e } = Dl(this) && this || {}, t = {}, a = (n, s) => {\n const r = e && Tl(t, s) || s;\n Ln(t[r]) && Ln(n) ? t[r] = Po(t[r], n) : Ln(n) ? t[r] = Po({}, n) : Ta(n) ? t[r] = n.slice() : t[r] = n;\n };\n for (let n = 0, s = arguments.length; n < s; n++)\n arguments[n] && nn(arguments[n], a);\n return t;\n}\nconst p0 = (e, t, a, { allOwnKeys: n } = {}) => (nn(t, (s, r) => {\n a && ot(s) ? e[r] = El(s, a) : e[r] = s;\n}, { allOwnKeys: n }), e), g0 = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), h0 = (e, t, a, n) => {\n e.prototype = Object.create(t.prototype, n), e.prototype.constructor = e, Object.defineProperty(e, \"super\", { value: t.prototype }), a && Object.assign(e.prototype, a);\n}, f0 = (e, t, a, n) => {\n let s, r, o;\n const i = {};\n if (t = t || {}, e == null)\n return t;\n do {\n for (s = Object.getOwnPropertyNames(e), r = s.length; r-- > 0; )\n o = s[r], (!n || n(o, e, t)) && !i[o] && (t[o] = e[o], i[o] = !0);\n e = a !== !1 && dr(e);\n } while (e && (!a || a(e, t)) && e !== Object.prototype);\n return t;\n}, v0 = (e, t, a) => {\n e = String(e), (a === void 0 || a > e.length) && (a = e.length), a -= t.length;\n const n = e.indexOf(t, a);\n return n !== -1 && n === a;\n}, C0 = (e) => {\n if (!e)\n return null;\n if (Ta(e))\n return e;\n let t = e.length;\n if (!Sl(t))\n return null;\n const a = new Array(t);\n for (; t-- > 0; )\n a[t] = e[t];\n return a;\n}, y0 = ((e) => (t) => e && t instanceof e)(typeof Uint8Array < \"u\" && dr(Uint8Array)), A0 = (e, t) => {\n const a = (e && e[Symbol.iterator]).call(e);\n let n;\n for (; (n = a.next()) && !n.done; ) {\n const s = n.value;\n t.call(e, s[0], s[1]);\n }\n}, w0 = (e, t) => {\n let a;\n const n = [];\n for (; (a = e.exec(t)) !== null; )\n n.push(a);\n return n;\n}, b0 = vt(\"HTMLFormElement\"), x0 = (e) => e.toLowerCase().replace(/[-_\\s]([a-z\\d])(\\w*)/g, function(t, a, n) {\n return a.toUpperCase() + n;\n}), fi = (({ hasOwnProperty: e }) => (t, a) => e.call(t, a))(Object.prototype), k0 = vt(\"RegExp\"), Bl = (e, t) => {\n const a = Object.getOwnPropertyDescriptors(e), n = {};\n nn(a, (s, r) => {\n t(s, r, e) !== !1 && (n[r] = s);\n }), Object.defineProperties(e, n);\n}, E0 = (e) => {\n Bl(e, (t, a) => {\n if (ot(e) && [\"arguments\", \"caller\", \"callee\"].indexOf(a) !== -1)\n return !1;\n const n = e[a];\n if (ot(n)) {\n if (t.enumerable = !1, \"writable\" in t) {\n t.writable = !1;\n return;\n }\n t.set || (t.set = () => {\n throw Error(\"Can not rewrite read-only method '\" + a + \"'\");\n });\n }\n });\n}, P0 = (e, t) => {\n const a = {}, n = (s) => {\n s.forEach((r) => {\n a[r] = !0;\n });\n };\n return Ta(e) ? n(e) : n(String(e).split(t)), a;\n}, S0 = () => {\n}, T0 = (e, t) => (e = +e, Number.isFinite(e) ? e : t), Ks = \"abcdefghijklmnopqrstuvwxyz\", vi = \"0123456789\", _l = { DIGIT: vi, ALPHA: Ks, ALPHA_DIGIT: Ks + Ks.toUpperCase() + vi }, F0 = (e = 16, t = _l.ALPHA_DIGIT) => {\n let a = \"\";\n const { length: n } = t;\n for (; e--; )\n a += t[Math.random() * n | 0];\n return a;\n};\nfunction D0(e) {\n return !!(e && ot(e.append) && e[Symbol.toStringTag] === \"FormData\" && e[Symbol.iterator]);\n}\nconst B0 = (e) => {\n const t = new Array(10), a = (n, s) => {\n if (ys(n)) {\n if (t.indexOf(n) >= 0)\n return;\n if (!(\"toJSON\" in n)) {\n t[s] = n;\n const r = Ta(n) ? [] : {};\n return nn(n, (o, i) => {\n const u = a(o, s + 1);\n !Ka(u) && (r[i] = u);\n }), t[s] = void 0, r;\n }\n }\n return n;\n };\n return a(e, 0);\n}, _0 = vt(\"AsyncFunction\"), N0 = (e) => e && (ys(e) || ot(e)) && ot(e.then) && ot(e.catch), G = { isArray: Ta, isArrayBuffer: Pl, isBuffer: t0, isFormData: c0, isArrayBufferView: a0, isString: n0, isNumber: Sl, isBoolean: s0, isObject: ys, isPlainObject: Ln, isUndefined: Ka, isDate: o0, isFile: r0, isBlob: i0, isRegExp: k0, isFunction: ot, isStream: l0, isURLSearchParams: m0, isTypedArray: y0, isFileList: u0, forEach: nn, merge: Po, extend: p0, trim: d0, stripBOM: g0, inherits: h0, toFlatObject: f0, kindOf: vs, kindOfTest: vt, endsWith: v0, toArray: C0, forEachEntry: A0, matchAll: w0, isHTMLForm: b0, hasOwnProperty: fi, hasOwnProp: fi, reduceDescriptors: Bl, freezeMethods: E0, toObjectSet: P0, toCamelCase: x0, noop: S0, toFiniteNumber: T0, findKey: Tl, global: Fl, isContextDefined: Dl, ALPHABET: _l, generateString: F0, isSpecCompliantForm: D0, toJSONObject: B0, isAsyncFn: _0, isThenable: N0 };\nfunction be(e, t, a, n, s) {\n Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = \"AxiosError\", t && (this.code = t), a && (this.config = a), n && (this.request = n), s && (this.response = s);\n}\nG.inherits(be, Error, { toJSON: function() {\n return { message: this.message, name: this.name, description: this.description, number: this.number, fileName: this.fileName, lineNumber: this.lineNumber, columnNumber: this.columnNumber, stack: this.stack, config: G.toJSONObject(this.config), code: this.code, status: this.response && this.response.status ? this.response.status : null };\n} });\nconst Ci = be.prototype, yi = {};\n[\"ERR_BAD_OPTION_VALUE\", \"ERR_BAD_OPTION\", \"ECONNABORTED\", \"ETIMEDOUT\", \"ERR_NETWORK\", \"ERR_FR_TOO_MANY_REDIRECTS\", \"ERR_DEPRECATED\", \"ERR_BAD_RESPONSE\", \"ERR_BAD_REQUEST\", \"ERR_CANCELED\", \"ERR_NOT_SUPPORT\", \"ERR_INVALID_URL\"].forEach((e) => {\n yi[e] = { value: e };\n}), Object.defineProperties(be, yi), Object.defineProperty(Ci, \"isAxiosError\", { value: !0 }), be.from = (e, t, a, n, s, r) => {\n const o = Object.create(Ci);\n return G.toFlatObject(e, o, function(i) {\n return i !== Error.prototype;\n }, (i) => i !== \"isAxiosError\"), be.call(o, e.message, t, a, n, s), o.cause = e, o.name = e.name, r && Object.assign(o, r), o;\n};\nconst O0 = null;\nfunction So(e) {\n return G.isPlainObject(e) || G.isArray(e);\n}\nfunction Nl(e) {\n return G.endsWith(e, \"[]\") ? e.slice(0, -2) : e;\n}\nfunction Ai(e, t, a) {\n return e ? e.concat(t).map(function(n, s) {\n return n = Nl(n), !a && s ? \"[\" + n + \"]\" : n;\n }).join(a ? \".\" : \"\") : t;\n}\nfunction j0(e) {\n return G.isArray(e) && !e.some(So);\n}\nconst L0 = G.toFlatObject(G, {}, null, function(e) {\n return /^is[A-Z]/.test(e);\n});\nfunction As(e, t, a) {\n if (!G.isObject(e))\n throw new TypeError(\"target must be an object\");\n t = t || new FormData(), a = G.toFlatObject(a, { metaTokens: !0, dots: !1, indexes: !1 }, !1, function(p, h) {\n return !G.isUndefined(h[p]);\n });\n const n = a.metaTokens, s = a.visitor || l, r = a.dots, o = a.indexes, i = (a.Blob || typeof Blob < \"u\" && Blob) && G.isSpecCompliantForm(t);\n if (!G.isFunction(s))\n throw new TypeError(\"visitor must be a function\");\n function u(p) {\n if (p === null)\n return \"\";\n if (G.isDate(p))\n return p.toISOString();\n if (!i && G.isBlob(p))\n throw new be(\"Blob is not supported. Use a Buffer instead.\");\n return G.isArrayBuffer(p) || G.isTypedArray(p) ? i && typeof Blob == \"function\" ? new Blob([p]) : Buffer.from(p) : p;\n }\n function l(p, h, y) {\n let P = p;\n if (p && !y && typeof p == \"object\") {\n if (G.endsWith(h, \"{}\"))\n h = n ? h : h.slice(0, -2), p = JSON.stringify(p);\n else if (G.isArray(p) && j0(p) || (G.isFileList(p) || G.endsWith(h, \"[]\")) && (P = G.toArray(p)))\n return h = Nl(h), P.forEach(function(v, g) {\n !(G.isUndefined(v) || v === null) && t.append(o === !0 ? Ai([h], g, r) : o === null ? h : h + \"[]\", u(v));\n }), !1;\n }\n return So(p) ? !0 : (t.append(Ai(y, h, r), u(p)), !1);\n }\n const c = [], d = Object.assign(L0, { defaultVisitor: l, convertValue: u, isVisitable: So });\n function m(p, h) {\n if (!G.isUndefined(p)) {\n if (c.indexOf(p) !== -1)\n throw Error(\"Circular reference detected in \" + h.join(\".\"));\n c.push(p), G.forEach(p, function(y, P) {\n (!(G.isUndefined(y) || y === null) && s.call(t, y, G.isString(P) ? P.trim() : P, h, d)) === !0 && m(y, h ? h.concat(P) : [P]);\n }), c.pop();\n }\n }\n if (!G.isObject(e))\n throw new TypeError(\"data must be an object\");\n return m(e), t;\n}\nfunction wi(e) {\n const t = { \"!\": \"%21\", \"'\": \"%27\", \"(\": \"%28\", \")\": \"%29\", \"~\": \"%7E\", \"%20\": \"+\", \"%00\": \"\\0\" };\n return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g, function(a) {\n return t[a];\n });\n}\nfunction pr(e, t) {\n this._pairs = [], e && As(e, this, t);\n}\nconst bi = pr.prototype;\nbi.append = function(e, t) {\n this._pairs.push([e, t]);\n}, bi.toString = function(e) {\n const t = e ? function(a) {\n return e.call(this, a, wi);\n } : wi;\n return this._pairs.map(function(a) {\n return t(a[0]) + \"=\" + t(a[1]);\n }, \"\").join(\"&\");\n};\nfunction z0(e) {\n return encodeURIComponent(e).replace(/%3A/gi, \":\").replace(/%24/g, \"$\").replace(/%2C/gi, \",\").replace(/%20/g, \"+\").replace(/%5B/gi, \"[\").replace(/%5D/gi, \"]\");\n}\nfunction Ol(e, t, a) {\n if (!t)\n return e;\n const n = a && a.encode || z0, s = a && a.serialize;\n let r;\n if (s ? r = s(t, a) : r = G.isURLSearchParams(t) ? t.toString() : new pr(t, a).toString(n), r) {\n const o = e.indexOf(\"#\");\n o !== -1 && (e = e.slice(0, o)), e += (e.indexOf(\"?\") === -1 ? \"?\" : \"&\") + r;\n }\n return e;\n}\nclass U0 {\n constructor() {\n this.handlers = [];\n }\n use(t, a, n) {\n return this.handlers.push({ fulfilled: t, rejected: a, synchronous: n ? n.synchronous : !1, runWhen: n ? n.runWhen : null }), this.handlers.length - 1;\n }\n eject(t) {\n this.handlers[t] && (this.handlers[t] = null);\n }\n clear() {\n this.handlers && (this.handlers = []);\n }\n forEach(t) {\n G.forEach(this.handlers, function(a) {\n a !== null && t(a);\n });\n }\n}\nconst xi = U0, jl = { silentJSONParsing: !0, forcedJSONParsing: !0, clarifyTimeoutError: !1 }, M0 = typeof URLSearchParams < \"u\" ? URLSearchParams : pr, R0 = typeof FormData < \"u\" ? FormData : null, $0 = typeof Blob < \"u\" ? Blob : null, I0 = (() => {\n let e;\n return typeof navigator < \"u\" && ((e = navigator.product) === \"ReactNative\" || e === \"NativeScript\" || e === \"NS\") ? !1 : typeof window < \"u\" && typeof document < \"u\";\n})(), G0 = (() => typeof WorkerGlobalScope < \"u\" && self instanceof WorkerGlobalScope && typeof self.importScripts == \"function\")(), gt = { isBrowser: !0, classes: { URLSearchParams: M0, FormData: R0, Blob: $0 }, isStandardBrowserEnv: I0, isStandardBrowserWebWorkerEnv: G0, protocols: [\"http\", \"https\", \"file\", \"blob\", \"url\", \"data\"] };\nfunction H0(e, t) {\n return As(e, new gt.classes.URLSearchParams(), Object.assign({ visitor: function(a, n, s, r) {\n return gt.isNode && G.isBuffer(a) ? (this.append(n, a.toString(\"base64\")), !1) : r.defaultVisitor.apply(this, arguments);\n } }, t));\n}\nfunction q0(e) {\n return G.matchAll(/\\w+|\\[(\\w*)]/g, e).map((t) => t[0] === \"[]\" ? \"\" : t[1] || t[0]);\n}\nfunction V0(e) {\n const t = {}, a = Object.keys(e);\n let n;\n const s = a.length;\n let r;\n for (n = 0; n < s; n++)\n r = a[n], t[r] = e[r];\n return t;\n}\nfunction Ll(e) {\n function t(a, n, s, r) {\n let o = a[r++];\n const i = Number.isFinite(+o), u = r >= a.length;\n return o = !o && G.isArray(s) ? s.length : o, u ? (G.hasOwnProp(s, o) ? s[o] = [s[o], n] : s[o] = n, !i) : ((!s[o] || !G.isObject(s[o])) && (s[o] = []), t(a, n, s[o], r) && G.isArray(s[o]) && (s[o] = V0(s[o])), !i);\n }\n if (G.isFormData(e) && G.isFunction(e.entries)) {\n const a = {};\n return G.forEachEntry(e, (n, s) => {\n t(q0(n), s, a, 0);\n }), a;\n }\n return null;\n}\nconst W0 = { \"Content-Type\": void 0 };\nfunction Z0(e, t, a) {\n if (G.isString(e))\n try {\n return (t || JSON.parse)(e), G.trim(e);\n } catch (n) {\n if (n.name !== \"SyntaxError\")\n throw n;\n }\n return (a || JSON.stringify)(e);\n}\nconst Zn = { transitional: jl, adapter: [\"xhr\", \"http\"], transformRequest: [function(e, t) {\n const a = t.getContentType() || \"\", n = a.indexOf(\"application/json\") > -1, s = G.isObject(e);\n if (s && G.isHTMLForm(e) && (e = new FormData(e)), G.isFormData(e))\n return n && n ? JSON.stringify(Ll(e)) : e;\n if (G.isArrayBuffer(e) || G.isBuffer(e) || G.isStream(e) || G.isFile(e) || G.isBlob(e))\n return e;\n if (G.isArrayBufferView(e))\n return e.buffer;\n if (G.isURLSearchParams(e))\n return t.setContentType(\"application/x-www-form-urlencoded;charset=utf-8\", !1), e.toString();\n let r;\n if (s) {\n if (a.indexOf(\"application/x-www-form-urlencoded\") > -1)\n return H0(e, this.formSerializer).toString();\n if ((r = G.isFileList(e)) || a.indexOf(\"multipart/form-data\") > -1) {\n const o = this.env && this.env.FormData;\n return As(r ? { \"files[]\": e } : e, o && new o(), this.formSerializer);\n }\n }\n return s || n ? (t.setContentType(\"application/json\", !1), Z0(e)) : e;\n}], transformResponse: [function(e) {\n const t = this.transitional || Zn.transitional, a = t && t.forcedJSONParsing, n = this.responseType === \"json\";\n if (e && G.isString(e) && (a && !this.responseType || n)) {\n const s = !(t && t.silentJSONParsing) && n;\n try {\n return JSON.parse(e);\n } catch (r) {\n if (s)\n throw r.name === \"SyntaxError\" ? be.from(r, be.ERR_BAD_RESPONSE, this, null, this.response) : r;\n }\n }\n return e;\n}], timeout: 0, xsrfCookieName: \"XSRF-TOKEN\", xsrfHeaderName: \"X-XSRF-TOKEN\", maxContentLength: -1, maxBodyLength: -1, env: { FormData: gt.classes.FormData, Blob: gt.classes.Blob }, validateStatus: function(e) {\n return e >= 200 && e < 300;\n}, headers: { common: { Accept: \"application/json, text/plain, */*\" } } };\nG.forEach([\"delete\", \"get\", \"head\"], function(e) {\n Zn.headers[e] = {};\n}), G.forEach([\"post\", \"put\", \"patch\"], function(e) {\n Zn.headers[e] = G.merge(W0);\n});\nconst gr = Zn, K0 = G.toObjectSet([\"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\"]), J0 = (e) => {\n const t = {};\n let a, n, s;\n return e && e.split(`\n`).forEach(function(r) {\n s = r.indexOf(\":\"), a = r.substring(0, s).trim().toLowerCase(), n = r.substring(s + 1).trim(), !(!a || t[a] && K0[a]) && (a === \"set-cookie\" ? t[a] ? t[a].push(n) : t[a] = [n] : t[a] = t[a] ? t[a] + \", \" + n : n);\n }), t;\n}, ki = Symbol(\"internals\");\nfunction La(e) {\n return e && String(e).trim().toLowerCase();\n}\nfunction zn(e) {\n return e === !1 || e == null ? e : G.isArray(e) ? e.map(zn) : String(e);\n}\nfunction Y0(e) {\n const t = /* @__PURE__ */ Object.create(null), a = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let n;\n for (; n = a.exec(e); )\n t[n[1]] = n[2];\n return t;\n}\nconst X0 = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());\nfunction Js(e, t, a, n, s) {\n if (G.isFunction(n))\n return n.call(this, t, a);\n if (s && (t = a), !!G.isString(t)) {\n if (G.isString(n))\n return t.indexOf(n) !== -1;\n if (G.isRegExp(n))\n return n.test(t);\n }\n}\nfunction Q0(e) {\n return e.trim().toLowerCase().replace(/([a-z\\d])(\\w*)/g, (t, a, n) => a.toUpperCase() + n);\n}\nfunction ed(e, t) {\n const a = G.toCamelCase(\" \" + t);\n [\"get\", \"set\", \"has\"].forEach((n) => {\n Object.defineProperty(e, n + a, { value: function(s, r, o) {\n return this[n].call(this, t, s, r, o);\n }, configurable: !0 });\n });\n}\nlet Un = class {\n constructor(e) {\n e && this.set(e);\n }\n set(e, t, a) {\n const n = this;\n function s(o, i, u) {\n const l = La(i);\n if (!l)\n throw new Error(\"header name must be a non-empty string\");\n const c = G.findKey(n, l);\n (!c || n[c] === void 0 || u === !0 || u === void 0 && n[c] !== !1) && (n[c || i] = zn(o));\n }\n const r = (o, i) => G.forEach(o, (u, l) => s(u, l, i));\n return G.isPlainObject(e) || e instanceof this.constructor ? r(e, t) : G.isString(e) && (e = e.trim()) && !X0(e) ? r(J0(e), t) : e != null && s(t, e, a), this;\n }\n get(e, t) {\n if (e = La(e), e) {\n const a = G.findKey(this, e);\n if (a) {\n const n = this[a];\n if (!t)\n return n;\n if (t === !0)\n return Y0(n);\n if (G.isFunction(t))\n return t.call(this, n, a);\n if (G.isRegExp(t))\n return t.exec(n);\n throw new TypeError(\"parser must be boolean|regexp|function\");\n }\n }\n }\n has(e, t) {\n if (e = La(e), e) {\n const a = G.findKey(this, e);\n return !!(a && this[a] !== void 0 && (!t || Js(this, this[a], a, t)));\n }\n return !1;\n }\n delete(e, t) {\n const a = this;\n let n = !1;\n function s(r) {\n if (r = La(r), r) {\n const o = G.findKey(a, r);\n o && (!t || Js(a, a[o], o, t)) && (delete a[o], n = !0);\n }\n }\n return G.isArray(e) ? e.forEach(s) : s(e), n;\n }\n clear(e) {\n const t = Object.keys(this);\n let a = t.length, n = !1;\n for (; a--; ) {\n const s = t[a];\n (!e || Js(this, this[s], s, e, !0)) && (delete this[s], n = !0);\n }\n return n;\n }\n normalize(e) {\n const t = this, a = {};\n return G.forEach(this, (n, s) => {\n const r = G.findKey(a, s);\n if (r) {\n t[r] = zn(n), delete t[s];\n return;\n }\n const o = e ? Q0(s) : String(s).trim();\n o !== s && delete t[s], t[o] = zn(n), a[o] = !0;\n }), this;\n }\n concat(...e) {\n return this.constructor.concat(this, ...e);\n }\n toJSON(e) {\n const t = /* @__PURE__ */ Object.create(null);\n return G.forEach(this, (a, n) => {\n a != null && a !== !1 && (t[n] = e && G.isArray(a) ? a.join(\", \") : a);\n }), t;\n }\n [Symbol.iterator]() {\n return Object.entries(this.toJSON())[Symbol.iterator]();\n }\n toString() {\n return Object.entries(this.toJSON()).map(([e, t]) => e + \": \" + t).join(`\n`);\n }\n get [Symbol.toStringTag]() {\n return \"AxiosHeaders\";\n }\n static from(e) {\n return e instanceof this ? e : new this(e);\n }\n static concat(e, ...t) {\n const a = new this(e);\n return t.forEach((n) => a.set(n)), a;\n }\n static accessor(e) {\n const t = (this[ki] = this[ki] = { accessors: {} }).accessors, a = this.prototype;\n function n(s) {\n const r = La(s);\n t[r] || (ed(a, s), t[r] = !0);\n }\n return G.isArray(e) ? e.forEach(n) : n(e), this;\n }\n};\nUn.accessor([\"Content-Type\", \"Content-Length\", \"Accept\", \"Accept-Encoding\", \"User-Agent\", \"Authorization\"]), G.freezeMethods(Un.prototype), G.freezeMethods(Un);\nconst xt = Un;\nfunction Ys(e, t) {\n const a = this || gr, n = t || a, s = xt.from(n.headers);\n let r = n.data;\n return G.forEach(e, function(o) {\n r = o.call(a, r, s.normalize(), t ? t.status : void 0);\n }), s.normalize(), r;\n}\nfunction zl(e) {\n return !!(e && e.__CANCEL__);\n}\nfunction sn(e, t, a) {\n be.call(this, e ?? \"canceled\", be.ERR_CANCELED, t, a), this.name = \"CanceledError\";\n}\nG.inherits(sn, be, { __CANCEL__: !0 });\nfunction td(e, t, a) {\n const n = a.config.validateStatus;\n !a.status || !n || n(a.status) ? e(a) : t(new be(\"Request failed with status code \" + a.status, [be.ERR_BAD_REQUEST, be.ERR_BAD_RESPONSE][Math.floor(a.status / 100) - 4], a.config, a.request, a));\n}\nconst ad = gt.isStandardBrowserEnv ? function() {\n return { write: function(e, t, a, n, s, r) {\n const o = [];\n o.push(e + \"=\" + encodeURIComponent(t)), G.isNumber(a) && o.push(\"expires=\" + new Date(a).toGMTString()), G.isString(n) && o.push(\"path=\" + n), G.isString(s) && o.push(\"domain=\" + s), r === !0 && o.push(\"secure\"), document.cookie = o.join(\"; \");\n }, read: function(e) {\n const t = document.cookie.match(new RegExp(\"(^|;\\\\s*)(\" + e + \")=([^;]*)\"));\n return t ? decodeURIComponent(t[3]) : null;\n }, remove: function(e) {\n this.write(e, \"\", Date.now() - 864e5);\n } };\n}() : function() {\n return { write: function() {\n }, read: function() {\n return null;\n }, remove: function() {\n } };\n}();\nfunction nd(e) {\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(e);\n}\nfunction sd(e, t) {\n return t ? e.replace(/\\/+$/, \"\") + \"/\" + t.replace(/^\\/+/, \"\") : e;\n}\nfunction Ul(e, t) {\n return e && !nd(t) ? sd(e, t) : t;\n}\nconst od = gt.isStandardBrowserEnv ? function() {\n const e = /(msie|trident)/i.test(navigator.userAgent), t = document.createElement(\"a\");\n let a;\n function n(s) {\n let r = s;\n return e && (t.setAttribute(\"href\", r), r = t.href), t.setAttribute(\"href\", r), { href: t.href, protocol: t.protocol ? t.protocol.replace(/:$/, \"\") : \"\", host: t.host, search: t.search ? t.search.replace(/^\\?/, \"\") : \"\", hash: t.hash ? t.hash.replace(/^#/, \"\") : \"\", hostname: t.hostname, port: t.port, pathname: t.pathname.charAt(0) === \"/\" ? t.pathname : \"/\" + t.pathname };\n }\n return a = n(window.location.href), function(s) {\n const r = G.isString(s) ? n(s) : s;\n return r.protocol === a.protocol && r.host === a.host;\n };\n}() : function() {\n return function() {\n return !0;\n };\n}();\nfunction rd(e) {\n const t = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(e);\n return t && t[1] || \"\";\n}\nfunction id(e, t) {\n e = e || 10;\n const a = new Array(e), n = new Array(e);\n let s = 0, r = 0, o;\n return t = t !== void 0 ? t : 1e3, function(i) {\n const u = Date.now(), l = n[r];\n o || (o = u), a[s] = i, n[s] = u;\n let c = r, d = 0;\n for (; c !== s; )\n d += a[c++], c = c % e;\n if (s = (s + 1) % e, s === r && (r = (r + 1) % e), u - o < t)\n return;\n const m = l && u - l;\n return m ? Math.round(d * 1e3 / m) : void 0;\n };\n}\nfunction Ei(e, t) {\n let a = 0;\n const n = id(50, 250);\n return (s) => {\n const r = s.loaded, o = s.lengthComputable ? s.total : void 0, i = r - a, u = n(i), l = r <= o;\n a = r;\n const c = { loaded: r, total: o, progress: o ? r / o : void 0, bytes: i, rate: u || void 0, estimated: u && o && l ? (o - r) / u : void 0, event: s };\n c[t ? \"download\" : \"upload\"] = !0, e(c);\n };\n}\nconst ud = typeof XMLHttpRequest < \"u\", ld = ud && function(e) {\n return new Promise(function(t, a) {\n let n = e.data;\n const s = xt.from(e.headers).normalize(), r = e.responseType;\n let o;\n function i() {\n e.cancelToken && e.cancelToken.unsubscribe(o), e.signal && e.signal.removeEventListener(\"abort\", o);\n }\n G.isFormData(n) && (gt.isStandardBrowserEnv || gt.isStandardBrowserWebWorkerEnv ? s.setContentType(!1) : s.setContentType(\"multipart/form-data;\", !1));\n let u = new XMLHttpRequest();\n if (e.auth) {\n const m = e.auth.username || \"\", p = e.auth.password ? unescape(encodeURIComponent(e.auth.password)) : \"\";\n s.set(\"Authorization\", \"Basic \" + btoa(m + \":\" + p));\n }\n const l = Ul(e.baseURL, e.url);\n u.open(e.method.toUpperCase(), Ol(l, e.params, e.paramsSerializer), !0), u.timeout = e.timeout;\n function c() {\n if (!u)\n return;\n const m = xt.from(\"getAllResponseHeaders\" in u && u.getAllResponseHeaders()), p = { data: !r || r === \"text\" || r === \"json\" ? u.responseText : u.response, status: u.status, statusText: u.statusText, headers: m, config: e, request: u };\n td(function(h) {\n t(h), i();\n }, function(h) {\n a(h), i();\n }, p), u = null;\n }\n if (\"onloadend\" in u ? u.onloadend = c : u.onreadystatechange = function() {\n !u || u.readyState !== 4 || u.status === 0 && !(u.responseURL && u.responseURL.indexOf(\"file:\") === 0) || setTimeout(c);\n }, u.onabort = function() {\n u && (a(new be(\"Request aborted\", be.ECONNABORTED, e, u)), u = null);\n }, u.onerror = function() {\n a(new be(\"Network Error\", be.ERR_NETWORK, e, u)), u = null;\n }, u.ontimeout = function() {\n let m = e.timeout ? \"timeout of \" + e.timeout + \"ms exceeded\" : \"timeout exceeded\";\n const p = e.transitional || jl;\n e.timeoutErrorMessage && (m = e.timeoutErrorMessage), a(new be(m, p.clarifyTimeoutError ? be.ETIMEDOUT : be.ECONNABORTED, e, u)), u = null;\n }, gt.isStandardBrowserEnv) {\n const m = (e.withCredentials || od(l)) && e.xsrfCookieName && ad.read(e.xsrfCookieName);\n m && s.set(e.xsrfHeaderName, m);\n }\n n === void 0 && s.setContentType(null), \"setRequestHeader\" in u && G.forEach(s.toJSON(), function(m, p) {\n u.setRequestHeader(p, m);\n }), G.isUndefined(e.withCredentials) || (u.withCredentials = !!e.withCredentials), r && r !== \"json\" && (u.responseType = e.responseType), typeof e.onDownloadProgress == \"function\" && u.addEventListener(\"progress\", Ei(e.onDownloadProgress, !0)), typeof e.onUploadProgress == \"function\" && u.upload && u.upload.addEventListener(\"progress\", Ei(e.onUploadProgress)), (e.cancelToken || e.signal) && (o = (m) => {\n u && (a(!m || m.type ? new sn(null, e, u) : m), u.abort(), u = null);\n }, e.cancelToken && e.cancelToken.subscribe(o), e.signal && (e.signal.aborted ? o() : e.signal.addEventListener(\"abort\", o)));\n const d = rd(l);\n if (d && gt.protocols.indexOf(d) === -1) {\n a(new be(\"Unsupported protocol \" + d + \":\", be.ERR_BAD_REQUEST, e));\n return;\n }\n u.send(n || null);\n });\n}, Mn = { http: O0, xhr: ld };\nG.forEach(Mn, (e, t) => {\n if (e) {\n try {\n Object.defineProperty(e, \"name\", { value: t });\n } catch {\n }\n Object.defineProperty(e, \"adapterName\", { value: t });\n }\n});\nconst cd = { getAdapter: (e) => {\n e = G.isArray(e) ? e : [e];\n const { length: t } = e;\n let a, n;\n for (let s = 0; s < t && (a = e[s], !(n = G.isString(a) ? Mn[a.toLowerCase()] : a)); s++)\n ;\n if (!n)\n throw n === !1 ? new be(`Adapter ${a} is not supported by the environment`, \"ERR_NOT_SUPPORT\") : new Error(G.hasOwnProp(Mn, a) ? `Adapter '${a}' is not available in the build` : `Unknown adapter '${a}'`);\n if (!G.isFunction(n))\n throw new TypeError(\"adapter is not a function\");\n return n;\n}, adapters: Mn };\nfunction Xs(e) {\n if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)\n throw new sn(null, e);\n}\nfunction Pi(e) {\n return Xs(e), e.headers = xt.from(e.headers), e.data = Ys.call(e, e.transformRequest), [\"post\", \"put\", \"patch\"].indexOf(e.method) !== -1 && e.headers.setContentType(\"application/x-www-form-urlencoded\", !1), cd.getAdapter(e.adapter || gr.adapter)(e).then(function(t) {\n return Xs(e), t.data = Ys.call(e, e.transformResponse, t), t.headers = xt.from(t.headers), t;\n }, function(t) {\n return zl(t) || (Xs(e), t && t.response && (t.response.data = Ys.call(e, e.transformResponse, t.response), t.response.headers = xt.from(t.response.headers))), Promise.reject(t);\n });\n}\nconst Si = (e) => e instanceof xt ? e.toJSON() : e;\nfunction xa(e, t) {\n t = t || {};\n const a = {};\n function n(l, c, d) {\n return G.isPlainObject(l) && G.isPlainObject(c) ? G.merge.call({ caseless: d }, l, c) : G.isPlainObject(c) ? G.merge({}, c) : G.isArray(c) ? c.slice() : c;\n }\n function s(l, c, d) {\n if (G.isUndefined(c)) {\n if (!G.isUndefined(l))\n return n(void 0, l, d);\n } else\n return n(l, c, d);\n }\n function r(l, c) {\n if (!G.isUndefined(c))\n return n(void 0, c);\n }\n function o(l, c) {\n if (G.isUndefined(c)) {\n if (!G.isUndefined(l))\n return n(void 0, l);\n } else\n return n(void 0, c);\n }\n function i(l, c, d) {\n if (d in t)\n return n(l, c);\n if (d in e)\n return n(void 0, l);\n }\n const u = { url: r, method: r, data: r, baseURL: o, transformRequest: o, transformResponse: o, paramsSerializer: o, timeout: o, timeoutMessage: o, withCredentials: o, adapter: o, responseType: o, xsrfCookieName: o, xsrfHeaderName: o, onUploadProgress: o, onDownloadProgress: o, decompress: o, maxContentLength: o, maxBodyLength: o, beforeRedirect: o, transport: o, httpAgent: o, httpsAgent: o, cancelToken: o, socketPath: o, responseEncoding: o, validateStatus: i, headers: (l, c) => s(Si(l), Si(c), !0) };\n return G.forEach(Object.keys(Object.assign({}, e, t)), function(l) {\n const c = u[l] || s, d = c(e[l], t[l], l);\n G.isUndefined(d) && c !== i || (a[l] = d);\n }), a;\n}\nconst Ml = \"1.4.0\", hr = {};\n[\"object\", \"boolean\", \"number\", \"function\", \"string\", \"symbol\"].forEach((e, t) => {\n hr[e] = function(a) {\n return typeof a === e || \"a\" + (t < 1 ? \"n \" : \" \") + e;\n };\n});\nconst Ti = {};\nhr.transitional = function(e, t, a) {\n function n(s, r) {\n return \"[Axios v\" + Ml + \"] Transitional option '\" + s + \"'\" + r + (a ? \". \" + a : \"\");\n }\n return (s, r, o) => {\n if (e === !1)\n throw new be(n(r, \" has been removed\" + (t ? \" in \" + t : \"\")), be.ERR_DEPRECATED);\n return t && !Ti[r] && (Ti[r] = !0, console.warn(n(r, \" has been deprecated since v\" + t + \" and will be removed in the near future\"))), e ? e(s, r, o) : !0;\n };\n};\nfunction md(e, t, a) {\n if (typeof e != \"object\")\n throw new be(\"options must be an object\", be.ERR_BAD_OPTION_VALUE);\n const n = Object.keys(e);\n let s = n.length;\n for (; s-- > 0; ) {\n const r = n[s], o = t[r];\n if (o) {\n const i = e[r], u = i === void 0 || o(i, r, e);\n if (u !== !0)\n throw new be(\"option \" + r + \" must be \" + u, be.ERR_BAD_OPTION_VALUE);\n continue;\n }\n if (a !== !0)\n throw new be(\"Unknown option \" + r, be.ERR_BAD_OPTION);\n }\n}\nconst To = { assertOptions: md, validators: hr }, Ft = To.validators;\nlet Rn = class {\n constructor(e) {\n this.defaults = e, this.interceptors = { request: new xi(), response: new xi() };\n }\n request(e, t) {\n typeof e == \"string\" ? (t = t || {}, t.url = e) : t = e || {}, t = xa(this.defaults, t);\n const { transitional: a, paramsSerializer: n, headers: s } = t;\n a !== void 0 && To.assertOptions(a, { silentJSONParsing: Ft.transitional(Ft.boolean), forcedJSONParsing: Ft.transitional(Ft.boolean), clarifyTimeoutError: Ft.transitional(Ft.boolean) }, !1), n != null && (G.isFunction(n) ? t.paramsSerializer = { serialize: n } : To.assertOptions(n, { encode: Ft.function, serialize: Ft.function }, !0)), t.method = (t.method || this.defaults.method || \"get\").toLowerCase();\n let r;\n r = s && G.merge(s.common, s[t.method]), r && G.forEach([\"delete\", \"get\", \"head\", \"post\", \"put\", \"patch\", \"common\"], (p) => {\n delete s[p];\n }), t.headers = xt.concat(r, s);\n const o = [];\n let i = !0;\n this.interceptors.request.forEach(function(p) {\n typeof p.runWhen == \"function\" && p.runWhen(t) === !1 || (i = i && p.synchronous, o.unshift(p.fulfilled, p.rejected));\n });\n const u = [];\n this.interceptors.response.forEach(function(p) {\n u.push(p.fulfilled, p.rejected);\n });\n let l, c = 0, d;\n if (!i) {\n const p = [Pi.bind(this), void 0];\n for (p.unshift.apply(p, o), p.push.apply(p, u), d = p.length, l = Promise.resolve(t); c < d; )\n l = l.then(p[c++], p[c++]);\n return l;\n }\n d = o.length;\n let m = t;\n for (c = 0; c < d; ) {\n const p = o[c++], h = o[c++];\n try {\n m = p(m);\n } catch (y) {\n h.call(this, y);\n break;\n }\n }\n try {\n l = Pi.call(this, m);\n } catch (p) {\n return Promise.reject(p);\n }\n for (c = 0, d = u.length; c < d; )\n l = l.then(u[c++], u[c++]);\n return l;\n }\n getUri(e) {\n e = xa(this.defaults, e);\n const t = Ul(e.baseURL, e.url);\n return Ol(t, e.params, e.paramsSerializer);\n }\n};\nG.forEach([\"delete\", \"get\", \"head\", \"options\"], function(e) {\n Rn.prototype[e] = function(t, a) {\n return this.request(xa(a || {}, { method: e, url: t, data: (a || {}).data }));\n };\n}), G.forEach([\"post\", \"put\", \"patch\"], function(e) {\n function t(a) {\n return function(n, s, r) {\n return this.request(xa(r || {}, { method: e, headers: a ? { \"Content-Type\": \"multipart/form-data\" } : {}, url: n, data: s }));\n };\n }\n Rn.prototype[e] = t(), Rn.prototype[e + \"Form\"] = t(!0);\n});\nconst $n = Rn;\nlet dd = class Rl {\n constructor(t) {\n if (typeof t != \"function\")\n throw new TypeError(\"executor must be a function.\");\n let a;\n this.promise = new Promise(function(s) {\n a = s;\n });\n const n = this;\n this.promise.then((s) => {\n if (!n._listeners)\n return;\n let r = n._listeners.length;\n for (; r-- > 0; )\n n._listeners[r](s);\n n._listeners = null;\n }), this.promise.then = (s) => {\n let r;\n const o = new Promise((i) => {\n n.subscribe(i), r = i;\n }).then(s);\n return o.cancel = function() {\n n.unsubscribe(r);\n }, o;\n }, t(function(s, r, o) {\n n.reason || (n.reason = new sn(s, r, o), a(n.reason));\n });\n }\n throwIfRequested() {\n if (this.reason)\n throw this.reason;\n }\n subscribe(t) {\n if (this.reason) {\n t(this.reason);\n return;\n }\n this._listeners ? this._listeners.push(t) : this._listeners = [t];\n }\n unsubscribe(t) {\n if (!this._listeners)\n return;\n const a = this._listeners.indexOf(t);\n a !== -1 && this._listeners.splice(a, 1);\n }\n static source() {\n let t;\n return { token: new Rl(function(a) {\n t = a;\n }), cancel: t };\n }\n};\nconst pd = dd;\nfunction gd(e) {\n return function(t) {\n return e.apply(null, t);\n };\n}\nfunction hd(e) {\n return G.isObject(e) && e.isAxiosError === !0;\n}\nconst Fo = { Continue: 100, SwitchingProtocols: 101, Processing: 102, EarlyHints: 103, Ok: 200, Created: 201, Accepted: 202, NonAuthoritativeInformation: 203, NoContent: 204, ResetContent: 205, PartialContent: 206, MultiStatus: 207, AlreadyReported: 208, ImUsed: 226, MultipleChoices: 300, MovedPermanently: 301, Found: 302, SeeOther: 303, NotModified: 304, UseProxy: 305, Unused: 306, TemporaryRedirect: 307, PermanentRedirect: 308, BadRequest: 400, Unauthorized: 401, PaymentRequired: 402, Forbidden: 403, NotFound: 404, MethodNotAllowed: 405, NotAcceptable: 406, ProxyAuthenticationRequired: 407, RequestTimeout: 408, Conflict: 409, Gone: 410, LengthRequired: 411, PreconditionFailed: 412, PayloadTooLarge: 413, UriTooLong: 414, UnsupportedMediaType: 415, RangeNotSatisfiable: 416, ExpectationFailed: 417, ImATeapot: 418, MisdirectedRequest: 421, UnprocessableEntity: 422, Locked: 423, FailedDependency: 424, TooEarly: 425, UpgradeRequired: 426, PreconditionRequired: 428, TooManyRequests: 429, RequestHeaderFieldsTooLarge: 431, UnavailableForLegalReasons: 451, InternalServerError: 500, NotImplemented: 501, BadGateway: 502, ServiceUnavailable: 503, GatewayTimeout: 504, HttpVersionNotSupported: 505, VariantAlsoNegotiates: 506, InsufficientStorage: 507, LoopDetected: 508, NotExtended: 510, NetworkAuthenticationRequired: 511 };\nObject.entries(Fo).forEach(([e, t]) => {\n Fo[t] = e;\n});\nconst fd = Fo;\nfunction $l(e) {\n const t = new $n(e), a = El($n.prototype.request, t);\n return G.extend(a, $n.prototype, t, { allOwnKeys: !0 }), G.extend(a, t, null, { allOwnKeys: !0 }), a.create = function(n) {\n return $l(xa(e, n));\n }, a;\n}\nconst Ie = $l(gr);\nIe.Axios = $n, Ie.CanceledError = sn, Ie.CancelToken = pd, Ie.isCancel = zl, Ie.VERSION = Ml, Ie.toFormData = As, Ie.AxiosError = be, Ie.Cancel = Ie.CanceledError, Ie.all = function(e) {\n return Promise.all(e);\n}, Ie.spread = gd, Ie.isAxiosError = hd, Ie.mergeConfig = xa, Ie.AxiosHeaders = xt, Ie.formToJSON = (e) => Ll(G.isHTMLForm(e) ? new FormData(e) : e), Ie.HttpStatusCode = fd, Ie.default = Ie;\nconst vd = Ie, { Axios: o3, AxiosError: r3, CanceledError: Qs, isCancel: i3, CancelToken: u3, VERSION: l3, all: c3, Cancel: m3, isAxiosError: d3, spread: p3, toFormData: g3, AxiosHeaders: h3, HttpStatusCode: f3, formToJSON: v3, mergeConfig: C3 } = vd, Cd = Jm(1), An = new FileReader(), Fi = async function(e, t, a, n = () => {\n}) {\n let s;\n return t instanceof Blob ? s = t : s = await t(), await Wn.request({ method: \"PUT\", url: e, data: s, signal: a, onUploadProgress: n });\n}, Di = function(e, t, a) {\n return e.type ? Cd(() => new Promise((n, s) => {\n An.onload = () => {\n An.result !== null && n(new Blob([An.result], { type: \"application/octet-stream\" })), s(new Error(\"Error while reading the file\"));\n }, An.readAsArrayBuffer(e.slice(t, t + a));\n })) : Promise.reject(new Error(\"Unknown file type\"));\n}, yd = async function() {\n const e = xl(`dav/uploads/${mr()?.uid}`), t = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, a = `${e}/${t}`;\n return await Wn.request({ method: \"MKCOL\", url: a }), a;\n}, Ga = function() {\n const e = window.OC?.appConfig?.files?.max_chunk_size;\n return e <= 0 ? 0 : Number(e) ? Number(e) : 10 * 1024 * 1024;\n};\nvar pt = ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(pt || {});\nlet Ad = class {\n _source;\n _file;\n _isChunked;\n _chunks;\n _size;\n _uploaded = 0;\n _startTime = 0;\n _status = 0;\n _controller;\n _response = null;\n constructor(e, t = !1, a, n) {\n const s = Ga() > 0 ? Math.ceil(a / Ga()) : 1;\n this._source = e, this._isChunked = t && Ga() > 0 && s > 1, this._chunks = this._isChunked ? s : 1, this._size = a, this._file = n, this._controller = new AbortController();\n }\n get source() {\n return this._source;\n }\n get file() {\n return this._file;\n }\n get isChunked() {\n return this._isChunked;\n }\n get chunks() {\n return this._chunks;\n }\n get size() {\n return this._size;\n }\n get startTime() {\n return this._startTime;\n }\n set response(e) {\n this._response = e;\n }\n get response() {\n return this._response;\n }\n get uploaded() {\n return this._uploaded;\n }\n set uploaded(e) {\n if (e >= this._size) {\n this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n return;\n }\n this._status = 1, this._uploaded = e, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n }\n get status() {\n return this._status;\n }\n set status(e) {\n this._status = e;\n }\n get signal() {\n return this._controller.signal;\n }\n cancel() {\n this._controller.abort(), this._status = 4;\n }\n};\nconst wd = (e) => e === null ? hi().setApp(\"uploader\").build() : hi().setApp(\"uploader\").setUid(e.uid).build(), lt = wd(mr());\nvar Il = ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(Il || {});\nclass Bi {\n _destinationFolder;\n _isPublic;\n _uploadQueue = [];\n _jobQueue = new Km({ concurrency: 3 });\n _queueSize = 0;\n _queueProgress = 0;\n _queueStatus = 0;\n _notifiers = [];\n constructor(t = !1, a) {\n if (this._isPublic = t, !a) {\n const n = mr()?.uid, s = xl(`dav/files/${n}`);\n if (!n)\n throw new Error(\"User is not logged in\");\n a = new kl({ id: 0, owner: n, permissions: Vm.ALL, root: `/files/${n}`, source: s });\n }\n this.destination = a, lt.debug(\"Upload workspace initialized\", { destination: this.destination, root: this.root, isPublic: t, maxChunksSize: Ga() });\n }\n get destination() {\n return this._destinationFolder;\n }\n set destination(t) {\n if (!t)\n throw new Error(\"Invalid destination folder\");\n this._destinationFolder = t;\n }\n get root() {\n return this._destinationFolder.source;\n }\n get queue() {\n return this._uploadQueue;\n }\n reset() {\n this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n }\n pause() {\n this._jobQueue.pause(), this._queueStatus = 2;\n }\n start() {\n this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n }\n get info() {\n return { size: this._queueSize, progress: this._queueProgress, status: this._queueStatus };\n }\n updateStats() {\n const t = this._uploadQueue.map((n) => n.size).reduce((n, s) => n + s, 0), a = this._uploadQueue.map((n) => n.uploaded).reduce((n, s) => n + s, 0);\n this._queueSize = t, this._queueProgress = a, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n }\n addNotifier(t) {\n this._notifiers.push(t);\n }\n upload(t, a) {\n const n = `${this.root}/${t.replace(/^\\//, \"\")}`;\n lt.debug(`Uploading ${a.name} to ${n}`);\n const s = Ga(), r = s === 0 || a.size < s || this._isPublic, o = new Ad(n, !r, a.size, a);\n return this._uploadQueue.push(o), this.updateStats(), new Zm(async (i, u, l) => {\n if (l(o.cancel), r) {\n lt.debug(\"Initializing regular upload\", { file: a, upload: o });\n const c = await Di(a, 0, o.size), d = async () => {\n try {\n o.response = await Fi(n, c, o.signal, () => this.updateStats()), o.uploaded = o.size, this.updateStats(), lt.debug(`Successfully uploaded ${a.name}`, { file: a, upload: o }), i(o);\n } catch (m) {\n if (m instanceof Qs) {\n o.status = pt.FAILED, u(\"Upload has been cancelled\");\n return;\n }\n o.status = pt.FAILED, lt.error(`Failed uploading ${a.name}`, { error: m, file: a, upload: o }), u(\"Failed uploading the file\");\n }\n this._notifiers.forEach((m) => {\n try {\n m(o);\n } catch {\n }\n });\n };\n this._jobQueue.add(d), this.updateStats();\n } else {\n lt.debug(\"Initializing chunked upload\", { file: a, upload: o });\n const c = await yd(), d = [];\n for (let m = 0; m < o.chunks; m++) {\n const p = m * s, h = Math.min(p + s, o.size), y = () => Di(a, p, s), P = () => Fi(`${c}/${h}`, y, o.signal, () => this.updateStats()).then(() => {\n o.uploaded = o.uploaded + s;\n }).catch((v) => {\n throw v instanceof Qs || (lt.error(`Chunk ${p} - ${h} uploading failed`), o.status = pt.FAILED), v;\n });\n d.push(this._jobQueue.add(P));\n }\n try {\n await Promise.all(d), this.updateStats(), o.response = await Wn.request({ method: \"MOVE\", url: `${c}/.file`, headers: { Destination: n } }), this.updateStats(), o.status = pt.FINISHED, lt.debug(`Successfully uploaded ${a.name}`, { file: a, upload: o }), i(o);\n } catch (m) {\n m instanceof Qs ? (o.status = pt.FAILED, u(\"Upload has been cancelled\")) : (o.status = pt.FAILED, u(\"Failed assembling the chunks together\")), Wn.request({ method: \"DELETE\", url: `${c}` });\n }\n this._notifiers.forEach((m) => {\n try {\n m(o);\n } catch {\n }\n });\n }\n return this._jobQueue.onIdle().then(() => this.reset()), o;\n });\n }\n}\nvar Ke = Object.freeze({}), ve = Array.isArray;\nfunction pe(e) {\n return e == null;\n}\nfunction O(e) {\n return e != null;\n}\nfunction _e(e) {\n return e === !0;\n}\nfunction bd(e) {\n return e === !1;\n}\nfunction on(e) {\n return typeof e == \"string\" || typeof e == \"number\" || typeof e == \"symbol\" || typeof e == \"boolean\";\n}\nfunction Pe(e) {\n return typeof e == \"function\";\n}\nfunction Je(e) {\n return e !== null && typeof e == \"object\";\n}\nvar fr = Object.prototype.toString;\nfunction Qe(e) {\n return fr.call(e) === \"[object Object]\";\n}\nfunction xd(e) {\n return fr.call(e) === \"[object RegExp]\";\n}\nfunction Gl(e) {\n var t = parseFloat(String(e));\n return t >= 0 && Math.floor(t) === t && isFinite(e);\n}\nfunction Do(e) {\n return O(e) && typeof e.then == \"function\" && typeof e.catch == \"function\";\n}\nfunction kd(e) {\n return e == null ? \"\" : Array.isArray(e) || Qe(e) && e.toString === fr ? JSON.stringify(e, null, 2) : String(e);\n}\nfunction Ja(e) {\n var t = parseFloat(e);\n return isNaN(t) ? e : t;\n}\nfunction mt(e, t) {\n for (var a = /* @__PURE__ */ Object.create(null), n = e.split(\",\"), s = 0; s < n.length; s++)\n a[n[s]] = !0;\n return t ? function(r) {\n return a[r.toLowerCase()];\n } : function(r) {\n return a[r];\n };\n}\nmt(\"slot,component\", !0);\nvar Ed = mt(\"key,ref,slot,slot-scope,is\");\nfunction Mt(e, t) {\n var a = e.length;\n if (a) {\n if (t === e[a - 1]) {\n e.length = a - 1;\n return;\n }\n var n = e.indexOf(t);\n if (n > -1)\n return e.splice(n, 1);\n }\n}\nvar Pd = Object.prototype.hasOwnProperty;\nfunction Xe(e, t) {\n return Pd.call(e, t);\n}\nfunction ra(e) {\n var t = /* @__PURE__ */ Object.create(null);\n return function(a) {\n var n = t[a];\n return n || (t[a] = e(a));\n };\n}\nvar Sd = /-(\\w)/g, ea = ra(function(e) {\n return e.replace(Sd, function(t, a) {\n return a ? a.toUpperCase() : \"\";\n });\n}), Td = ra(function(e) {\n return e.charAt(0).toUpperCase() + e.slice(1);\n}), Fd = /\\B([A-Z])/g, rn = ra(function(e) {\n return e.replace(Fd, \"-$1\").toLowerCase();\n});\nfunction Dd(e, t) {\n function a(n) {\n var s = arguments.length;\n return s ? s > 1 ? e.apply(t, arguments) : e.call(t, n) : e.call(t);\n }\n return a._length = e.length, a;\n}\nfunction Bd(e, t) {\n return e.bind(t);\n}\nvar Hl = Function.prototype.bind ? Bd : Dd;\nfunction Bo(e, t) {\n t = t || 0;\n for (var a = e.length - t, n = new Array(a); a--; )\n n[a] = e[a + t];\n return n;\n}\nfunction Fe(e, t) {\n for (var a in t)\n e[a] = t[a];\n return e;\n}\nfunction ql(e) {\n for (var t = {}, a = 0; a < e.length; a++)\n e[a] && Fe(t, e[a]);\n return t;\n}\nfunction De(e, t, a) {\n}\nvar wn = function(e, t, a) {\n return !1;\n}, Vl = function(e) {\n return e;\n};\nfunction ta(e, t) {\n if (e === t)\n return !0;\n var a = Je(e), n = Je(t);\n if (a && n)\n try {\n var s = Array.isArray(e), r = Array.isArray(t);\n if (s && r)\n return e.length === t.length && e.every(function(u, l) {\n return ta(u, t[l]);\n });\n if (e instanceof Date && t instanceof Date)\n return e.getTime() === t.getTime();\n if (!s && !r) {\n var o = Object.keys(e), i = Object.keys(t);\n return o.length === i.length && o.every(function(u) {\n return ta(e[u], t[u]);\n });\n } else\n return !1;\n } catch {\n return !1;\n }\n else\n return !a && !n ? String(e) === String(t) : !1;\n}\nfunction Wl(e, t) {\n for (var a = 0; a < e.length; a++)\n if (ta(e[a], t))\n return a;\n return -1;\n}\nfunction Kn(e) {\n var t = !1;\n return function() {\n t || (t = !0, e.apply(this, arguments));\n };\n}\nfunction _o(e, t) {\n return e === t ? e === 0 && 1 / e !== 1 / t : e === e || t === t;\n}\nvar _i = \"data-server-rendered\", ws = [\"component\", \"directive\", \"filter\"], Zl = [\"beforeCreate\", \"created\", \"beforeMount\", \"mounted\", \"beforeUpdate\", \"updated\", \"beforeDestroy\", \"destroyed\", \"activated\", \"deactivated\", \"errorCaptured\", \"serverPrefetch\", \"renderTracked\", \"renderTriggered\"], rt = { optionMergeStrategies: /* @__PURE__ */ Object.create(null), silent: !1, productionTip: !1, devtools: !1, performance: !1, errorHandler: null, warnHandler: null, ignoredElements: [], keyCodes: /* @__PURE__ */ Object.create(null), isReservedTag: wn, isReservedAttr: wn, isUnknownElement: wn, getTagNamespace: De, parsePlatformTagName: Vl, mustUseProp: wn, async: !0, _lifecycleHooks: Zl }, _d = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\nfunction Kl(e) {\n var t = (e + \"\").charCodeAt(0);\n return t === 36 || t === 95;\n}\nfunction Ue(e, t, a, n) {\n Object.defineProperty(e, t, { value: a, enumerable: !!n, writable: !0, configurable: !0 });\n}\nvar Nd = new RegExp(\"[^\".concat(_d.source, \".$_\\\\d]\"));\nfunction Od(e) {\n if (!Nd.test(e)) {\n var t = e.split(\".\");\n return function(a) {\n for (var n = 0; n < t.length; n++) {\n if (!a)\n return;\n a = a[t[n]];\n }\n return a;\n };\n }\n}\nvar jd = \"__proto__\" in {}, tt = typeof window < \"u\", it = tt && window.navigator.userAgent.toLowerCase(), Fa = it && /msie|trident/.test(it), Da = it && it.indexOf(\"msie 9.0\") > 0, Jl = it && it.indexOf(\"edge/\") > 0;\nit && it.indexOf(\"android\") > 0;\nvar Ld = it && /iphone|ipad|ipod|ios/.test(it), Ni = it && it.match(/firefox\\/(\\d+)/), No = {}.watch, Yl = !1;\nif (tt)\n try {\n var Oi = {};\n Object.defineProperty(Oi, \"passive\", { get: function() {\n Yl = !0;\n } }), window.addEventListener(\"test-passive\", null, Oi);\n } catch {\n }\nvar bn, Rt = function() {\n return bn === void 0 && (!tt && typeof global < \"u\" ? bn = global.process && global.process.env.VUE_ENV === \"server\" : bn = !1), bn;\n}, Jn = tt && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\nfunction wa(e) {\n return typeof e == \"function\" && /native code/.test(e.toString());\n}\nvar un = typeof Symbol < \"u\" && wa(Symbol) && typeof Reflect < \"u\" && wa(Reflect.ownKeys), Ya;\ntypeof Set < \"u\" && wa(Set) ? Ya = Set : Ya = function() {\n function e() {\n this.set = /* @__PURE__ */ Object.create(null);\n }\n return e.prototype.has = function(t) {\n return this.set[t] === !0;\n }, e.prototype.add = function(t) {\n this.set[t] = !0;\n }, e.prototype.clear = function() {\n this.set = /* @__PURE__ */ Object.create(null);\n }, e;\n}();\nvar Me = null;\nfunction zd() {\n return Me && { proxy: Me };\n}\nfunction Lt(e) {\n e === void 0 && (e = null), e || Me && Me._scope.off(), Me = e, e && e._scope.on();\n}\nvar st = function() {\n function e(t, a, n, s, r, o, i, u) {\n this.tag = t, this.data = a, this.children = n, this.text = s, this.elm = r, this.ns = void 0, this.context = o, this.fnContext = void 0, this.fnOptions = void 0, this.fnScopeId = void 0, this.key = a && a.key, this.componentOptions = i, 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 = u, this.asyncMeta = void 0, this.isAsyncPlaceholder = !1;\n }\n return Object.defineProperty(e.prototype, \"child\", { get: function() {\n return this.componentInstance;\n }, enumerable: !1, configurable: !0 }), e;\n}(), ka = function(e) {\n e === void 0 && (e = \"\");\n var t = new st();\n return t.text = e, t.isComment = !0, t;\n};\nfunction Ca(e) {\n return new st(void 0, void 0, void 0, String(e));\n}\nfunction Oo(e) {\n var t = new st(e.tag, e.data, e.children && e.children.slice(), e.text, e.elm, e.context, e.componentOptions, e.asyncFactory);\n 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.asyncMeta = e.asyncMeta, t.isCloned = !0, t;\n}\nvar Ud = 0, In = [], Md = function() {\n for (var e = 0; e < In.length; e++) {\n var t = In[e];\n t.subs = t.subs.filter(function(a) {\n return a;\n }), t._pending = !1;\n }\n In.length = 0;\n}, ft = function() {\n function e() {\n this._pending = !1, this.id = Ud++, this.subs = [];\n }\n return e.prototype.addSub = function(t) {\n this.subs.push(t);\n }, e.prototype.removeSub = function(t) {\n this.subs[this.subs.indexOf(t)] = null, this._pending || (this._pending = !0, In.push(this));\n }, e.prototype.depend = function(t) {\n e.target && e.target.addDep(this);\n }, e.prototype.notify = function(t) {\n for (var a = this.subs.filter(function(o) {\n return o;\n }), n = 0, s = a.length; n < s; n++) {\n var r = a[n];\n r.update();\n }\n }, e;\n}();\nft.target = null;\nvar Gn = [];\nfunction Ba(e) {\n Gn.push(e), ft.target = e;\n}\nfunction _a() {\n Gn.pop(), ft.target = Gn[Gn.length - 1];\n}\nvar Xl = Array.prototype, Yn = Object.create(Xl), Rd = [\"push\", \"pop\", \"shift\", \"unshift\", \"splice\", \"sort\", \"reverse\"];\nRd.forEach(function(e) {\n var t = Xl[e];\n Ue(Yn, e, function() {\n for (var a = [], n = 0; n < arguments.length; n++)\n a[n] = arguments[n];\n var s = t.apply(this, a), r = this.__ob__, o;\n switch (e) {\n case \"push\":\n case \"unshift\":\n o = a;\n break;\n case \"splice\":\n o = a.slice(2);\n break;\n }\n return o && r.observeArray(o), r.dep.notify(), s;\n });\n});\nvar ji = Object.getOwnPropertyNames(Yn), Ql = {}, vr = !0;\nfunction zt(e) {\n vr = e;\n}\nvar $d = { notify: De, depend: De, addSub: De, removeSub: De }, Li = function() {\n function e(t, a, n) {\n if (a === void 0 && (a = !1), n === void 0 && (n = !1), this.value = t, this.shallow = a, this.mock = n, this.dep = n ? $d : new ft(), this.vmCount = 0, Ue(t, \"__ob__\", this), ve(t)) {\n if (!n)\n if (jd)\n t.__proto__ = Yn;\n else\n for (var s = 0, r = ji.length; s < r; s++) {\n var o = ji[s];\n Ue(t, o, Yn[o]);\n }\n a || this.observeArray(t);\n } else\n for (var i = Object.keys(t), s = 0; s < i.length; s++) {\n var o = i[s];\n Ut(t, o, Ql, void 0, a, n);\n }\n }\n return e.prototype.observeArray = function(t) {\n for (var a = 0, n = t.length; a < n; a++)\n kt(t[a], !1, this.mock);\n }, e;\n}();\nfunction kt(e, t, a) {\n if (e && Xe(e, \"__ob__\") && e.__ob__ instanceof Li)\n return e.__ob__;\n if (vr && (a || !Rt()) && (ve(e) || Qe(e)) && Object.isExtensible(e) && !e.__v_skip && !We(e) && !(e instanceof st))\n return new Li(e, t, a);\n}\nfunction Ut(e, t, a, n, s, r) {\n var o = new ft(), i = Object.getOwnPropertyDescriptor(e, t);\n if (!(i && i.configurable === !1)) {\n var u = i && i.get, l = i && i.set;\n (!u || l) && (a === Ql || arguments.length === 2) && (a = e[t]);\n var c = !s && kt(a, !1, r);\n return Object.defineProperty(e, t, { enumerable: !0, configurable: !0, get: function() {\n var d = u ? u.call(e) : a;\n return ft.target && (o.depend(), c && (c.dep.depend(), ve(d) && ec(d))), We(d) && !s ? d.value : d;\n }, set: function(d) {\n var m = u ? u.call(e) : a;\n if (_o(m, d)) {\n if (l)\n l.call(e, d);\n else {\n if (u)\n return;\n if (!s && We(m) && !We(d)) {\n m.value = d;\n return;\n } else\n a = d;\n }\n c = !s && kt(d, !1, r), o.notify();\n }\n } }), o;\n }\n}\nfunction bs(e, t, a) {\n if (!ia(e)) {\n var n = e.__ob__;\n return ve(e) && Gl(t) ? (e.length = Math.max(e.length, t), e.splice(t, 1, a), n && !n.shallow && n.mock && kt(a, !1, !0), a) : t in e && !(t in Object.prototype) ? (e[t] = a, a) : e._isVue || n && n.vmCount ? a : n ? (Ut(n.value, t, a, void 0, n.shallow, n.mock), n.dep.notify(), a) : (e[t] = a, a);\n }\n}\nfunction Cr(e, t) {\n if (ve(e) && Gl(t)) {\n e.splice(t, 1);\n return;\n }\n var a = e.__ob__;\n e._isVue || a && a.vmCount || ia(e) || Xe(e, t) && (delete e[t], a && a.dep.notify());\n}\nfunction ec(e) {\n for (var t = void 0, a = 0, n = e.length; a < n; a++)\n t = e[a], t && t.__ob__ && t.__ob__.dep.depend(), ve(t) && ec(t);\n}\nfunction Id(e) {\n return tc(e, !1), e;\n}\nfunction yr(e) {\n return tc(e, !0), Ue(e, \"__v_isShallow\", !0), e;\n}\nfunction tc(e, t) {\n ia(e) || kt(e, t, Rt());\n}\nfunction Yt(e) {\n return ia(e) ? Yt(e.__v_raw) : !!(e && e.__ob__);\n}\nfunction Xn(e) {\n return !!(e && e.__v_isShallow);\n}\nfunction ia(e) {\n return !!(e && e.__v_isReadonly);\n}\nfunction Gd(e) {\n return Yt(e) || ia(e);\n}\nfunction ac(e) {\n var t = e && e.__v_raw;\n return t ? ac(t) : e;\n}\nfunction Hd(e) {\n return Object.isExtensible(e) && Ue(e, \"__v_skip\", !0), e;\n}\nvar ln = \"__v_isRef\";\nfunction We(e) {\n return !!(e && e.__v_isRef === !0);\n}\nfunction qd(e) {\n return nc(e, !1);\n}\nfunction Vd(e) {\n return nc(e, !0);\n}\nfunction nc(e, t) {\n if (We(e))\n return e;\n var a = {};\n return Ue(a, ln, !0), Ue(a, \"__v_isShallow\", t), Ue(a, \"dep\", Ut(a, \"value\", e, null, t, Rt())), a;\n}\nfunction Wd(e) {\n e.dep && e.dep.notify();\n}\nfunction Zd(e) {\n return We(e) ? e.value : e;\n}\nfunction Kd(e) {\n if (Yt(e))\n return e;\n for (var t = {}, a = Object.keys(e), n = 0; n < a.length; n++)\n Qn(t, e, a[n]);\n return t;\n}\nfunction Qn(e, t, a) {\n Object.defineProperty(e, a, { enumerable: !0, configurable: !0, get: function() {\n var n = t[a];\n if (We(n))\n return n.value;\n var s = n && n.__ob__;\n return s && s.dep.depend(), n;\n }, set: function(n) {\n var s = t[a];\n We(s) && !We(n) ? s.value = n : t[a] = n;\n } });\n}\nfunction Jd(e) {\n var t = new ft(), a = e(function() {\n t.depend();\n }, function() {\n t.notify();\n }), n = a.get, s = a.set, r = { get value() {\n return n();\n }, set value(o) {\n s(o);\n } };\n return Ue(r, ln, !0), r;\n}\nfunction Yd(e) {\n var t = ve(e) ? new Array(e.length) : {};\n for (var a in e)\n t[a] = sc(e, a);\n return t;\n}\nfunction sc(e, t, a) {\n var n = e[t];\n if (We(n))\n return n;\n var s = { get value() {\n var r = e[t];\n return r === void 0 ? a : r;\n }, set value(r) {\n e[t] = r;\n } };\n return Ue(s, ln, !0), s;\n}\nvar Xd = \"__v_rawToReadonly\", Qd = \"__v_rawToShallowReadonly\";\nfunction oc(e) {\n return rc(e, !1);\n}\nfunction rc(e, t) {\n if (!Qe(e) || ia(e))\n return e;\n var a = t ? Qd : Xd, n = e[a];\n if (n)\n return n;\n var s = Object.create(Object.getPrototypeOf(e));\n Ue(e, a, s), Ue(s, \"__v_isReadonly\", !0), Ue(s, \"__v_raw\", e), We(e) && Ue(s, ln, !0), (t || Xn(e)) && Ue(s, \"__v_isShallow\", !0);\n for (var r = Object.keys(e), o = 0; o < r.length; o++)\n ep(s, e, r[o], t);\n return s;\n}\nfunction ep(e, t, a, n) {\n Object.defineProperty(e, a, { enumerable: !0, configurable: !0, get: function() {\n var s = t[a];\n return n || !Qe(s) ? s : oc(s);\n }, set: function() {\n } });\n}\nfunction tp(e) {\n return rc(e, !0);\n}\nfunction ap(e, t) {\n var a, n, s = Pe(e);\n s ? (a = e, n = De) : (a = e.get, n = e.set);\n var r = Rt() ? null : new cn(Me, a, De, { lazy: !0 }), o = { effect: r, get value() {\n return r ? (r.dirty && r.evaluate(), ft.target && r.depend(), r.value) : a();\n }, set value(i) {\n n(i);\n } };\n return Ue(o, ln, !0), Ue(o, \"__v_isReadonly\", s), o;\n}\nvar xs = \"watcher\", zi = \"\".concat(xs, \" callback\"), Ui = \"\".concat(xs, \" getter\"), np = \"\".concat(xs, \" cleanup\");\nfunction sp(e, t) {\n return ks(e, null, t);\n}\nfunction ic(e, t) {\n return ks(e, null, { flush: \"post\" });\n}\nfunction op(e, t) {\n return ks(e, null, { flush: \"sync\" });\n}\nvar Mi = {};\nfunction rp(e, t, a) {\n return ks(e, t, a);\n}\nfunction ks(e, t, a) {\n var n = a === void 0 ? Ke : a, s = n.immediate, r = n.deep, o = n.flush, i = o === void 0 ? \"pre\" : o;\n n.onTrack, n.onTrigger;\n var u = Me, l = function(g, b, x) {\n return x === void 0 && (x = null), Et(g, null, x, u, b);\n }, c, d = !1, m = !1;\n if (We(e) ? (c = function() {\n return e.value;\n }, d = Xn(e)) : Yt(e) ? (c = function() {\n return e.__ob__.dep.depend(), e;\n }, r = !0) : ve(e) ? (m = !0, d = e.some(function(g) {\n return Yt(g) || Xn(g);\n }), c = function() {\n return e.map(function(g) {\n if (We(g))\n return g.value;\n if (Yt(g))\n return Ea(g);\n if (Pe(g))\n return l(g, Ui);\n });\n }) : Pe(e) ? t ? c = function() {\n return l(e, Ui);\n } : c = function() {\n if (!(u && u._isDestroyed))\n return h && h(), l(e, xs, [y]);\n } : c = De, t && r) {\n var p = c;\n c = function() {\n return Ea(p());\n };\n }\n var h, y = function(g) {\n h = P.onStop = function() {\n l(g, np);\n };\n };\n if (Rt())\n return y = De, t ? s && l(t, zi, [c(), m ? [] : void 0, y]) : c(), De;\n var P = new cn(Me, c, De, { lazy: !0 });\n P.noRecurse = !t;\n var v = m ? [] : Mi;\n return P.run = function() {\n if (P.active)\n if (t) {\n var g = P.get();\n (r || d || (m ? g.some(function(b, x) {\n return _o(b, v[x]);\n }) : _o(g, v))) && (h && h(), l(t, zi, [g, v === Mi ? void 0 : v, y]), v = g);\n } else\n P.get();\n }, i === \"sync\" ? P.update = P.run : i === \"post\" ? (P.post = !0, P.update = function() {\n return Io(P);\n }) : P.update = function() {\n if (u && u === Me && !u._isMounted) {\n var g = u._preWatchers || (u._preWatchers = []);\n g.indexOf(P) < 0 && g.push(P);\n } else\n Io(P);\n }, t ? s ? P.run() : v = P.get() : i === \"post\" && u ? u.$once(\"hook:mounted\", function() {\n return P.get();\n }) : P.get(), function() {\n P.teardown();\n };\n}\nvar Ze, Ar = function() {\n function e(t) {\n t === void 0 && (t = !1), this.detached = t, this.active = !0, this.effects = [], this.cleanups = [], this.parent = Ze, !t && Ze && (this.index = (Ze.scopes || (Ze.scopes = [])).push(this) - 1);\n }\n return e.prototype.run = function(t) {\n if (this.active) {\n var a = Ze;\n try {\n return Ze = this, t();\n } finally {\n Ze = a;\n }\n }\n }, e.prototype.on = function() {\n Ze = this;\n }, e.prototype.off = function() {\n Ze = this.parent;\n }, e.prototype.stop = function(t) {\n if (this.active) {\n var a = void 0, n = void 0;\n for (a = 0, n = this.effects.length; a < n; a++)\n this.effects[a].teardown();\n for (a = 0, n = this.cleanups.length; a < n; a++)\n this.cleanups[a]();\n if (this.scopes)\n for (a = 0, n = this.scopes.length; a < n; a++)\n this.scopes[a].stop(!0);\n if (!this.detached && this.parent && !t) {\n var s = this.parent.scopes.pop();\n s && s !== this && (this.parent.scopes[this.index] = s, s.index = this.index);\n }\n this.parent = void 0, this.active = !1;\n }\n }, e;\n}();\nfunction ip(e) {\n return new Ar(e);\n}\nfunction up(e, t) {\n t === void 0 && (t = Ze), t && t.active && t.effects.push(e);\n}\nfunction lp() {\n return Ze;\n}\nfunction cp(e) {\n Ze && Ze.cleanups.push(e);\n}\nfunction mp(e, t) {\n Me && (uc(Me)[e] = t);\n}\nfunction uc(e) {\n var t = e._provided, a = e.$parent && e.$parent._provided;\n return a === t ? e._provided = Object.create(a) : t;\n}\nfunction dp(e, t, a) {\n a === void 0 && (a = !1);\n var n = Me;\n if (n) {\n var s = n.$parent && n.$parent._provided;\n if (s && e in s)\n return s[e];\n if (arguments.length > 1)\n return a && Pe(t) ? t.call(n) : t;\n }\n}\nvar Ri = ra(function(e) {\n var t = e.charAt(0) === \"&\";\n e = t ? e.slice(1) : e;\n var a = e.charAt(0) === \"~\";\n e = a ? e.slice(1) : e;\n var n = e.charAt(0) === \"!\";\n return e = n ? e.slice(1) : e, { name: e, once: a, capture: n, passive: t };\n});\nfunction jo(e, t) {\n function a() {\n var n = a.fns;\n if (ve(n))\n for (var s = n.slice(), r = 0; r < s.length; r++)\n Et(s[r], null, arguments, t, \"v-on handler\");\n else\n return Et(n, null, arguments, t, \"v-on handler\");\n }\n return a.fns = e, a;\n}\nfunction lc(e, t, a, n, s, r) {\n var o, i, u, l;\n for (o in e)\n i = e[o], u = t[o], l = Ri(o), pe(i) || (pe(u) ? (pe(i.fns) && (i = e[o] = jo(i, r)), _e(l.once) && (i = e[o] = s(l.name, i, l.capture)), a(l.name, i, l.capture, l.passive, l.params)) : i !== u && (u.fns = i, e[o] = u));\n for (o in t)\n pe(e[o]) && (l = Ri(o), n(l.name, t[o], l.capture));\n}\nfunction Ot(e, t, a) {\n e instanceof st && (e = e.data.hook || (e.data.hook = {}));\n var n, s = e[t];\n function r() {\n a.apply(this, arguments), Mt(n.fns, r);\n }\n pe(s) ? n = jo([r]) : O(s.fns) && _e(s.merged) ? (n = s, n.fns.push(r)) : n = jo([s, r]), n.merged = !0, e[t] = n;\n}\nfunction pp(e, t, a) {\n var n = t.options.props;\n if (!pe(n)) {\n var s = {}, r = e.attrs, o = e.props;\n if (O(r) || O(o))\n for (var i in n) {\n var u = rn(i);\n $i(s, o, i, u, !0) || $i(s, r, i, u, !1);\n }\n return s;\n }\n}\nfunction $i(e, t, a, n, s) {\n if (O(t)) {\n if (Xe(t, a))\n return e[a] = t[a], s || delete t[a], !0;\n if (Xe(t, n))\n return e[a] = t[n], s || delete t[n], !0;\n }\n return !1;\n}\nfunction gp(e) {\n for (var t = 0; t < e.length; t++)\n if (ve(e[t]))\n return Array.prototype.concat.apply([], e);\n return e;\n}\nfunction wr(e) {\n return on(e) ? [Ca(e)] : ve(e) ? cc(e) : void 0;\n}\nfunction za(e) {\n return O(e) && O(e.text) && bd(e.isComment);\n}\nfunction cc(e, t) {\n var a = [], n, s, r, o;\n for (n = 0; n < e.length; n++)\n s = e[n], !(pe(s) || typeof s == \"boolean\") && (r = a.length - 1, o = a[r], ve(s) ? s.length > 0 && (s = cc(s, \"\".concat(t || \"\", \"_\").concat(n)), za(s[0]) && za(o) && (a[r] = Ca(o.text + s[0].text), s.shift()), a.push.apply(a, s)) : on(s) ? za(o) ? a[r] = Ca(o.text + s) : s !== \"\" && a.push(Ca(s)) : za(s) && za(o) ? a[r] = Ca(o.text + s.text) : (_e(e._isVList) && O(s.tag) && pe(s.key) && O(t) && (s.key = \"__vlist\".concat(t, \"_\").concat(n, \"__\")), a.push(s)));\n return a;\n}\nfunction hp(e, t) {\n var a = null, n, s, r, o;\n if (ve(e) || typeof e == \"string\")\n for (a = new Array(e.length), n = 0, s = e.length; n < s; n++)\n a[n] = t(e[n], n);\n else if (typeof e == \"number\")\n for (a = new Array(e), n = 0; n < e; n++)\n a[n] = t(n + 1, n);\n else if (Je(e))\n if (un && e[Symbol.iterator]) {\n a = [];\n for (var i = e[Symbol.iterator](), u = i.next(); !u.done; )\n a.push(t(u.value, a.length)), u = i.next();\n } else\n for (r = Object.keys(e), a = new Array(r.length), n = 0, s = r.length; n < s; n++)\n o = r[n], a[n] = t(e[o], o, n);\n return O(a) || (a = []), a._isVList = !0, a;\n}\nfunction fp(e, t, a, n) {\n var s = this.$scopedSlots[e], r;\n s ? (a = a || {}, n && (a = Fe(Fe({}, n), a)), r = s(a) || (Pe(t) ? t() : t)) : r = this.$slots[e] || (Pe(t) ? t() : t);\n var o = a && a.slot;\n return o ? this.$createElement(\"template\", { slot: o }, r) : r;\n}\nfunction vp(e) {\n return ns(this.$options, \"filters\", e) || Vl;\n}\nfunction Ii(e, t) {\n return ve(e) ? e.indexOf(t) === -1 : e !== t;\n}\nfunction Cp(e, t, a, n, s) {\n var r = rt.keyCodes[t] || a;\n return s && n && !rt.keyCodes[t] ? Ii(s, n) : r ? Ii(r, e) : n ? rn(n) !== t : e === void 0;\n}\nfunction yp(e, t, a, n, s) {\n if (a && Je(a)) {\n ve(a) && (a = ql(a));\n var r = void 0, o = function(u) {\n if (u === \"class\" || u === \"style\" || Ed(u))\n r = e;\n else {\n var l = e.attrs && e.attrs.type;\n r = n || rt.mustUseProp(t, l, u) ? e.domProps || (e.domProps = {}) : e.attrs || (e.attrs = {});\n }\n var c = ea(u), d = rn(u);\n if (!(c in r) && !(d in r) && (r[u] = a[u], s)) {\n var m = e.on || (e.on = {});\n m[\"update:\".concat(u)] = function(p) {\n a[u] = p;\n };\n }\n };\n for (var i in a)\n o(i);\n }\n return e;\n}\nfunction Ap(e, t) {\n var a = this._staticTrees || (this._staticTrees = []), n = a[e];\n return n && !t || (n = a[e] = this.$options.staticRenderFns[e].call(this._renderProxy, this._c, this), mc(n, \"__static__\".concat(e), !1)), n;\n}\nfunction wp(e, t, a) {\n return mc(e, \"__once__\".concat(t).concat(a ? \"_\".concat(a) : \"\"), !0), e;\n}\nfunction mc(e, t, a) {\n if (ve(e))\n for (var n = 0; n < e.length; n++)\n e[n] && typeof e[n] != \"string\" && Gi(e[n], \"\".concat(t, \"_\").concat(n), a);\n else\n Gi(e, t, a);\n}\nfunction Gi(e, t, a) {\n e.isStatic = !0, e.key = t, e.isOnce = a;\n}\nfunction bp(e, t) {\n if (t && Qe(t)) {\n var a = e.on = e.on ? Fe({}, e.on) : {};\n for (var n in t) {\n var s = a[n], r = t[n];\n a[n] = s ? [].concat(s, r) : r;\n }\n }\n return e;\n}\nfunction dc(e, t, a, n) {\n t = t || { $stable: !a };\n for (var s = 0; s < e.length; s++) {\n var r = e[s];\n ve(r) ? dc(r, t, a) : r && (r.proxy && (r.fn.proxy = !0), t[r.key] = r.fn);\n }\n return n && (t.$key = n), t;\n}\nfunction xp(e, t) {\n for (var a = 0; a < t.length; a += 2) {\n var n = t[a];\n typeof n == \"string\" && n && (e[t[a]] = t[a + 1]);\n }\n return e;\n}\nfunction kp(e, t) {\n return typeof e == \"string\" ? t + e : e;\n}\nfunction pc(e) {\n e._o = wp, e._n = Ja, e._s = kd, e._l = hp, e._t = fp, e._q = ta, e._i = Wl, e._m = Ap, e._f = vp, e._k = Cp, e._b = yp, e._v = Ca, e._e = ka, e._u = dc, e._g = bp, e._d = xp, e._p = kp;\n}\nfunction br(e, t) {\n if (!e || !e.length)\n return {};\n for (var a = {}, n = 0, s = e.length; n < s; n++) {\n var r = e[n], o = r.data;\n if (o && o.attrs && o.attrs.slot && delete o.attrs.slot, (r.context === t || r.fnContext === t) && o && o.slot != null) {\n var i = o.slot, u = a[i] || (a[i] = []);\n r.tag === \"template\" ? u.push.apply(u, r.children || []) : u.push(r);\n } else\n (a.default || (a.default = [])).push(r);\n }\n for (var l in a)\n a[l].every(Ep) && delete a[l];\n return a;\n}\nfunction Ep(e) {\n return e.isComment && !e.asyncFactory || e.text === \" \";\n}\nfunction Xa(e) {\n return e.isComment && e.asyncFactory;\n}\nfunction Ha(e, t, a, n) {\n var s, r = Object.keys(a).length > 0, o = t ? !!t.$stable : !r, i = t && t.$key;\n if (!t)\n s = {};\n else {\n if (t._normalized)\n return t._normalized;\n if (o && n && n !== Ke && i === n.$key && !r && !n.$hasNormal)\n return n;\n s = {};\n for (var u in t)\n t[u] && u[0] !== \"$\" && (s[u] = Pp(e, a, u, t[u]));\n }\n for (var l in a)\n l in s || (s[l] = Sp(a, l));\n return t && Object.isExtensible(t) && (t._normalized = s), Ue(s, \"$stable\", o), Ue(s, \"$key\", i), Ue(s, \"$hasNormal\", r), s;\n}\nfunction Pp(e, t, a, n) {\n var s = function() {\n var r = Me;\n Lt(e);\n var o = arguments.length ? n.apply(null, arguments) : n({});\n o = o && typeof o == \"object\" && !ve(o) ? [o] : wr(o);\n var i = o && o[0];\n return Lt(r), o && (!i || o.length === 1 && i.isComment && !Xa(i)) ? void 0 : o;\n };\n return n.proxy && Object.defineProperty(t, a, { get: s, enumerable: !0, configurable: !0 }), s;\n}\nfunction Sp(e, t) {\n return function() {\n return e[t];\n };\n}\nfunction Tp(e) {\n var t = e.$options, a = t.setup;\n if (a) {\n var n = e._setupContext = gc(e);\n Lt(e), Ba();\n var s = Et(a, null, [e._props || yr({}), n], e, \"setup\");\n if (_a(), Lt(), Pe(s))\n t.render = s;\n else if (Je(s))\n if (e._setupState = s, s.__sfc) {\n var r = e._setupProxy = {};\n for (var o in s)\n o !== \"__sfc\" && Qn(r, s, o);\n } else\n for (var o in s)\n Kl(o) || Qn(e, s, o);\n }\n}\nfunction gc(e) {\n return { get attrs() {\n if (!e._attrsProxy) {\n var t = e._attrsProxy = {};\n Ue(t, \"_v_attr_proxy\", !0), es(t, e.$attrs, Ke, e, \"$attrs\");\n }\n return e._attrsProxy;\n }, get listeners() {\n if (!e._listenersProxy) {\n var t = e._listenersProxy = {};\n es(t, e.$listeners, Ke, e, \"$listeners\");\n }\n return e._listenersProxy;\n }, get slots() {\n return Dp(e);\n }, emit: Hl(e.$emit, e), expose: function(t) {\n t && Object.keys(t).forEach(function(a) {\n return Qn(e, t, a);\n });\n } };\n}\nfunction es(e, t, a, n, s) {\n var r = !1;\n for (var o in t)\n o in e ? t[o] !== a[o] && (r = !0) : (r = !0, Fp(e, o, n, s));\n for (var o in e)\n o in t || (r = !0, delete e[o]);\n return r;\n}\nfunction Fp(e, t, a, n) {\n Object.defineProperty(e, t, { enumerable: !0, configurable: !0, get: function() {\n return a[n][t];\n } });\n}\nfunction Dp(e) {\n return e._slotsProxy || hc(e._slotsProxy = {}, e.$scopedSlots), e._slotsProxy;\n}\nfunction hc(e, t) {\n for (var a in t)\n e[a] = t[a];\n for (var a in e)\n a in t || delete e[a];\n}\nfunction Bp() {\n return xr().slots;\n}\nfunction _p() {\n return xr().attrs;\n}\nfunction Np() {\n return xr().listeners;\n}\nfunction xr() {\n var e = Me;\n return e._setupContext || (e._setupContext = gc(e));\n}\nfunction Op(e, t) {\n var a = ve(e) ? e.reduce(function(r, o) {\n return r[o] = {}, r;\n }, {}) : e;\n for (var n in t) {\n var s = a[n];\n s ? ve(s) || Pe(s) ? a[n] = { type: s, default: t[n] } : s.default = t[n] : s === null && (a[n] = { default: t[n] });\n }\n return a;\n}\nfunction jp(e) {\n e._vnode = null, e._staticTrees = null;\n var t = e.$options, a = e.$vnode = t._parentVnode, n = a && a.context;\n e.$slots = br(t._renderChildren, n), e.$scopedSlots = a ? Ha(e.$parent, a.data.scopedSlots, e.$slots) : Ke, e._c = function(r, o, i, u) {\n return Qa(e, r, o, i, u, !1);\n }, e.$createElement = function(r, o, i, u) {\n return Qa(e, r, o, i, u, !0);\n };\n var s = a && a.data;\n Ut(e, \"$attrs\", s && s.attrs || Ke, null, !0), Ut(e, \"$listeners\", t._parentListeners || Ke, null, !0);\n}\nvar Lo = null;\nfunction Lp(e) {\n pc(e.prototype), e.prototype.$nextTick = function(t) {\n return Es(t, this);\n }, e.prototype._render = function() {\n var t = this, a = t.$options, n = a.render, s = a._parentVnode;\n s && t._isMounted && (t.$scopedSlots = Ha(t.$parent, s.data.scopedSlots, t.$slots, t.$scopedSlots), t._slotsProxy && hc(t._slotsProxy, t.$scopedSlots)), t.$vnode = s;\n var r;\n try {\n Lt(t), Lo = t, r = n.call(t._renderProxy, t.$createElement);\n } catch (o) {\n aa(o, t, \"render\"), r = t._vnode;\n } finally {\n Lo = null, Lt();\n }\n return ve(r) && r.length === 1 && (r = r[0]), r instanceof st || (r = ka()), r.parent = s, r;\n };\n}\nfunction eo(e, t) {\n return (e.__esModule || un && e[Symbol.toStringTag] === \"Module\") && (e = e.default), Je(e) ? t.extend(e) : e;\n}\nfunction zp(e, t, a, n, s) {\n var r = ka();\n return r.asyncFactory = e, r.asyncMeta = { data: t, context: a, children: n, tag: s }, r;\n}\nfunction Up(e, t) {\n if (_e(e.error) && O(e.errorComp))\n return e.errorComp;\n if (O(e.resolved))\n return e.resolved;\n var a = Lo;\n if (a && O(e.owners) && e.owners.indexOf(a) === -1 && e.owners.push(a), _e(e.loading) && O(e.loadingComp))\n return e.loadingComp;\n if (a && !O(e.owners)) {\n var n = e.owners = [a], s = !0, r = null, o = null;\n a.$on(\"hook:destroyed\", function() {\n return Mt(n, a);\n });\n var i = function(d) {\n for (var m = 0, p = n.length; m < p; m++)\n n[m].$forceUpdate();\n d && (n.length = 0, r !== null && (clearTimeout(r), r = null), o !== null && (clearTimeout(o), o = null));\n }, u = Kn(function(d) {\n e.resolved = eo(d, t), s ? n.length = 0 : i(!0);\n }), l = Kn(function(d) {\n O(e.errorComp) && (e.error = !0, i(!0));\n }), c = e(u, l);\n return Je(c) && (Do(c) ? pe(e.resolved) && c.then(u, l) : Do(c.component) && (c.component.then(u, l), O(c.error) && (e.errorComp = eo(c.error, t)), O(c.loading) && (e.loadingComp = eo(c.loading, t), c.delay === 0 ? e.loading = !0 : r = setTimeout(function() {\n r = null, pe(e.resolved) && pe(e.error) && (e.loading = !0, i(!1));\n }, c.delay || 200)), O(c.timeout) && (o = setTimeout(function() {\n o = null, pe(e.resolved) && l(null);\n }, c.timeout)))), s = !1, e.loading ? e.loadingComp : e.resolved;\n }\n}\nfunction fc(e) {\n if (ve(e))\n for (var t = 0; t < e.length; t++) {\n var a = e[t];\n if (O(a) && (O(a.componentOptions) || Xa(a)))\n return a;\n }\n}\nvar Mp = 1, vc = 2;\nfunction Qa(e, t, a, n, s, r) {\n return (ve(a) || on(a)) && (s = n, n = a, a = void 0), _e(r) && (s = vc), Rp(e, t, a, n, s);\n}\nfunction Rp(e, t, a, n, s) {\n if (O(a) && O(a.__ob__) || (O(a) && O(a.is) && (t = a.is), !t))\n return ka();\n ve(n) && Pe(n[0]) && (a = a || {}, a.scopedSlots = { default: n[0] }, n.length = 0), s === vc ? n = wr(n) : s === Mp && (n = gp(n));\n var r, o;\n if (typeof t == \"string\") {\n var i = void 0;\n o = e.$vnode && e.$vnode.ns || rt.getTagNamespace(t), rt.isReservedTag(t) ? r = new st(rt.parsePlatformTagName(t), a, n, void 0, void 0, e) : (!a || !a.pre) && O(i = ns(e.$options, \"components\", t)) ? r = Yi(i, a, e, n, t) : r = new st(t, a, n, void 0, void 0, e);\n } else\n r = Yi(t, a, e, n);\n return ve(r) ? r : O(r) ? (O(o) && Cc(r, o), O(a) && $p(a), r) : ka();\n}\nfunction Cc(e, t, a) {\n if (e.ns = t, e.tag === \"foreignObject\" && (t = void 0, a = !0), O(e.children))\n for (var n = 0, s = e.children.length; n < s; n++) {\n var r = e.children[n];\n O(r.tag) && (pe(r.ns) || _e(a) && r.tag !== \"svg\") && Cc(r, t, a);\n }\n}\nfunction $p(e) {\n Je(e.style) && Ea(e.style), Je(e.class) && Ea(e.class);\n}\nfunction Ip(e, t, a) {\n return Qa(Me, e, t, a, 2, !0);\n}\nfunction aa(e, t, a) {\n Ba();\n try {\n if (t)\n for (var n = t; n = n.$parent; ) {\n var s = n.$options.errorCaptured;\n if (s)\n for (var r = 0; r < s.length; r++)\n try {\n var o = s[r].call(n, e, t, a) === !1;\n if (o)\n return;\n } catch (i) {\n Hi(i, n, \"errorCaptured hook\");\n }\n }\n Hi(e, t, a);\n } finally {\n _a();\n }\n}\nfunction Et(e, t, a, n, s) {\n var r;\n try {\n r = a ? e.apply(t, a) : e.call(t), r && !r._isVue && Do(r) && !r._handled && (r.catch(function(o) {\n return aa(o, n, s + \" (Promise/async)\");\n }), r._handled = !0);\n } catch (o) {\n aa(o, n, s);\n }\n return r;\n}\nfunction Hi(e, t, a) {\n if (rt.errorHandler)\n try {\n return rt.errorHandler.call(null, e, t, a);\n } catch (n) {\n n !== e && qi(n);\n }\n qi(e);\n}\nfunction qi(e, t, a) {\n if (tt && typeof console < \"u\")\n console.error(e);\n else\n throw e;\n}\nvar zo = !1, Uo = [], Mo = !1;\nfunction xn() {\n Mo = !1;\n var e = Uo.slice(0);\n Uo.length = 0;\n for (var t = 0; t < e.length; t++)\n e[t]();\n}\nvar $a;\nif (typeof Promise < \"u\" && wa(Promise)) {\n var Gp = Promise.resolve();\n $a = function() {\n Gp.then(xn), Ld && setTimeout(De);\n }, zo = !0;\n} else if (!Fa && typeof MutationObserver < \"u\" && (wa(MutationObserver) || MutationObserver.toString() === \"[object MutationObserverConstructor]\")) {\n var kn = 1, Hp = new MutationObserver(xn), Vi = document.createTextNode(String(kn));\n Hp.observe(Vi, { characterData: !0 }), $a = function() {\n kn = (kn + 1) % 2, Vi.data = String(kn);\n }, zo = !0;\n} else\n typeof setImmediate < \"u\" && wa(setImmediate) ? $a = function() {\n setImmediate(xn);\n } : $a = function() {\n setTimeout(xn, 0);\n };\nfunction Es(e, t) {\n var a;\n if (Uo.push(function() {\n if (e)\n try {\n e.call(t);\n } catch (n) {\n aa(n, t, \"nextTick\");\n }\n else\n a && a(t);\n }), Mo || (Mo = !0, $a()), !e && typeof Promise < \"u\")\n return new Promise(function(n) {\n a = n;\n });\n}\nfunction qp(e) {\n e === void 0 && (e = \"$style\");\n {\n if (!Me)\n return Ke;\n var t = Me[e];\n return t || Ke;\n }\n}\nfunction Vp(e) {\n if (tt) {\n var t = Me;\n t && ic(function() {\n var a = t.$el, n = e(t, t._setupProxy);\n if (a && a.nodeType === 1) {\n var s = a.style;\n for (var r in n)\n s.setProperty(\"--\".concat(r), n[r]);\n }\n });\n }\n}\nfunction Wp(e) {\n Pe(e) && (e = { loader: e });\n var t = e.loader, a = e.loadingComponent, n = e.errorComponent, s = e.delay, r = s === void 0 ? 200 : s, o = e.timeout;\n e.suspensible;\n var i = e.onError, u = null, l = 0, c = function() {\n return l++, u = null, d();\n }, d = function() {\n var m;\n return u || (m = u = t().catch(function(p) {\n if (p = p instanceof Error ? p : new Error(String(p)), i)\n return new Promise(function(h, y) {\n var P = function() {\n return h(c());\n }, v = function() {\n return y(p);\n };\n i(p, P, v, l + 1);\n });\n throw p;\n }).then(function(p) {\n return m !== u && u ? u : (p && (p.__esModule || p[Symbol.toStringTag] === \"Module\") && (p = p.default), p);\n }));\n };\n return function() {\n var m = d();\n return { component: m, delay: r, timeout: o, error: n, loading: a };\n };\n}\nfunction ut(e) {\n return function(t, a) {\n if (a === void 0 && (a = Me), !!a)\n return Zp(a, e, t);\n };\n}\nfunction Zp(e, t, a) {\n var n = e.$options;\n n[t] = Pc(n[t], a);\n}\nvar Kp = ut(\"beforeMount\"), Jp = ut(\"mounted\"), Yp = ut(\"beforeUpdate\"), Xp = ut(\"updated\"), Qp = ut(\"beforeDestroy\"), eg = ut(\"destroyed\"), tg = ut(\"activated\"), ag = ut(\"deactivated\"), ng = ut(\"serverPrefetch\"), sg = ut(\"renderTracked\"), og = ut(\"renderTriggered\"), rg = ut(\"errorCaptured\");\nfunction ig(e, t) {\n t === void 0 && (t = Me), rg(e, t);\n}\nvar yc = \"2.7.14\";\nfunction ug(e) {\n return e;\n}\nvar Wi = new Ya();\nfunction Ea(e) {\n return Hn(e, Wi), Wi.clear(), e;\n}\nfunction Hn(e, t) {\n var a, n, s = ve(e);\n if (!(!s && !Je(e) || e.__v_skip || Object.isFrozen(e) || e instanceof st)) {\n if (e.__ob__) {\n var r = e.__ob__.dep.id;\n if (t.has(r))\n return;\n t.add(r);\n }\n if (s)\n for (a = e.length; a--; )\n Hn(e[a], t);\n else if (We(e))\n Hn(e.value, t);\n else\n for (n = Object.keys(e), a = n.length; a--; )\n Hn(e[n[a]], t);\n }\n}\nvar lg = 0, cn = function() {\n function e(t, a, n, s, r) {\n up(this, Ze && !Ze._vm ? Ze : t ? t._scope : void 0), (this.vm = t) && r && (t._watcher = this), s ? (this.deep = !!s.deep, this.user = !!s.user, this.lazy = !!s.lazy, this.sync = !!s.sync, this.before = s.before) : this.deep = this.user = this.lazy = this.sync = !1, this.cb = n, this.id = ++lg, this.active = !0, this.post = !1, this.dirty = this.lazy, this.deps = [], this.newDeps = [], this.depIds = new Ya(), this.newDepIds = new Ya(), this.expression = \"\", Pe(a) ? this.getter = a : (this.getter = Od(a), this.getter || (this.getter = De)), this.value = this.lazy ? void 0 : this.get();\n }\n return e.prototype.get = function() {\n Ba(this);\n var t, a = this.vm;\n try {\n t = this.getter.call(a, a);\n } catch (n) {\n if (this.user)\n aa(n, a, 'getter for watcher \"'.concat(this.expression, '\"'));\n else\n throw n;\n } finally {\n this.deep && Ea(t), _a(), this.cleanupDeps();\n }\n return t;\n }, e.prototype.addDep = function(t) {\n var a = t.id;\n this.newDepIds.has(a) || (this.newDepIds.add(a), this.newDeps.push(t), this.depIds.has(a) || t.addSub(this));\n }, e.prototype.cleanupDeps = function() {\n for (var t = this.deps.length; t--; ) {\n var a = this.deps[t];\n this.newDepIds.has(a.id) || a.removeSub(this);\n }\n var n = this.depIds;\n this.depIds = this.newDepIds, this.newDepIds = n, this.newDepIds.clear(), n = this.deps, this.deps = this.newDeps, this.newDeps = n, this.newDeps.length = 0;\n }, e.prototype.update = function() {\n this.lazy ? this.dirty = !0 : this.sync ? this.run() : Io(this);\n }, e.prototype.run = function() {\n if (this.active) {\n var t = this.get();\n if (t !== this.value || Je(t) || this.deep) {\n var a = this.value;\n if (this.value = t, this.user) {\n var n = 'callback for watcher \"'.concat(this.expression, '\"');\n Et(this.cb, this.vm, [t, a], this.vm, n);\n } else\n this.cb.call(this.vm, t, a);\n }\n }\n }, e.prototype.evaluate = function() {\n this.value = this.get(), this.dirty = !1;\n }, e.prototype.depend = function() {\n for (var t = this.deps.length; t--; )\n this.deps[t].depend();\n }, e.prototype.teardown = function() {\n if (this.vm && !this.vm._isBeingDestroyed && Mt(this.vm._scope.effects, this), this.active) {\n for (var t = this.deps.length; t--; )\n this.deps[t].removeSub(this);\n this.active = !1, this.onStop && this.onStop();\n }\n }, e;\n}();\nfunction cg(e) {\n e._events = /* @__PURE__ */ Object.create(null), e._hasHookEvent = !1;\n var t = e.$options._parentListeners;\n t && Ac(e, t);\n}\nvar en;\nfunction mg(e, t) {\n en.$on(e, t);\n}\nfunction dg(e, t) {\n en.$off(e, t);\n}\nfunction pg(e, t) {\n var a = en;\n return function n() {\n var s = t.apply(null, arguments);\n s !== null && a.$off(e, n);\n };\n}\nfunction Ac(e, t, a) {\n en = e, lc(t, a || {}, mg, dg, pg, e), en = void 0;\n}\nfunction gg(e) {\n var t = /^hook:/;\n e.prototype.$on = function(a, n) {\n var s = this;\n if (ve(a))\n for (var r = 0, o = a.length; r < o; r++)\n s.$on(a[r], n);\n else\n (s._events[a] || (s._events[a] = [])).push(n), t.test(a) && (s._hasHookEvent = !0);\n return s;\n }, e.prototype.$once = function(a, n) {\n var s = this;\n function r() {\n s.$off(a, r), n.apply(s, arguments);\n }\n return r.fn = n, s.$on(a, r), s;\n }, e.prototype.$off = function(a, n) {\n var s = this;\n if (!arguments.length)\n return s._events = /* @__PURE__ */ Object.create(null), s;\n if (ve(a)) {\n for (var r = 0, o = a.length; r < o; r++)\n s.$off(a[r], n);\n return s;\n }\n var i = s._events[a];\n if (!i)\n return s;\n if (!n)\n return s._events[a] = null, s;\n for (var u, l = i.length; l--; )\n if (u = i[l], u === n || u.fn === n) {\n i.splice(l, 1);\n break;\n }\n return s;\n }, e.prototype.$emit = function(a) {\n var n = this, s = n._events[a];\n if (s) {\n s = s.length > 1 ? Bo(s) : s;\n for (var r = Bo(arguments, 1), o = 'event handler for \"'.concat(a, '\"'), i = 0, u = s.length; i < u; i++)\n Et(s[i], n, r, n, o);\n }\n return n;\n };\n}\nvar Xt = null;\nfunction wc(e) {\n var t = Xt;\n return Xt = e, function() {\n Xt = t;\n };\n}\nfunction hg(e) {\n var t = e.$options, a = t.parent;\n if (a && !t.abstract) {\n for (; a.$options.abstract && a.$parent; )\n a = a.$parent;\n a.$children.push(e);\n }\n e.$parent = a, e.$root = a ? a.$root : e, e.$children = [], e.$refs = {}, e._provided = a ? a._provided : /* @__PURE__ */ Object.create(null), e._watcher = null, e._inactive = null, e._directInactive = !1, e._isMounted = !1, e._isDestroyed = !1, e._isBeingDestroyed = !1;\n}\nfunction fg(e) {\n e.prototype._update = function(t, a) {\n var n = this, s = n.$el, r = n._vnode, o = wc(n);\n n._vnode = t, r ? n.$el = n.__patch__(r, t) : n.$el = n.__patch__(n.$el, t, a, !1), o(), s && (s.__vue__ = null), n.$el && (n.$el.__vue__ = n);\n for (var i = n; i && i.$vnode && i.$parent && i.$vnode === i.$parent._vnode; )\n i.$parent.$el = i.$el, i = i.$parent;\n }, e.prototype.$forceUpdate = function() {\n var t = this;\n t._watcher && t._watcher.update();\n }, e.prototype.$destroy = function() {\n var t = this;\n if (!t._isBeingDestroyed) {\n ct(t, \"beforeDestroy\"), t._isBeingDestroyed = !0;\n var a = t.$parent;\n a && !a._isBeingDestroyed && !t.$options.abstract && Mt(a.$children, t), t._scope.stop(), t._data.__ob__ && t._data.__ob__.vmCount--, t._isDestroyed = !0, t.__patch__(t._vnode, null), ct(t, \"destroyed\"), t.$off(), t.$el && (t.$el.__vue__ = null), t.$vnode && (t.$vnode.parent = null);\n }\n };\n}\nfunction vg(e, t, a) {\n e.$el = t, e.$options.render || (e.$options.render = ka), ct(e, \"beforeMount\");\n var n;\n n = function() {\n e._update(e._render(), a);\n };\n var s = { before: function() {\n e._isMounted && !e._isDestroyed && ct(e, \"beforeUpdate\");\n } };\n new cn(e, n, De, s, !0), a = !1;\n var r = e._preWatchers;\n if (r)\n for (var o = 0; o < r.length; o++)\n r[o].run();\n return e.$vnode == null && (e._isMounted = !0, ct(e, \"mounted\")), e;\n}\nfunction Cg(e, t, a, n, s) {\n var r = n.data.scopedSlots, o = e.$scopedSlots, i = !!(r && !r.$stable || o !== Ke && !o.$stable || r && e.$scopedSlots.$key !== r.$key || !r && e.$scopedSlots.$key), u = !!(s || e.$options._renderChildren || i), l = e.$vnode;\n e.$options._parentVnode = n, e.$vnode = n, e._vnode && (e._vnode.parent = n), e.$options._renderChildren = s;\n var c = n.data.attrs || Ke;\n e._attrsProxy && es(e._attrsProxy, c, l.data && l.data.attrs || Ke, e, \"$attrs\") && (u = !0), e.$attrs = c, a = a || Ke;\n var d = e.$options._parentListeners;\n if (e._listenersProxy && es(e._listenersProxy, a, d || Ke, e, \"$listeners\"), e.$listeners = e.$options._parentListeners = a, Ac(e, a, d), t && e.$options.props) {\n zt(!1);\n for (var m = e._props, p = e.$options._propKeys || [], h = 0; h < p.length; h++) {\n var y = p[h], P = e.$options.props;\n m[y] = Fr(y, P, t, e);\n }\n zt(!0), e.$options.propsData = t;\n }\n u && (e.$slots = br(s, n.context), e.$forceUpdate());\n}\nfunction bc(e) {\n for (; e && (e = e.$parent); )\n if (e._inactive)\n return !0;\n return !1;\n}\nfunction kr(e, t) {\n if (t) {\n if (e._directInactive = !1, bc(e))\n return;\n } else if (e._directInactive)\n return;\n if (e._inactive || e._inactive === null) {\n e._inactive = !1;\n for (var a = 0; a < e.$children.length; a++)\n kr(e.$children[a]);\n ct(e, \"activated\");\n }\n}\nfunction xc(e, t) {\n if (!(t && (e._directInactive = !0, bc(e))) && !e._inactive) {\n e._inactive = !0;\n for (var a = 0; a < e.$children.length; a++)\n xc(e.$children[a]);\n ct(e, \"deactivated\");\n }\n}\nfunction ct(e, t, a, n) {\n n === void 0 && (n = !0), Ba();\n var s = Me;\n n && Lt(e);\n var r = e.$options[t], o = \"\".concat(t, \" hook\");\n if (r)\n for (var i = 0, u = r.length; i < u; i++)\n Et(r[i], e, a || null, e, o);\n e._hasHookEvent && e.$emit(\"hook:\" + t), n && Lt(s), _a();\n}\nvar wt = [], Er = [], ts = {}, Ro = !1, Pr = !1, ya = 0;\nfunction yg() {\n ya = wt.length = Er.length = 0, ts = {}, Ro = Pr = !1;\n}\nvar kc = 0, $o = Date.now;\nif (tt && !Fa) {\n var to = window.performance;\n to && typeof to.now == \"function\" && $o() > document.createEvent(\"Event\").timeStamp && ($o = function() {\n return to.now();\n });\n}\nvar Ag = function(e, t) {\n if (e.post) {\n if (!t.post)\n return 1;\n } else if (t.post)\n return -1;\n return e.id - t.id;\n};\nfunction wg() {\n kc = $o(), Pr = !0;\n var e, t;\n for (wt.sort(Ag), ya = 0; ya < wt.length; ya++)\n e = wt[ya], e.before && e.before(), t = e.id, ts[t] = null, e.run();\n var a = Er.slice(), n = wt.slice();\n yg(), kg(a), bg(n), Md(), Jn && rt.devtools && Jn.emit(\"flush\");\n}\nfunction bg(e) {\n for (var t = e.length; t--; ) {\n var a = e[t], n = a.vm;\n n && n._watcher === a && n._isMounted && !n._isDestroyed && ct(n, \"updated\");\n }\n}\nfunction xg(e) {\n e._inactive = !1, Er.push(e);\n}\nfunction kg(e) {\n for (var t = 0; t < e.length; t++)\n e[t]._inactive = !0, kr(e[t], !0);\n}\nfunction Io(e) {\n var t = e.id;\n if (ts[t] == null && !(e === ft.target && e.noRecurse)) {\n if (ts[t] = !0, !Pr)\n wt.push(e);\n else {\n for (var a = wt.length - 1; a > ya && wt[a].id > e.id; )\n a--;\n wt.splice(a + 1, 0, e);\n }\n Ro || (Ro = !0, Es(wg));\n }\n}\nfunction Eg(e) {\n var t = e.$options.provide;\n if (t) {\n var a = Pe(t) ? t.call(e) : t;\n if (!Je(a))\n return;\n for (var n = uc(e), s = un ? Reflect.ownKeys(a) : Object.keys(a), r = 0; r < s.length; r++) {\n var o = s[r];\n Object.defineProperty(n, o, Object.getOwnPropertyDescriptor(a, o));\n }\n }\n}\nfunction Pg(e) {\n var t = Ec(e.$options.inject, e);\n t && (zt(!1), Object.keys(t).forEach(function(a) {\n Ut(e, a, t[a]);\n }), zt(!0));\n}\nfunction Ec(e, t) {\n if (e) {\n for (var a = /* @__PURE__ */ Object.create(null), n = un ? Reflect.ownKeys(e) : Object.keys(e), s = 0; s < n.length; s++) {\n var r = n[s];\n if (r !== \"__ob__\") {\n var o = e[r].from;\n if (o in t._provided)\n a[r] = t._provided[o];\n else if (\"default\" in e[r]) {\n var i = e[r].default;\n a[r] = Pe(i) ? i.call(t) : i;\n }\n }\n }\n return a;\n }\n}\nfunction Sr(e, t, a, n, s) {\n var r = this, o = s.options, i;\n Xe(n, \"_uid\") ? (i = Object.create(n), i._original = n) : (i = n, n = n._original);\n var u = _e(o._compiled), l = !u;\n this.data = e, this.props = t, this.children = a, this.parent = n, this.listeners = e.on || Ke, this.injections = Ec(o.inject, n), this.slots = function() {\n return r.$slots || Ha(n, e.scopedSlots, r.$slots = br(a, n)), r.$slots;\n }, Object.defineProperty(this, \"scopedSlots\", { enumerable: !0, get: function() {\n return Ha(n, e.scopedSlots, this.slots());\n } }), u && (this.$options = o, this.$slots = this.slots(), this.$scopedSlots = Ha(n, e.scopedSlots, this.$slots)), o._scopeId ? this._c = function(c, d, m, p) {\n var h = Qa(i, c, d, m, p, l);\n return h && !ve(h) && (h.fnScopeId = o._scopeId, h.fnContext = n), h;\n } : this._c = function(c, d, m, p) {\n return Qa(i, c, d, m, p, l);\n };\n}\npc(Sr.prototype);\nfunction Sg(e, t, a, n, s) {\n var r = e.options, o = {}, i = r.props;\n if (O(i))\n for (var u in i)\n o[u] = Fr(u, i, t || Ke);\n else\n O(a.attrs) && Ki(o, a.attrs), O(a.props) && Ki(o, a.props);\n var l = new Sr(a, o, s, n, e), c = r.render.call(null, l._c, l);\n if (c instanceof st)\n return Zi(c, a, l.parent, r);\n if (ve(c)) {\n for (var d = wr(c) || [], m = new Array(d.length), p = 0; p < d.length; p++)\n m[p] = Zi(d[p], a, l.parent, r);\n return m;\n }\n}\nfunction Zi(e, t, a, n, s) {\n var r = Oo(e);\n return r.fnContext = a, r.fnOptions = n, t.slot && ((r.data || (r.data = {})).slot = t.slot), r;\n}\nfunction Ki(e, t) {\n for (var a in t)\n e[ea(a)] = t[a];\n}\nfunction as(e) {\n return e.name || e.__name || e._componentTag;\n}\nvar Tr = { init: function(e, t) {\n if (e.componentInstance && !e.componentInstance._isDestroyed && e.data.keepAlive) {\n var a = e;\n Tr.prepatch(a, a);\n } else {\n var n = e.componentInstance = Tg(e, Xt);\n n.$mount(t ? e.elm : void 0, t);\n }\n}, prepatch: function(e, t) {\n var a = t.componentOptions, n = t.componentInstance = e.componentInstance;\n Cg(n, a.propsData, a.listeners, t, a.children);\n}, insert: function(e) {\n var t = e.context, a = e.componentInstance;\n a._isMounted || (a._isMounted = !0, ct(a, \"mounted\")), e.data.keepAlive && (t._isMounted ? xg(a) : kr(a, !0));\n}, destroy: function(e) {\n var t = e.componentInstance;\n t._isDestroyed || (e.data.keepAlive ? xc(t, !0) : t.$destroy());\n} }, Ji = Object.keys(Tr);\nfunction Yi(e, t, a, n, s) {\n if (!pe(e)) {\n var r = a.$options._base;\n if (Je(e) && (e = r.extend(e)), typeof e == \"function\") {\n var o;\n if (pe(e.cid) && (o = e, e = Up(o, r), e === void 0))\n return zp(o, t, a, n, s);\n t = t || {}, Br(e), O(t.model) && Bg(e.options, t);\n var i = pp(t, e);\n if (_e(e.options.functional))\n return Sg(e, i, t, a, n);\n var u = t.on;\n if (t.on = t.nativeOn, _e(e.options.abstract)) {\n var l = t.slot;\n t = {}, l && (t.slot = l);\n }\n Fg(t);\n var c = as(e.options) || s, d = new st(\"vue-component-\".concat(e.cid).concat(c ? \"-\".concat(c) : \"\"), t, void 0, void 0, void 0, a, { Ctor: e, propsData: i, listeners: u, tag: s, children: n }, o);\n return d;\n }\n }\n}\nfunction Tg(e, t) {\n var a = { _isComponent: !0, _parentVnode: e, parent: t }, n = e.data.inlineTemplate;\n return O(n) && (a.render = n.render, a.staticRenderFns = n.staticRenderFns), new e.componentOptions.Ctor(a);\n}\nfunction Fg(e) {\n for (var t = e.hook || (e.hook = {}), a = 0; a < Ji.length; a++) {\n var n = Ji[a], s = t[n], r = Tr[n];\n s !== r && !(s && s._merged) && (t[n] = s ? Dg(r, s) : r);\n }\n}\nfunction Dg(e, t) {\n var a = function(n, s) {\n e(n, s), t(n, s);\n };\n return a._merged = !0, a;\n}\nfunction Bg(e, t) {\n var a = e.model && e.model.prop || \"value\", n = e.model && e.model.event || \"input\";\n (t.attrs || (t.attrs = {}))[a] = t.model.value;\n var s = t.on || (t.on = {}), r = s[n], o = t.model.callback;\n O(r) ? (ve(r) ? r.indexOf(o) === -1 : r !== o) && (s[n] = [o].concat(r)) : s[n] = o;\n}\nvar _g = De, dt = rt.optionMergeStrategies;\nfunction tn(e, t, a) {\n if (a === void 0 && (a = !0), !t)\n return e;\n for (var n, s, r, o = un ? Reflect.ownKeys(t) : Object.keys(t), i = 0; i < o.length; i++)\n n = o[i], n !== \"__ob__\" && (s = e[n], r = t[n], !a || !Xe(e, n) ? bs(e, n, r) : s !== r && Qe(s) && Qe(r) && tn(s, r));\n return e;\n}\nfunction Xi(e, t, a) {\n return a ? function() {\n var n = Pe(t) ? t.call(a, a) : t, s = Pe(e) ? e.call(a, a) : e;\n return n ? tn(n, s) : s;\n } : t ? e ? function() {\n return tn(Pe(t) ? t.call(this, this) : t, Pe(e) ? e.call(this, this) : e);\n } : t : e;\n}\ndt.data = function(e, t, a) {\n return a ? Xi(e, t, a) : t && typeof t != \"function\" ? e : Xi(e, t);\n};\nfunction Pc(e, t) {\n var a = t ? e ? e.concat(t) : ve(t) ? t : [t] : e;\n return a && Ng(a);\n}\nfunction Ng(e) {\n for (var t = [], a = 0; a < e.length; a++)\n t.indexOf(e[a]) === -1 && t.push(e[a]);\n return t;\n}\nZl.forEach(function(e) {\n dt[e] = Pc;\n});\nfunction Og(e, t, a, n) {\n var s = Object.create(e || null);\n return t ? Fe(s, t) : s;\n}\nws.forEach(function(e) {\n dt[e + \"s\"] = Og;\n}), dt.watch = function(e, t, a, n) {\n if (e === No && (e = void 0), t === No && (t = void 0), !t)\n return Object.create(e || null);\n if (!e)\n return t;\n var s = {};\n Fe(s, e);\n for (var r in t) {\n var o = s[r], i = t[r];\n o && !ve(o) && (o = [o]), s[r] = o ? o.concat(i) : ve(i) ? i : [i];\n }\n return s;\n}, dt.props = dt.methods = dt.inject = dt.computed = function(e, t, a, n) {\n if (!e)\n return t;\n var s = /* @__PURE__ */ Object.create(null);\n return Fe(s, e), t && Fe(s, t), s;\n}, dt.provide = function(e, t) {\n return e ? function() {\n var a = /* @__PURE__ */ Object.create(null);\n return tn(a, Pe(e) ? e.call(this) : e), t && tn(a, Pe(t) ? t.call(this) : t, !1), a;\n } : t;\n};\nvar jg = function(e, t) {\n return t === void 0 ? e : t;\n};\nfunction Lg(e, t) {\n var a = e.props;\n if (a) {\n var n = {}, s, r, o;\n if (ve(a))\n for (s = a.length; s--; )\n r = a[s], typeof r == \"string\" && (o = ea(r), n[o] = { type: null });\n else if (Qe(a))\n for (var i in a)\n r = a[i], o = ea(i), n[o] = Qe(r) ? r : { type: r };\n e.props = n;\n }\n}\nfunction zg(e, t) {\n var a = e.inject;\n if (a) {\n var n = e.inject = {};\n if (ve(a))\n for (var s = 0; s < a.length; s++)\n n[a[s]] = { from: a[s] };\n else if (Qe(a))\n for (var r in a) {\n var o = a[r];\n n[r] = Qe(o) ? Fe({ from: r }, o) : { from: o };\n }\n }\n}\nfunction Ug(e) {\n var t = e.directives;\n if (t)\n for (var a in t) {\n var n = t[a];\n Pe(n) && (t[a] = { bind: n, update: n });\n }\n}\nfunction na(e, t, a) {\n if (Pe(t) && (t = t.options), Lg(t), zg(t), Ug(t), !t._base && (t.extends && (e = na(e, t.extends, a)), t.mixins))\n for (var n = 0, s = t.mixins.length; n < s; n++)\n e = na(e, t.mixins[n], a);\n var r = {}, o;\n for (o in e)\n i(o);\n for (o in t)\n Xe(e, o) || i(o);\n function i(u) {\n var l = dt[u] || jg;\n r[u] = l(e[u], t[u], a, u);\n }\n return r;\n}\nfunction ns(e, t, a, n) {\n if (typeof a == \"string\") {\n var s = e[t];\n if (Xe(s, a))\n return s[a];\n var r = ea(a);\n if (Xe(s, r))\n return s[r];\n var o = Td(r);\n if (Xe(s, o))\n return s[o];\n var i = s[a] || s[r] || s[o];\n return i;\n }\n}\nfunction Fr(e, t, a, n) {\n var s = t[e], r = !Xe(a, e), o = a[e], i = eu(Boolean, s.type);\n if (i > -1) {\n if (r && !Xe(s, \"default\"))\n o = !1;\n else if (o === \"\" || o === rn(e)) {\n var u = eu(String, s.type);\n (u < 0 || i < u) && (o = !0);\n }\n }\n if (o === void 0) {\n o = Mg(n, s, e);\n var l = vr;\n zt(!0), kt(o), zt(l);\n }\n return o;\n}\nfunction Mg(e, t, a) {\n if (Xe(t, \"default\")) {\n var n = t.default;\n return e && e.$options.propsData && e.$options.propsData[a] === void 0 && e._props[a] !== void 0 ? e._props[a] : Pe(n) && Go(t.type) !== \"Function\" ? n.call(e) : n;\n }\n}\nvar Rg = /^\\s*function (\\w+)/;\nfunction Go(e) {\n var t = e && e.toString().match(Rg);\n return t ? t[1] : \"\";\n}\nfunction Qi(e, t) {\n return Go(e) === Go(t);\n}\nfunction eu(e, t) {\n if (!ve(t))\n return Qi(t, e) ? 0 : -1;\n for (var a = 0, n = t.length; a < n; a++)\n if (Qi(t[a], e))\n return a;\n return -1;\n}\nvar _t = { enumerable: !0, configurable: !0, get: De, set: De };\nfunction Dr(e, t, a) {\n _t.get = function() {\n return this[t][a];\n }, _t.set = function(n) {\n this[t][a] = n;\n }, Object.defineProperty(e, a, _t);\n}\nfunction $g(e) {\n var t = e.$options;\n if (t.props && Ig(e, t.props), Tp(e), t.methods && Wg(e, t.methods), t.data)\n Gg(e);\n else {\n var a = kt(e._data = {});\n a && a.vmCount++;\n }\n t.computed && Vg(e, t.computed), t.watch && t.watch !== No && Zg(e, t.watch);\n}\nfunction Ig(e, t) {\n var a = e.$options.propsData || {}, n = e._props = yr({}), s = e.$options._propKeys = [], r = !e.$parent;\n r || zt(!1);\n var o = function(u) {\n s.push(u);\n var l = Fr(u, t, a, e);\n Ut(n, u, l), u in e || Dr(e, \"_props\", u);\n };\n for (var i in t)\n o(i);\n zt(!0);\n}\nfunction Gg(e) {\n var t = e.$options.data;\n t = e._data = Pe(t) ? Hg(t, e) : t || {}, Qe(t) || (t = {});\n var a = Object.keys(t), n = e.$options.props;\n e.$options.methods;\n for (var s = a.length; s--; ) {\n var r = a[s];\n n && Xe(n, r) || Kl(r) || Dr(e, \"_data\", r);\n }\n var o = kt(t);\n o && o.vmCount++;\n}\nfunction Hg(e, t) {\n Ba();\n try {\n return e.call(t, t);\n } catch (a) {\n return aa(a, t, \"data()\"), {};\n } finally {\n _a();\n }\n}\nvar qg = { lazy: !0 };\nfunction Vg(e, t) {\n var a = e._computedWatchers = /* @__PURE__ */ Object.create(null), n = Rt();\n for (var s in t) {\n var r = t[s], o = Pe(r) ? r : r.get;\n n || (a[s] = new cn(e, o || De, De, qg)), s in e || Sc(e, s, r);\n }\n}\nfunction Sc(e, t, a) {\n var n = !Rt();\n Pe(a) ? (_t.get = n ? tu(t) : au(a), _t.set = De) : (_t.get = a.get ? n && a.cache !== !1 ? tu(t) : au(a.get) : De, _t.set = a.set || De), Object.defineProperty(e, t, _t);\n}\nfunction tu(e) {\n return function() {\n var t = this._computedWatchers && this._computedWatchers[e];\n if (t)\n return t.dirty && t.evaluate(), ft.target && t.depend(), t.value;\n };\n}\nfunction au(e) {\n return function() {\n return e.call(this, this);\n };\n}\nfunction Wg(e, t) {\n e.$options.props;\n for (var a in t)\n e[a] = typeof t[a] != \"function\" ? De : Hl(t[a], e);\n}\nfunction Zg(e, t) {\n for (var a in t) {\n var n = t[a];\n if (ve(n))\n for (var s = 0; s < n.length; s++)\n Ho(e, a, n[s]);\n else\n Ho(e, a, n);\n }\n}\nfunction Ho(e, t, a, n) {\n return Qe(a) && (n = a, a = a.handler), typeof a == \"string\" && (a = e[a]), e.$watch(t, a, n);\n}\nfunction Kg(e) {\n var t = {};\n t.get = function() {\n return this._data;\n };\n var a = {};\n a.get = function() {\n return this._props;\n }, Object.defineProperty(e.prototype, \"$data\", t), Object.defineProperty(e.prototype, \"$props\", a), e.prototype.$set = bs, e.prototype.$delete = Cr, e.prototype.$watch = function(n, s, r) {\n var o = this;\n if (Qe(s))\n return Ho(o, n, s, r);\n r = r || {}, r.user = !0;\n var i = new cn(o, n, s, r);\n if (r.immediate) {\n var u = 'callback for immediate watcher \"'.concat(i.expression, '\"');\n Ba(), Et(s, o, [i.value], o, u), _a();\n }\n return function() {\n i.teardown();\n };\n };\n}\nvar Jg = 0;\nfunction Yg(e) {\n e.prototype._init = function(t) {\n var a = this;\n a._uid = Jg++, a._isVue = !0, a.__v_skip = !0, a._scope = new Ar(!0), a._scope._vm = !0, t && t._isComponent ? Xg(a, t) : a.$options = na(Br(a.constructor), t || {}, a), a._renderProxy = a, a._self = a, hg(a), cg(a), jp(a), ct(a, \"beforeCreate\", void 0, !1), Pg(a), $g(a), Eg(a), ct(a, \"created\"), a.$options.el && a.$mount(a.$options.el);\n };\n}\nfunction Xg(e, t) {\n var a = e.$options = Object.create(e.constructor.options), n = t._parentVnode;\n a.parent = t.parent, a._parentVnode = n;\n var s = n.componentOptions;\n a.propsData = s.propsData, a._parentListeners = s.listeners, a._renderChildren = s.children, a._componentTag = s.tag, t.render && (a.render = t.render, a.staticRenderFns = t.staticRenderFns);\n}\nfunction Br(e) {\n var t = e.options;\n if (e.super) {\n var a = Br(e.super), n = e.superOptions;\n if (a !== n) {\n e.superOptions = a;\n var s = Qg(e);\n s && Fe(e.extendOptions, s), t = e.options = na(a, e.extendOptions), t.name && (t.components[t.name] = e);\n }\n }\n return t;\n}\nfunction Qg(e) {\n var t, a = e.options, n = e.sealedOptions;\n for (var s in a)\n a[s] !== n[s] && (t || (t = {}), t[s] = a[s]);\n return t;\n}\nfunction Ne(e) {\n this._init(e);\n}\nYg(Ne), Kg(Ne), gg(Ne), fg(Ne), Lp(Ne);\nfunction eh(e) {\n e.use = function(t) {\n var a = this._installedPlugins || (this._installedPlugins = []);\n if (a.indexOf(t) > -1)\n return this;\n var n = Bo(arguments, 1);\n return n.unshift(this), Pe(t.install) ? t.install.apply(t, n) : Pe(t) && t.apply(null, n), a.push(t), this;\n };\n}\nfunction th(e) {\n e.mixin = function(t) {\n return this.options = na(this.options, t), this;\n };\n}\nfunction ah(e) {\n e.cid = 0;\n var t = 1;\n e.extend = function(a) {\n a = a || {};\n var n = this, s = n.cid, r = a._Ctor || (a._Ctor = {});\n if (r[s])\n return r[s];\n var o = as(a) || as(n.options), i = function(u) {\n this._init(u);\n };\n return i.prototype = Object.create(n.prototype), i.prototype.constructor = i, i.cid = t++, i.options = na(n.options, a), i.super = n, i.options.props && nh(i), i.options.computed && sh(i), i.extend = n.extend, i.mixin = n.mixin, i.use = n.use, ws.forEach(function(u) {\n i[u] = n[u];\n }), o && (i.options.components[o] = i), i.superOptions = n.options, i.extendOptions = a, i.sealedOptions = Fe({}, i.options), r[s] = i, i;\n };\n}\nfunction nh(e) {\n var t = e.options.props;\n for (var a in t)\n Dr(e.prototype, \"_props\", a);\n}\nfunction sh(e) {\n var t = e.options.computed;\n for (var a in t)\n Sc(e.prototype, a, t[a]);\n}\nfunction oh(e) {\n ws.forEach(function(t) {\n e[t] = function(a, n) {\n return n ? (t === \"component\" && Qe(n) && (n.name = n.name || a, n = this.options._base.extend(n)), t === \"directive\" && Pe(n) && (n = { bind: n, update: n }), this.options[t + \"s\"][a] = n, n) : this.options[t + \"s\"][a];\n };\n });\n}\nfunction nu(e) {\n return e && (as(e.Ctor.options) || e.tag);\n}\nfunction En(e, t) {\n return ve(e) ? e.indexOf(t) > -1 : typeof e == \"string\" ? e.split(\",\").indexOf(t) > -1 : xd(e) ? e.test(t) : !1;\n}\nfunction su(e, t) {\n var a = e.cache, n = e.keys, s = e._vnode;\n for (var r in a) {\n var o = a[r];\n if (o) {\n var i = o.name;\n i && !t(i) && qo(a, r, n, s);\n }\n }\n}\nfunction qo(e, t, a, n) {\n var s = e[t];\n s && (!n || s.tag !== n.tag) && s.componentInstance.$destroy(), e[t] = null, Mt(a, t);\n}\nvar ou = [String, RegExp, Array], rh = { name: \"keep-alive\", abstract: !0, props: { include: ou, exclude: ou, max: [String, Number] }, methods: { cacheVNode: function() {\n var e = this, t = e.cache, a = e.keys, n = e.vnodeToCache, s = e.keyToCache;\n if (n) {\n var r = n.tag, o = n.componentInstance, i = n.componentOptions;\n t[s] = { name: nu(i), tag: r, componentInstance: o }, a.push(s), this.max && a.length > parseInt(this.max) && qo(t, a[0], a, this._vnode), this.vnodeToCache = null;\n }\n} }, created: function() {\n this.cache = /* @__PURE__ */ Object.create(null), this.keys = [];\n}, destroyed: function() {\n for (var e in this.cache)\n qo(this.cache, e, this.keys);\n}, mounted: function() {\n var e = this;\n this.cacheVNode(), this.$watch(\"include\", function(t) {\n su(e, function(a) {\n return En(t, a);\n });\n }), this.$watch(\"exclude\", function(t) {\n su(e, function(a) {\n return !En(t, a);\n });\n });\n}, updated: function() {\n this.cacheVNode();\n}, render: function() {\n var e = this.$slots.default, t = fc(e), a = t && t.componentOptions;\n if (a) {\n var n = nu(a), s = this, r = s.include, o = s.exclude;\n if (r && (!n || !En(r, n)) || o && n && En(o, n))\n return t;\n var i = this, u = i.cache, l = i.keys, c = t.key == null ? a.Ctor.cid + (a.tag ? \"::\".concat(a.tag) : \"\") : t.key;\n u[c] ? (t.componentInstance = u[c].componentInstance, Mt(l, c), l.push(c)) : (this.vnodeToCache = t, this.keyToCache = c), t.data.keepAlive = !0;\n }\n return t || e && e[0];\n} }, ih = { KeepAlive: rh };\nfunction uh(e) {\n var t = {};\n t.get = function() {\n return rt;\n }, Object.defineProperty(e, \"config\", t), e.util = { warn: _g, extend: Fe, mergeOptions: na, defineReactive: Ut }, e.set = bs, e.delete = Cr, e.nextTick = Es, e.observable = function(a) {\n return kt(a), a;\n }, e.options = /* @__PURE__ */ Object.create(null), ws.forEach(function(a) {\n e.options[a + \"s\"] = /* @__PURE__ */ Object.create(null);\n }), e.options._base = e, Fe(e.options.components, ih), eh(e), th(e), ah(e), oh(e);\n}\nuh(Ne), Object.defineProperty(Ne.prototype, \"$isServer\", { get: Rt }), Object.defineProperty(Ne.prototype, \"$ssrContext\", { get: function() {\n return this.$vnode && this.$vnode.ssrContext;\n} }), Object.defineProperty(Ne, \"FunctionalRenderContext\", { value: Sr }), Ne.version = yc;\nvar lh = mt(\"style,class\"), ch = mt(\"input,textarea,option,select,progress\"), mh = function(e, t, a) {\n return a === \"value\" && ch(e) && t !== \"button\" || a === \"selected\" && e === \"option\" || a === \"checked\" && e === \"input\" || a === \"muted\" && e === \"video\";\n}, Tc = mt(\"contenteditable,draggable,spellcheck\"), dh = mt(\"events,caret,typing,plaintext-only\"), ph = function(e, t) {\n return ss(t) || t === \"false\" ? \"false\" : e === \"contenteditable\" && dh(t) ? t : \"true\";\n}, gh = mt(\"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,truespeed,typemustmatch,visible\"), Vo = \"http://www.w3.org/1999/xlink\", _r = function(e) {\n return e.charAt(5) === \":\" && e.slice(0, 5) === \"xlink\";\n}, Fc = function(e) {\n return _r(e) ? e.slice(6, e.length) : \"\";\n}, ss = function(e) {\n return e == null || e === !1;\n};\nfunction hh(e) {\n for (var t = e.data, a = e, n = e; O(n.componentInstance); )\n n = n.componentInstance._vnode, n && n.data && (t = ru(n.data, t));\n for (; O(a = a.parent); )\n a && a.data && (t = ru(t, a.data));\n return fh(t.staticClass, t.class);\n}\nfunction ru(e, t) {\n return { staticClass: Nr(e.staticClass, t.staticClass), class: O(e.class) ? [e.class, t.class] : t.class };\n}\nfunction fh(e, t) {\n return O(e) || O(t) ? Nr(e, Or(t)) : \"\";\n}\nfunction Nr(e, t) {\n return e ? t ? e + \" \" + t : e : t || \"\";\n}\nfunction Or(e) {\n return Array.isArray(e) ? vh(e) : Je(e) ? Ch(e) : typeof e == \"string\" ? e : \"\";\n}\nfunction vh(e) {\n for (var t = \"\", a, n = 0, s = e.length; n < s; n++)\n O(a = Or(e[n])) && a !== \"\" && (t && (t += \" \"), t += a);\n return t;\n}\nfunction Ch(e) {\n var t = \"\";\n for (var a in e)\n e[a] && (t && (t += \" \"), t += a);\n return t;\n}\nvar yh = { svg: \"http://www.w3.org/2000/svg\", math: \"http://www.w3.org/1998/Math/MathML\" }, Ah = mt(\"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\"), jr = mt(\"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), Dc = function(e) {\n return Ah(e) || jr(e);\n};\nfunction wh(e) {\n if (jr(e))\n return \"svg\";\n if (e === \"math\")\n return \"math\";\n}\nvar Pn = /* @__PURE__ */ Object.create(null);\nfunction bh(e) {\n if (!tt)\n return !0;\n if (Dc(e))\n return !1;\n if (e = e.toLowerCase(), Pn[e] != null)\n return Pn[e];\n var t = document.createElement(e);\n return e.indexOf(\"-\") > -1 ? Pn[e] = t.constructor === window.HTMLUnknownElement || t.constructor === window.HTMLElement : Pn[e] = /HTMLUnknownElement/.test(t.toString());\n}\nvar Wo = mt(\"text,number,password,search,email,tel,url\");\nfunction xh(e) {\n if (typeof e == \"string\") {\n var t = document.querySelector(e);\n return t || document.createElement(\"div\");\n } else\n return e;\n}\nfunction kh(e, t) {\n var a = document.createElement(e);\n return e !== \"select\" || t.data && t.data.attrs && t.data.attrs.multiple !== void 0 && a.setAttribute(\"multiple\", \"multiple\"), a;\n}\nfunction Eh(e, t) {\n return document.createElementNS(yh[e], t);\n}\nfunction Ph(e) {\n return document.createTextNode(e);\n}\nfunction Sh(e) {\n return document.createComment(e);\n}\nfunction Th(e, t, a) {\n e.insertBefore(t, a);\n}\nfunction Fh(e, t) {\n e.removeChild(t);\n}\nfunction Dh(e, t) {\n e.appendChild(t);\n}\nfunction Bh(e) {\n return e.parentNode;\n}\nfunction _h(e) {\n return e.nextSibling;\n}\nfunction Nh(e) {\n return e.tagName;\n}\nfunction Oh(e, t) {\n e.textContent = t;\n}\nfunction jh(e, t) {\n e.setAttribute(t, \"\");\n}\nvar Lh = Object.freeze({ __proto__: null, createElement: kh, createElementNS: Eh, createTextNode: Ph, createComment: Sh, insertBefore: Th, removeChild: Fh, appendChild: Dh, parentNode: Bh, nextSibling: _h, tagName: Nh, setTextContent: Oh, setStyleScope: jh }), zh = { create: function(e, t) {\n Aa(t);\n}, update: function(e, t) {\n e.data.ref !== t.data.ref && (Aa(e, !0), Aa(t));\n}, destroy: function(e) {\n Aa(e, !0);\n} };\nfunction Aa(e, t) {\n var a = e.data.ref;\n if (O(a)) {\n var n = e.context, s = e.componentInstance || e.elm, r = t ? null : s, o = t ? void 0 : s;\n if (Pe(a)) {\n Et(a, n, [r], n, \"template ref function\");\n return;\n }\n var i = e.data.refInFor, u = typeof a == \"string\" || typeof a == \"number\", l = We(a), c = n.$refs;\n if (u || l) {\n if (i) {\n var d = u ? c[a] : a.value;\n t ? ve(d) && Mt(d, s) : ve(d) ? d.includes(s) || d.push(s) : u ? (c[a] = [s], iu(n, a, c[a])) : a.value = [s];\n } else if (u) {\n if (t && c[a] !== s)\n return;\n c[a] = o, iu(n, a, r);\n } else if (l) {\n if (t && a.value !== s)\n return;\n a.value = r;\n }\n }\n }\n}\nfunction iu(e, t, a) {\n var n = e._setupState;\n n && Xe(n, t) && (We(n[t]) ? n[t].value = a : n[t] = a);\n}\nvar jt = new st(\"\", {}, []), Ua = [\"create\", \"activate\", \"update\", \"remove\", \"destroy\"];\nfunction Wt(e, t) {\n return e.key === t.key && e.asyncFactory === t.asyncFactory && (e.tag === t.tag && e.isComment === t.isComment && O(e.data) === O(t.data) && Uh(e, t) || _e(e.isAsyncPlaceholder) && pe(t.asyncFactory.error));\n}\nfunction Uh(e, t) {\n if (e.tag !== \"input\")\n return !0;\n var a, n = O(a = e.data) && O(a = a.attrs) && a.type, s = O(a = t.data) && O(a = a.attrs) && a.type;\n return n === s || Wo(n) && Wo(s);\n}\nfunction Mh(e, t, a) {\n var n, s, r = {};\n for (n = t; n <= a; ++n)\n s = e[n].key, O(s) && (r[s] = n);\n return r;\n}\nfunction Rh(e) {\n var t, a, n = {}, s = e.modules, r = e.nodeOps;\n for (t = 0; t < Ua.length; ++t)\n for (n[Ua[t]] = [], a = 0; a < s.length; ++a)\n O(s[a][Ua[t]]) && n[Ua[t]].push(s[a][Ua[t]]);\n function o(f) {\n return new st(r.tagName(f).toLowerCase(), {}, [], void 0, f);\n }\n function i(f, A) {\n function S() {\n --S.listeners === 0 && u(f);\n }\n return S.listeners = A, S;\n }\n function u(f) {\n var A = r.parentNode(f);\n O(A) && r.removeChild(A, f);\n }\n function l(f, A, S, D, R, B, F) {\n if (O(f.elm) && O(B) && (f = B[F] = Oo(f)), f.isRootInsert = !R, !c(f, A, S, D)) {\n var W = f.data, U = f.children, j = f.tag;\n O(j) ? (f.elm = f.ns ? r.createElementNS(f.ns, j) : r.createElement(j, f), v(f), h(f, U, A), O(W) && P(f, A), p(S, f.elm, D)) : _e(f.isComment) ? (f.elm = r.createComment(f.text), p(S, f.elm, D)) : (f.elm = r.createTextNode(f.text), p(S, f.elm, D));\n }\n }\n function c(f, A, S, D) {\n var R = f.data;\n if (O(R)) {\n var B = O(f.componentInstance) && R.keepAlive;\n if (O(R = R.hook) && O(R = R.init) && R(f, !1), O(f.componentInstance))\n return d(f, A), p(S, f.elm, D), _e(B) && m(f, A, S, D), !0;\n }\n }\n function d(f, A) {\n O(f.data.pendingInsert) && (A.push.apply(A, f.data.pendingInsert), f.data.pendingInsert = null), f.elm = f.componentInstance.$el, y(f) ? (P(f, A), v(f)) : (Aa(f), A.push(f));\n }\n function m(f, A, S, D) {\n for (var R, B = f; B.componentInstance; )\n if (B = B.componentInstance._vnode, O(R = B.data) && O(R = R.transition)) {\n for (R = 0; R < n.activate.length; ++R)\n n.activate[R](jt, B);\n A.push(B);\n break;\n }\n p(S, f.elm, D);\n }\n function p(f, A, S) {\n O(f) && (O(S) ? r.parentNode(S) === f && r.insertBefore(f, A, S) : r.appendChild(f, A));\n }\n function h(f, A, S) {\n if (ve(A))\n for (var D = 0; D < A.length; ++D)\n l(A[D], S, f.elm, null, !0, A, D);\n else\n on(f.text) && r.appendChild(f.elm, r.createTextNode(String(f.text)));\n }\n function y(f) {\n for (; f.componentInstance; )\n f = f.componentInstance._vnode;\n return O(f.tag);\n }\n function P(f, A) {\n for (var S = 0; S < n.create.length; ++S)\n n.create[S](jt, f);\n t = f.data.hook, O(t) && (O(t.create) && t.create(jt, f), O(t.insert) && A.push(f));\n }\n function v(f) {\n var A;\n if (O(A = f.fnScopeId))\n r.setStyleScope(f.elm, A);\n else\n for (var S = f; S; )\n O(A = S.context) && O(A = A.$options._scopeId) && r.setStyleScope(f.elm, A), S = S.parent;\n O(A = Xt) && A !== f.context && A !== f.fnContext && O(A = A.$options._scopeId) && r.setStyleScope(f.elm, A);\n }\n function g(f, A, S, D, R, B) {\n for (; D <= R; ++D)\n l(S[D], B, f, A, !1, S, D);\n }\n function b(f) {\n var A, S, D = f.data;\n if (O(D))\n for (O(A = D.hook) && O(A = A.destroy) && A(f), A = 0; A < n.destroy.length; ++A)\n n.destroy[A](f);\n if (O(A = f.children))\n for (S = 0; S < f.children.length; ++S)\n b(f.children[S]);\n }\n function x(f, A, S) {\n for (; A <= S; ++A) {\n var D = f[A];\n O(D) && (O(D.tag) ? (_(D), b(D)) : u(D.elm));\n }\n }\n function _(f, A) {\n if (O(A) || O(f.data)) {\n var S, D = n.remove.length + 1;\n for (O(A) ? A.listeners += D : A = i(f.elm, D), O(S = f.componentInstance) && O(S = S._vnode) && O(S.data) && _(S, A), S = 0; S < n.remove.length; ++S)\n n.remove[S](f, A);\n O(S = f.data.hook) && O(S = S.remove) ? S(f, A) : A();\n } else\n u(f.elm);\n }\n function w(f, A, S, D, R) {\n for (var B = 0, F = 0, W = A.length - 1, U = A[0], j = A[W], ee = S.length - 1, J = S[0], le = S[ee], ge, fe, $, z, te = !R; B <= W && F <= ee; )\n pe(U) ? U = A[++B] : pe(j) ? j = A[--W] : Wt(U, J) ? (H(U, J, D, S, F), U = A[++B], J = S[++F]) : Wt(j, le) ? (H(j, le, D, S, ee), j = A[--W], le = S[--ee]) : Wt(U, le) ? (H(U, le, D, S, ee), te && r.insertBefore(f, U.elm, r.nextSibling(j.elm)), U = A[++B], le = S[--ee]) : Wt(j, J) ? (H(j, J, D, S, F), te && r.insertBefore(f, j.elm, U.elm), j = A[--W], J = S[++F]) : (pe(ge) && (ge = Mh(A, B, W)), fe = O(J.key) ? ge[J.key] : L(J, A, B, W), pe(fe) ? l(J, D, f, U.elm, !1, S, F) : ($ = A[fe], Wt($, J) ? (H($, J, D, S, F), A[fe] = void 0, te && r.insertBefore(f, $.elm, U.elm)) : l(J, D, f, U.elm, !1, S, F)), J = S[++F]);\n B > W ? (z = pe(S[ee + 1]) ? null : S[ee + 1].elm, g(f, z, S, F, ee, D)) : F > ee && x(A, B, W);\n }\n function L(f, A, S, D) {\n for (var R = S; R < D; R++) {\n var B = A[R];\n if (O(B) && Wt(f, B))\n return R;\n }\n }\n function H(f, A, S, D, R, B) {\n if (f !== A) {\n O(A.elm) && O(D) && (A = D[R] = Oo(A));\n var F = A.elm = f.elm;\n if (_e(f.isAsyncPlaceholder)) {\n O(A.asyncFactory.resolved) ? T(f.elm, A, S) : A.isAsyncPlaceholder = !0;\n return;\n }\n if (_e(A.isStatic) && _e(f.isStatic) && A.key === f.key && (_e(A.isCloned) || _e(A.isOnce))) {\n A.componentInstance = f.componentInstance;\n return;\n }\n var W, U = A.data;\n O(U) && O(W = U.hook) && O(W = W.prepatch) && W(f, A);\n var j = f.children, ee = A.children;\n if (O(U) && y(A)) {\n for (W = 0; W < n.update.length; ++W)\n n.update[W](f, A);\n O(W = U.hook) && O(W = W.update) && W(f, A);\n }\n pe(A.text) ? O(j) && O(ee) ? j !== ee && w(F, j, ee, S, B) : O(ee) ? (O(f.text) && r.setTextContent(F, \"\"), g(F, null, ee, 0, ee.length - 1, S)) : O(j) ? x(j, 0, j.length - 1) : O(f.text) && r.setTextContent(F, \"\") : f.text !== A.text && r.setTextContent(F, A.text), O(U) && O(W = U.hook) && O(W = W.postpatch) && W(f, A);\n }\n }\n function C(f, A, S) {\n if (_e(S) && O(f.parent))\n f.parent.data.pendingInsert = A;\n else\n for (var D = 0; D < A.length; ++D)\n A[D].data.hook.insert(A[D]);\n }\n var E = mt(\"attrs,class,staticClass,staticStyle,key\");\n function T(f, A, S, D) {\n var R, B = A.tag, F = A.data, W = A.children;\n if (D = D || F && F.pre, A.elm = f, _e(A.isComment) && O(A.asyncFactory))\n return A.isAsyncPlaceholder = !0, !0;\n if (O(F) && (O(R = F.hook) && O(R = R.init) && R(A, !0), O(R = A.componentInstance)))\n return d(A, S), !0;\n if (O(B)) {\n if (O(W))\n if (!f.hasChildNodes())\n h(A, W, S);\n else if (O(R = F) && O(R = R.domProps) && O(R = R.innerHTML)) {\n if (R !== f.innerHTML)\n return !1;\n } else {\n for (var U = !0, j = f.firstChild, ee = 0; ee < W.length; ee++) {\n if (!j || !T(j, W[ee], S, D)) {\n U = !1;\n break;\n }\n j = j.nextSibling;\n }\n if (!U || j)\n return !1;\n }\n if (O(F)) {\n var J = !1;\n for (var le in F)\n if (!E(le)) {\n J = !0, P(A, S);\n break;\n }\n !J && F.class && Ea(F.class);\n }\n } else\n f.data !== A.text && (f.data = A.text);\n return !0;\n }\n return function(f, A, S, D) {\n if (pe(A)) {\n O(f) && b(f);\n return;\n }\n var R = !1, B = [];\n if (pe(f))\n R = !0, l(A, B);\n else {\n var F = O(f.nodeType);\n if (!F && Wt(f, A))\n H(f, A, B, null, null, D);\n else {\n if (F) {\n if (f.nodeType === 1 && f.hasAttribute(_i) && (f.removeAttribute(_i), S = !0), _e(S) && T(f, A, B))\n return C(A, B, !0), f;\n f = o(f);\n }\n var W = f.elm, U = r.parentNode(W);\n if (l(A, B, W._leaveCb ? null : U, r.nextSibling(W)), O(A.parent))\n for (var j = A.parent, ee = y(A); j; ) {\n for (var J = 0; J < n.destroy.length; ++J)\n n.destroy[J](j);\n if (j.elm = A.elm, ee) {\n for (var le = 0; le < n.create.length; ++le)\n n.create[le](jt, j);\n var ge = j.data.hook.insert;\n if (ge.merged)\n for (var fe = 1; fe < ge.fns.length; fe++)\n ge.fns[fe]();\n } else\n Aa(j);\n j = j.parent;\n }\n O(U) ? x([f], 0, 0) : O(f.tag) && b(f);\n }\n }\n return C(A, B, R), A.elm;\n };\n}\nvar $h = { create: ao, update: ao, destroy: function(e) {\n ao(e, jt);\n} };\nfunction ao(e, t) {\n (e.data.directives || t.data.directives) && Ih(e, t);\n}\nfunction Ih(e, t) {\n var a = e === jt, n = t === jt, s = uu(e.data.directives, e.context), r = uu(t.data.directives, t.context), o = [], i = [], u, l, c;\n for (u in r)\n l = s[u], c = r[u], l ? (c.oldValue = l.value, c.oldArg = l.arg, Ma(c, \"update\", t, e), c.def && c.def.componentUpdated && i.push(c)) : (Ma(c, \"bind\", t, e), c.def && c.def.inserted && o.push(c));\n if (o.length) {\n var d = function() {\n for (var m = 0; m < o.length; m++)\n Ma(o[m], \"inserted\", t, e);\n };\n a ? Ot(t, \"insert\", d) : d();\n }\n if (i.length && Ot(t, \"postpatch\", function() {\n for (var m = 0; m < i.length; m++)\n Ma(i[m], \"componentUpdated\", t, e);\n }), !a)\n for (u in s)\n r[u] || Ma(s[u], \"unbind\", e, e, n);\n}\nvar Gh = /* @__PURE__ */ Object.create(null);\nfunction uu(e, t) {\n var a = /* @__PURE__ */ Object.create(null);\n if (!e)\n return a;\n var n, s;\n for (n = 0; n < e.length; n++) {\n if (s = e[n], s.modifiers || (s.modifiers = Gh), a[Hh(s)] = s, t._setupState && t._setupState.__sfc) {\n var r = s.def || ns(t, \"_setupState\", \"v-\" + s.name);\n typeof r == \"function\" ? s.def = { bind: r, update: r } : s.def = r;\n }\n s.def = s.def || ns(t.$options, \"directives\", s.name);\n }\n return a;\n}\nfunction Hh(e) {\n return e.rawName || \"\".concat(e.name, \".\").concat(Object.keys(e.modifiers || {}).join(\".\"));\n}\nfunction Ma(e, t, a, n, s) {\n var r = e.def && e.def[t];\n if (r)\n try {\n r(a.elm, e, a, n, s);\n } catch (o) {\n aa(o, a.context, \"directive \".concat(e.name, \" \").concat(t, \" hook\"));\n }\n}\nvar qh = [zh, $h];\nfunction lu(e, t) {\n var a = t.componentOptions;\n if (!(O(a) && a.Ctor.options.inheritAttrs === !1) && !(pe(e.data.attrs) && pe(t.data.attrs))) {\n var n, s, r, o = t.elm, i = e.data.attrs || {}, u = t.data.attrs || {};\n (O(u.__ob__) || _e(u._v_attr_proxy)) && (u = t.data.attrs = Fe({}, u));\n for (n in u)\n s = u[n], r = i[n], r !== s && cu(o, n, s, t.data.pre);\n (Fa || Jl) && u.value !== i.value && cu(o, \"value\", u.value);\n for (n in i)\n pe(u[n]) && (_r(n) ? o.removeAttributeNS(Vo, Fc(n)) : Tc(n) || o.removeAttribute(n));\n }\n}\nfunction cu(e, t, a, n) {\n n || e.tagName.indexOf(\"-\") > -1 ? mu(e, t, a) : gh(t) ? ss(a) ? e.removeAttribute(t) : (a = t === \"allowfullscreen\" && e.tagName === \"EMBED\" ? \"true\" : t, e.setAttribute(t, a)) : Tc(t) ? e.setAttribute(t, ph(t, a)) : _r(t) ? ss(a) ? e.removeAttributeNS(Vo, Fc(t)) : e.setAttributeNS(Vo, t, a) : mu(e, t, a);\n}\nfunction mu(e, t, a) {\n if (ss(a))\n e.removeAttribute(t);\n else {\n if (Fa && !Da && e.tagName === \"TEXTAREA\" && t === \"placeholder\" && a !== \"\" && !e.__ieph) {\n var n = function(s) {\n s.stopImmediatePropagation(), e.removeEventListener(\"input\", n);\n };\n e.addEventListener(\"input\", n), e.__ieph = !0;\n }\n e.setAttribute(t, a);\n }\n}\nvar Vh = { create: lu, update: lu };\nfunction du(e, t) {\n var a = t.elm, n = t.data, s = e.data;\n if (!(pe(n.staticClass) && pe(n.class) && (pe(s) || pe(s.staticClass) && pe(s.class)))) {\n var r = hh(t), o = a._transitionClasses;\n O(o) && (r = Nr(r, Or(o))), r !== a._prevClass && (a.setAttribute(\"class\", r), a._prevClass = r);\n }\n}\nvar Wh = { create: du, update: du }, no = \"__r\", so = \"__c\";\nfunction Zh(e) {\n if (O(e[no])) {\n var t = Fa ? \"change\" : \"input\";\n e[t] = [].concat(e[no], e[t] || []), delete e[no];\n }\n O(e[so]) && (e.change = [].concat(e[so], e.change || []), delete e[so]);\n}\nvar an;\nfunction Kh(e, t, a) {\n var n = an;\n return function s() {\n var r = t.apply(null, arguments);\n r !== null && Bc(e, s, a, n);\n };\n}\nvar Jh = zo && !(Ni && Number(Ni[1]) <= 53);\nfunction Yh(e, t, a, n) {\n if (Jh) {\n var s = kc, r = t;\n t = r._wrapper = function(o) {\n if (o.target === o.currentTarget || o.timeStamp >= s || o.timeStamp <= 0 || o.target.ownerDocument !== document)\n return r.apply(this, arguments);\n };\n }\n an.addEventListener(e, t, Yl ? { capture: a, passive: n } : a);\n}\nfunction Bc(e, t, a, n) {\n (n || an).removeEventListener(e, t._wrapper || t, a);\n}\nfunction oo(e, t) {\n if (!(pe(e.data.on) && pe(t.data.on))) {\n var a = t.data.on || {}, n = e.data.on || {};\n an = t.elm || e.elm, Zh(a), lc(a, n, Yh, Bc, Kh, t.context), an = void 0;\n }\n}\nvar Xh = { create: oo, update: oo, destroy: function(e) {\n return oo(e, jt);\n} }, Sn;\nfunction pu(e, t) {\n if (!(pe(e.data.domProps) && pe(t.data.domProps))) {\n var a, n, s = t.elm, r = e.data.domProps || {}, o = t.data.domProps || {};\n (O(o.__ob__) || _e(o._v_attr_proxy)) && (o = t.data.domProps = Fe({}, o));\n for (a in r)\n a in o || (s[a] = \"\");\n for (a in o) {\n if (n = o[a], a === \"textContent\" || a === \"innerHTML\") {\n if (t.children && (t.children.length = 0), n === r[a])\n continue;\n s.childNodes.length === 1 && s.removeChild(s.childNodes[0]);\n }\n if (a === \"value\" && s.tagName !== \"PROGRESS\") {\n s._value = n;\n var i = pe(n) ? \"\" : String(n);\n Qh(s, i) && (s.value = i);\n } else if (a === \"innerHTML\" && jr(s.tagName) && pe(s.innerHTML)) {\n Sn = Sn || document.createElement(\"div\"), Sn.innerHTML = \"\".concat(n, \"\");\n for (var u = Sn.firstChild; s.firstChild; )\n s.removeChild(s.firstChild);\n for (; u.firstChild; )\n s.appendChild(u.firstChild);\n } else if (n !== r[a])\n try {\n s[a] = n;\n } catch {\n }\n }\n }\n}\nfunction Qh(e, t) {\n return !e.composing && (e.tagName === \"OPTION\" || ef(e, t) || tf(e, t));\n}\nfunction ef(e, t) {\n var a = !0;\n try {\n a = document.activeElement !== e;\n } catch {\n }\n return a && e.value !== t;\n}\nfunction tf(e, t) {\n var a = e.value, n = e._vModifiers;\n if (O(n)) {\n if (n.number)\n return Ja(a) !== Ja(t);\n if (n.trim)\n return a.trim() !== t.trim();\n }\n return a !== t;\n}\nvar af = { create: pu, update: pu }, nf = ra(function(e) {\n var t = {}, a = /;(?![^(]*\\))/g, n = /:(.+)/;\n return e.split(a).forEach(function(s) {\n if (s) {\n var r = s.split(n);\n r.length > 1 && (t[r[0].trim()] = r[1].trim());\n }\n }), t;\n});\nfunction ro(e) {\n var t = _c(e.style);\n return e.staticStyle ? Fe(e.staticStyle, t) : t;\n}\nfunction _c(e) {\n return Array.isArray(e) ? ql(e) : typeof e == \"string\" ? nf(e) : e;\n}\nfunction sf(e, t) {\n var a = {}, n;\n if (t)\n for (var s = e; s.componentInstance; )\n s = s.componentInstance._vnode, s && s.data && (n = ro(s.data)) && Fe(a, n);\n (n = ro(e.data)) && Fe(a, n);\n for (var r = e; r = r.parent; )\n r.data && (n = ro(r.data)) && Fe(a, n);\n return a;\n}\nvar of = /^--/, gu = /\\s*!important$/, hu = function(e, t, a) {\n if (of.test(t))\n e.style.setProperty(t, a);\n else if (gu.test(a))\n e.style.setProperty(rn(t), a.replace(gu, \"\"), \"important\");\n else {\n var n = rf(t);\n if (Array.isArray(a))\n for (var s = 0, r = a.length; s < r; s++)\n e.style[n] = a[s];\n else\n e.style[n] = a;\n }\n}, fu = [\"Webkit\", \"Moz\", \"ms\"], Tn, rf = ra(function(e) {\n if (Tn = Tn || document.createElement(\"div\").style, e = ea(e), e !== \"filter\" && e in Tn)\n return e;\n for (var t = e.charAt(0).toUpperCase() + e.slice(1), a = 0; a < fu.length; a++) {\n var n = fu[a] + t;\n if (n in Tn)\n return n;\n }\n});\nfunction vu(e, t) {\n var a = t.data, n = e.data;\n if (!(pe(a.staticStyle) && pe(a.style) && pe(n.staticStyle) && pe(n.style))) {\n var s, r, o = t.elm, i = n.staticStyle, u = n.normalizedStyle || n.style || {}, l = i || u, c = _c(t.data.style) || {};\n t.data.normalizedStyle = O(c.__ob__) ? Fe({}, c) : c;\n var d = sf(t, !0);\n for (r in l)\n pe(d[r]) && hu(o, r, \"\");\n for (r in d)\n s = d[r], s !== l[r] && hu(o, r, s ?? \"\");\n }\n}\nvar uf = { create: vu, update: vu }, Nc = /\\s+/;\nfunction Oc(e, t) {\n if (!(!t || !(t = t.trim())))\n if (e.classList)\n t.indexOf(\" \") > -1 ? t.split(Nc).forEach(function(n) {\n return e.classList.add(n);\n }) : e.classList.add(t);\n else {\n var a = \" \".concat(e.getAttribute(\"class\") || \"\", \" \");\n a.indexOf(\" \" + t + \" \") < 0 && e.setAttribute(\"class\", (a + t).trim());\n }\n}\nfunction jc(e, t) {\n if (!(!t || !(t = t.trim())))\n if (e.classList)\n t.indexOf(\" \") > -1 ? t.split(Nc).forEach(function(s) {\n return e.classList.remove(s);\n }) : e.classList.remove(t), e.classList.length || e.removeAttribute(\"class\");\n else {\n for (var a = \" \".concat(e.getAttribute(\"class\") || \"\", \" \"), n = \" \" + t + \" \"; a.indexOf(n) >= 0; )\n a = a.replace(n, \" \");\n a = a.trim(), a ? e.setAttribute(\"class\", a) : e.removeAttribute(\"class\");\n }\n}\nfunction Lc(e) {\n if (e) {\n if (typeof e == \"object\") {\n var t = {};\n return e.css !== !1 && Fe(t, Cu(e.name || \"v\")), Fe(t, e), t;\n } else if (typeof e == \"string\")\n return Cu(e);\n }\n}\nvar Cu = ra(function(e) {\n return { enterClass: \"\".concat(e, \"-enter\"), enterToClass: \"\".concat(e, \"-enter-to\"), enterActiveClass: \"\".concat(e, \"-enter-active\"), leaveClass: \"\".concat(e, \"-leave\"), leaveToClass: \"\".concat(e, \"-leave-to\"), leaveActiveClass: \"\".concat(e, \"-leave-active\") };\n}), zc = tt && !Da, va = \"transition\", io = \"animation\", qn = \"transition\", os = \"transitionend\", Zo = \"animation\", Uc = \"animationend\";\nzc && (window.ontransitionend === void 0 && window.onwebkittransitionend !== void 0 && (qn = \"WebkitTransition\", os = \"webkitTransitionEnd\"), window.onanimationend === void 0 && window.onwebkitanimationend !== void 0 && (Zo = \"WebkitAnimation\", Uc = \"webkitAnimationEnd\"));\nvar yu = tt ? window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : setTimeout : function(e) {\n return e();\n};\nfunction Mc(e) {\n yu(function() {\n yu(e);\n });\n}\nfunction Qt(e, t) {\n var a = e._transitionClasses || (e._transitionClasses = []);\n a.indexOf(t) < 0 && (a.push(t), Oc(e, t));\n}\nfunction bt(e, t) {\n e._transitionClasses && Mt(e._transitionClasses, t), jc(e, t);\n}\nfunction Rc(e, t, a) {\n var n = $c(e, t), s = n.type, r = n.timeout, o = n.propCount;\n if (!s)\n return a();\n var i = s === va ? os : Uc, u = 0, l = function() {\n e.removeEventListener(i, c), a();\n }, c = function(d) {\n d.target === e && ++u >= o && l();\n };\n setTimeout(function() {\n u < o && l();\n }, r + 1), e.addEventListener(i, c);\n}\nvar lf = /\\b(transform|all)(,|$)/;\nfunction $c(e, t) {\n var a = window.getComputedStyle(e), n = (a[qn + \"Delay\"] || \"\").split(\", \"), s = (a[qn + \"Duration\"] || \"\").split(\", \"), r = Au(n, s), o = (a[Zo + \"Delay\"] || \"\").split(\", \"), i = (a[Zo + \"Duration\"] || \"\").split(\", \"), u = Au(o, i), l, c = 0, d = 0;\n t === va ? r > 0 && (l = va, c = r, d = s.length) : t === io ? u > 0 && (l = io, c = u, d = i.length) : (c = Math.max(r, u), l = c > 0 ? r > u ? va : io : null, d = l ? l === va ? s.length : i.length : 0);\n var m = l === va && lf.test(a[qn + \"Property\"]);\n return { type: l, timeout: c, propCount: d, hasTransform: m };\n}\nfunction Au(e, t) {\n for (; e.length < t.length; )\n e = e.concat(e);\n return Math.max.apply(null, t.map(function(a, n) {\n return wu(a) + wu(e[n]);\n }));\n}\nfunction wu(e) {\n return Number(e.slice(0, -1).replace(\",\", \".\")) * 1e3;\n}\nfunction Ko(e, t) {\n var a = e.elm;\n O(a._leaveCb) && (a._leaveCb.cancelled = !0, a._leaveCb());\n var n = Lc(e.data.transition);\n if (!pe(n) && !(O(a._enterCb) || a.nodeType !== 1)) {\n for (var s = n.css, r = n.type, o = n.enterClass, i = n.enterToClass, u = n.enterActiveClass, l = n.appearClass, c = n.appearToClass, d = n.appearActiveClass, m = n.beforeEnter, p = n.enter, h = n.afterEnter, y = n.enterCancelled, P = n.beforeAppear, v = n.appear, g = n.afterAppear, b = n.appearCancelled, x = n.duration, _ = Xt, w = Xt.$vnode; w && w.parent; )\n _ = w.context, w = w.parent;\n var L = !_._isMounted || !e.isRootInsert;\n if (!(L && !v && v !== \"\")) {\n var H = L && l ? l : o, C = L && d ? d : u, E = L && c ? c : i, T = L && P || m, f = L && Pe(v) ? v : p, A = L && g || h, S = L && b || y, D = Ja(Je(x) ? x.enter : x), R = s !== !1 && !Da, B = Lr(f), F = a._enterCb = Kn(function() {\n R && (bt(a, E), bt(a, C)), F.cancelled ? (R && bt(a, H), S && S(a)) : A && A(a), a._enterCb = null;\n });\n e.data.show || Ot(e, \"insert\", function() {\n var W = a.parentNode, U = W && W._pending && W._pending[e.key];\n U && U.tag === e.tag && U.elm._leaveCb && U.elm._leaveCb(), f && f(a, F);\n }), T && T(a), R && (Qt(a, H), Qt(a, C), Mc(function() {\n bt(a, H), F.cancelled || (Qt(a, E), B || (Gc(D) ? setTimeout(F, D) : Rc(a, r, F)));\n })), e.data.show && (t && t(), f && f(a, F)), !R && !B && F();\n }\n }\n}\nfunction Ic(e, t) {\n var a = e.elm;\n O(a._enterCb) && (a._enterCb.cancelled = !0, a._enterCb());\n var n = Lc(e.data.transition);\n if (pe(n) || a.nodeType !== 1)\n return t();\n if (O(a._leaveCb))\n return;\n var s = n.css, r = n.type, o = n.leaveClass, i = n.leaveToClass, u = n.leaveActiveClass, l = n.beforeLeave, c = n.leave, d = n.afterLeave, m = n.leaveCancelled, p = n.delayLeave, h = n.duration, y = s !== !1 && !Da, P = Lr(c), v = Ja(Je(h) ? h.leave : h), g = a._leaveCb = Kn(function() {\n a.parentNode && a.parentNode._pending && (a.parentNode._pending[e.key] = null), y && (bt(a, i), bt(a, u)), g.cancelled ? (y && bt(a, o), m && m(a)) : (t(), d && d(a)), a._leaveCb = null;\n });\n p ? p(b) : b();\n function b() {\n g.cancelled || (!e.data.show && a.parentNode && ((a.parentNode._pending || (a.parentNode._pending = {}))[e.key] = e), l && l(a), y && (Qt(a, o), Qt(a, u), Mc(function() {\n bt(a, o), g.cancelled || (Qt(a, i), P || (Gc(v) ? setTimeout(g, v) : Rc(a, r, g)));\n })), c && c(a, g), !y && !P && g());\n }\n}\nfunction Gc(e) {\n return typeof e == \"number\" && !isNaN(e);\n}\nfunction Lr(e) {\n if (pe(e))\n return !1;\n var t = e.fns;\n return O(t) ? Lr(Array.isArray(t) ? t[0] : t) : (e._length || e.length) > 1;\n}\nfunction bu(e, t) {\n t.data.show !== !0 && Ko(t);\n}\nvar cf = tt ? { create: bu, activate: bu, remove: function(e, t) {\n e.data.show !== !0 ? Ic(e, t) : t();\n} } : {}, mf = [Vh, Wh, Xh, af, uf, cf], df = mf.concat(qh), pf = Rh({ nodeOps: Lh, modules: df });\nDa && document.addEventListener(\"selectionchange\", function() {\n var e = document.activeElement;\n e && e.vmodel && zr(e, \"input\");\n});\nvar Hc = { inserted: function(e, t, a, n) {\n a.tag === \"select\" ? (n.elm && !n.elm._vOptions ? Ot(a, \"postpatch\", function() {\n Hc.componentUpdated(e, t, a);\n }) : xu(e, t, a.context), e._vOptions = [].map.call(e.options, rs)) : (a.tag === \"textarea\" || Wo(e.type)) && (e._vModifiers = t.modifiers, t.modifiers.lazy || (e.addEventListener(\"compositionstart\", gf), e.addEventListener(\"compositionend\", Pu), e.addEventListener(\"change\", Pu), Da && (e.vmodel = !0)));\n}, componentUpdated: function(e, t, a) {\n if (a.tag === \"select\") {\n xu(e, t, a.context);\n var n = e._vOptions, s = e._vOptions = [].map.call(e.options, rs);\n if (s.some(function(o, i) {\n return !ta(o, n[i]);\n })) {\n var r = e.multiple ? t.value.some(function(o) {\n return Eu(o, s);\n }) : t.value !== t.oldValue && Eu(t.value, s);\n r && zr(e, \"change\");\n }\n }\n} };\nfunction xu(e, t, a) {\n ku(e, t), (Fa || Jl) && setTimeout(function() {\n ku(e, t);\n }, 0);\n}\nfunction ku(e, t, a) {\n var n = t.value, s = e.multiple;\n if (!(s && !Array.isArray(n))) {\n for (var r, o, i = 0, u = e.options.length; i < u; i++)\n if (o = e.options[i], s)\n r = Wl(n, rs(o)) > -1, o.selected !== r && (o.selected = r);\n else if (ta(rs(o), n)) {\n e.selectedIndex !== i && (e.selectedIndex = i);\n return;\n }\n s || (e.selectedIndex = -1);\n }\n}\nfunction Eu(e, t) {\n return t.every(function(a) {\n return !ta(a, e);\n });\n}\nfunction rs(e) {\n return \"_value\" in e ? e._value : e.value;\n}\nfunction gf(e) {\n e.target.composing = !0;\n}\nfunction Pu(e) {\n e.target.composing && (e.target.composing = !1, zr(e.target, \"input\"));\n}\nfunction zr(e, t) {\n var a = document.createEvent(\"HTMLEvents\");\n a.initEvent(t, !0, !0), e.dispatchEvent(a);\n}\nfunction Jo(e) {\n return e.componentInstance && (!e.data || !e.data.transition) ? Jo(e.componentInstance._vnode) : e;\n}\nvar hf = { bind: function(e, t, a) {\n var n = t.value;\n a = Jo(a);\n var s = a.data && a.data.transition, r = e.__vOriginalDisplay = e.style.display === \"none\" ? \"\" : e.style.display;\n n && s ? (a.data.show = !0, Ko(a, function() {\n e.style.display = r;\n })) : e.style.display = n ? r : \"none\";\n}, update: function(e, t, a) {\n var n = t.value, s = t.oldValue;\n if (!n != !s) {\n a = Jo(a);\n var r = a.data && a.data.transition;\n r ? (a.data.show = !0, n ? Ko(a, function() {\n e.style.display = e.__vOriginalDisplay;\n }) : Ic(a, function() {\n e.style.display = \"none\";\n })) : e.style.display = n ? e.__vOriginalDisplay : \"none\";\n }\n}, unbind: function(e, t, a, n, s) {\n s || (e.style.display = e.__vOriginalDisplay);\n} }, ff = { model: Hc, show: hf }, qc = { 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] };\nfunction Yo(e) {\n var t = e && e.componentOptions;\n return t && t.Ctor.options.abstract ? Yo(fc(t.children)) : e;\n}\nfunction Vc(e) {\n var t = {}, a = e.$options;\n for (var n in a.propsData)\n t[n] = e[n];\n var s = a._parentListeners;\n for (var n in s)\n t[ea(n)] = s[n];\n return t;\n}\nfunction Su(e, t) {\n if (/\\d-keep-alive$/.test(t.tag))\n return e(\"keep-alive\", { props: t.componentOptions.propsData });\n}\nfunction vf(e) {\n for (; e = e.parent; )\n if (e.data.transition)\n return !0;\n}\nfunction Cf(e, t) {\n return t.key === e.key && t.tag === e.tag;\n}\nvar yf = function(e) {\n return e.tag || Xa(e);\n}, Af = function(e) {\n return e.name === \"show\";\n}, wf = { name: \"transition\", props: qc, abstract: !0, render: function(e) {\n var t = this, a = this.$slots.default;\n if (a && (a = a.filter(yf), !!a.length)) {\n var n = this.mode, s = a[0];\n if (vf(this.$vnode))\n return s;\n var r = Yo(s);\n if (!r)\n return s;\n if (this._leaving)\n return Su(e, s);\n var o = \"__transition-\".concat(this._uid, \"-\");\n r.key = r.key == null ? r.isComment ? o + \"comment\" : o + r.tag : on(r.key) ? String(r.key).indexOf(o) === 0 ? r.key : o + r.key : r.key;\n var i = (r.data || (r.data = {})).transition = Vc(this), u = this._vnode, l = Yo(u);\n if (r.data.directives && r.data.directives.some(Af) && (r.data.show = !0), l && l.data && !Cf(r, l) && !Xa(l) && !(l.componentInstance && l.componentInstance._vnode.isComment)) {\n var c = l.data.transition = Fe({}, i);\n if (n === \"out-in\")\n return this._leaving = !0, Ot(c, \"afterLeave\", function() {\n t._leaving = !1, t.$forceUpdate();\n }), Su(e, s);\n if (n === \"in-out\") {\n if (Xa(r))\n return u;\n var d, m = function() {\n d();\n };\n Ot(i, \"afterEnter\", m), Ot(i, \"enterCancelled\", m), Ot(c, \"delayLeave\", function(p) {\n d = p;\n });\n }\n }\n return s;\n }\n} }, Wc = Fe({ tag: String, moveClass: String }, qc);\ndelete Wc.mode;\nvar bf = { props: Wc, beforeMount: function() {\n var e = this, t = this._update;\n this._update = function(a, n) {\n var s = wc(e);\n e.__patch__(e._vnode, e.kept, !1, !0), e._vnode = e.kept, s(), t.call(e, a, n);\n };\n}, render: function(e) {\n for (var t = this.tag || this.$vnode.data.tag || \"span\", a = /* @__PURE__ */ Object.create(null), n = this.prevChildren = this.children, s = this.$slots.default || [], r = this.children = [], o = Vc(this), i = 0; i < s.length; i++) {\n var u = s[i];\n u.tag && u.key != null && String(u.key).indexOf(\"__vlist\") !== 0 && (r.push(u), a[u.key] = u, (u.data || (u.data = {})).transition = o);\n }\n if (n) {\n for (var l = [], c = [], i = 0; i < n.length; i++) {\n var u = n[i];\n u.data.transition = o, u.data.pos = u.elm.getBoundingClientRect(), a[u.key] ? l.push(u) : c.push(u);\n }\n this.kept = e(t, null, l), this.removed = c;\n }\n return e(t, null, r);\n}, updated: function() {\n var e = this.prevChildren, t = this.moveClass || (this.name || \"v\") + \"-move\";\n !e.length || !this.hasMove(e[0].elm, t) || (e.forEach(xf), e.forEach(kf), e.forEach(Ef), this._reflow = document.body.offsetHeight, e.forEach(function(a) {\n if (a.data.moved) {\n var n = a.elm, s = n.style;\n Qt(n, t), s.transform = s.WebkitTransform = s.transitionDuration = \"\", n.addEventListener(os, n._moveCb = function r(o) {\n o && o.target !== n || (!o || /transform$/.test(o.propertyName)) && (n.removeEventListener(os, r), n._moveCb = null, bt(n, t));\n });\n }\n }));\n}, methods: { hasMove: function(e, t) {\n if (!zc)\n return !1;\n if (this._hasMove)\n return this._hasMove;\n var a = e.cloneNode();\n e._transitionClasses && e._transitionClasses.forEach(function(s) {\n jc(a, s);\n }), Oc(a, t), a.style.display = \"none\", this.$el.appendChild(a);\n var n = $c(a);\n return this.$el.removeChild(a), this._hasMove = n.hasTransform;\n} } };\nfunction xf(e) {\n e.elm._moveCb && e.elm._moveCb(), e.elm._enterCb && e.elm._enterCb();\n}\nfunction kf(e) {\n e.data.newPos = e.elm.getBoundingClientRect();\n}\nfunction Ef(e) {\n var t = e.data.pos, a = e.data.newPos, n = t.left - a.left, s = t.top - a.top;\n if (n || s) {\n e.data.moved = !0;\n var r = e.elm.style;\n r.transform = r.WebkitTransform = \"translate(\".concat(n, \"px,\").concat(s, \"px)\"), r.transitionDuration = \"0s\";\n }\n}\nvar Pf = { Transition: wf, TransitionGroup: bf };\nNe.config.mustUseProp = mh, Ne.config.isReservedTag = Dc, Ne.config.isReservedAttr = lh, Ne.config.getTagNamespace = wh, Ne.config.isUnknownElement = bh, Fe(Ne.options.directives, ff), Fe(Ne.options.components, Pf), Ne.prototype.__patch__ = tt ? pf : De, Ne.prototype.$mount = function(e, t) {\n return e = e && tt ? xh(e) : void 0, vg(this, e, t);\n}, tt && setTimeout(function() {\n rt.devtools && Jn && Jn.emit(\"init\", Ne);\n}, 0);\nconst Sf = Object.freeze(Object.defineProperty({ __proto__: null, EffectScope: Ar, computed: ap, customRef: Jd, default: Ne, defineAsyncComponent: Wp, defineComponent: ug, del: Cr, effectScope: ip, getCurrentInstance: zd, getCurrentScope: lp, h: Ip, inject: dp, isProxy: Gd, isReactive: Yt, isReadonly: ia, isRef: We, isShallow: Xn, markRaw: Hd, mergeDefaults: Op, nextTick: Es, onActivated: tg, onBeforeMount: Kp, onBeforeUnmount: Qp, onBeforeUpdate: Yp, onDeactivated: ag, onErrorCaptured: ig, onMounted: Jp, onRenderTracked: sg, onRenderTriggered: og, onScopeDispose: cp, onServerPrefetch: ng, onUnmounted: eg, onUpdated: Xp, provide: mp, proxyRefs: Kd, reactive: Id, readonly: oc, ref: qd, set: bs, shallowReactive: yr, shallowReadonly: tp, shallowRef: Vd, toRaw: ac, toRef: sc, toRefs: Yd, triggerRef: Wd, unref: Zd, useAttrs: _p, useCssModule: qp, useCssVars: Vp, useListeners: Np, useSlots: Bp, version: yc, watch: rp, watchEffect: sp, watchPostEffect: ic, watchSyncEffect: op }, Symbol.toStringTag, { value: \"Module\" }));\nvar Ia = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof global < \"u\" ? global : typeof self < \"u\" ? self : {};\nfunction mn(e) {\n return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, \"default\") ? e.default : e;\n}\nfunction Ps(e) {\n if (e.__esModule)\n return e;\n var t = e.default;\n if (typeof t == \"function\") {\n var a = function n() {\n return this instanceof n ? Reflect.construct(t, arguments, this.constructor) : t.apply(this, arguments);\n };\n a.prototype = t.prototype;\n } else\n a = {};\n return Object.defineProperty(a, \"__esModule\", { value: !0 }), Object.keys(e).forEach(function(n) {\n var s = Object.getOwnPropertyDescriptor(e, n);\n Object.defineProperty(a, n, s.get ? s : { enumerable: !0, get: function() {\n return e[n];\n } });\n }), a;\n}\nvar Zc = { exports: {} };\nconst Kc = Ps(Sf);\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 723: (o, i, u) => {\n u.d(i, { Z: () => d });\n var l = u(2734), c = u.n(l);\n const d = { before: function() {\n this.$slots.default && this.text.trim() !== \"\" || (c().util.warn(\"\".concat(this.$options.name, \" cannot be empty and requires a meaningful text content\"), this), this.$destroy(), this.$el.remove());\n }, beforeUpdate: function() {\n this.text = this.getText();\n }, data: function() {\n return { text: this.getText() };\n }, computed: { isLongText: function() {\n return this.text && this.text.trim().length > 20;\n } }, methods: { getText: function() {\n return this.$slots.default ? this.$slots.default[0].text.trim() : \"\";\n } } };\n }, 9156: (o, i, u) => {\n u.d(i, { Z: () => d });\n var l = u(723), c = u(6021);\n const d = { mixins: [l.Z], props: { icon: { type: String, default: \"\" }, name: { type: String, default: \"\" }, title: { type: String, default: \"\" }, closeAfterClick: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: \"\" }, ariaHidden: { type: Boolean, default: null } }, emits: [\"click\"], computed: { isIconUrl: function() {\n try {\n return new URL(this.icon);\n } catch {\n return !1;\n }\n } }, methods: { onClick: function(m) {\n if (this.$emit(\"click\", m), this.closeAfterClick) {\n var p = (0, c.Z)(this, \"NcActions\");\n p && p.closeMenu && p.closeMenu(!1);\n }\n } } };\n }, 6021: (o, i, u) => {\n u.d(i, { Z: () => l });\n const l = function(c, d) {\n for (var m = c.$parent; m; ) {\n if (m.$options.name === d)\n return m;\n m = m.$parent;\n }\n };\n }, 9776: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-38d8193f]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-38d8193f]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action--disabled[data-v-38d8193f]{pointer-events:none;opacity:.5}.action--disabled[data-v-38d8193f]:hover,.action--disabled[data-v-38d8193f]:focus{cursor:default;opacity:.5}.action--disabled *[data-v-38d8193f]{opacity:1 !important}.action-button[data-v-38d8193f]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-button>span[data-v-38d8193f]{cursor:pointer;white-space:nowrap}.action-button__icon[data-v-38d8193f]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-button[data-v-38d8193f] .material-design-icon{width:44px;height:44px;opacity:1}.action-button[data-v-38d8193f] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-button p[data-v-38d8193f]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-button__longtext[data-v-38d8193f]{cursor:pointer;white-space:pre-wrap}.action-button__name[data-v-38d8193f]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/assets/action.scss\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAMF,mCACC,mBAAA,CACA,UCMiB,CDLjB,kFACC,cAAA,CACA,UCGgB,CDDjB,qCACC,oBAAA,CAOF,gCACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,qCACC,cAAA,CACA,kBAAA,CAGD,sCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,sDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,iFACC,qBAAA,CAKF,kCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,0CACC,cAAA,CAEA,oBAAA,CAGD,sCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of \\`\\\\n\\`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 4216: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n }, 2734: (o) => {\n o.exports = Kc;\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => C });\n const o = { name: \"NcActionButton\", mixins: [s(9156).Z], props: { disabled: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null } }, computed: { isFocusable: function() {\n return !this.disabled;\n } } };\n var i = s(3379), u = s.n(i), l = s(7795), c = s.n(l), d = s(569), m = s.n(d), p = s(3565), h = s.n(p), y = s(9216), P = s.n(y), v = s(4589), g = s.n(v), b = s(9776), x = {};\n x.styleTagTransform = g(), x.setAttributes = h(), x.insert = m().bind(null, \"head\"), x.domAPI = c(), x.insertStyleElement = P(), u()(b.Z, x), b.Z && b.Z.locals && b.Z.locals;\n var _ = s(1900), w = s(4216), L = s.n(w), H = (0, _.Z)(o, function() {\n var E = this, T = E._self._c;\n return T(\"li\", { staticClass: \"action\", class: { \"action--disabled\": E.disabled }, attrs: { role: \"presentation\" } }, [T(\"button\", { staticClass: \"action-button\", class: { focusable: E.isFocusable }, attrs: { \"aria-label\": E.ariaLabel, title: E.title, role: \"menuitem\", type: \"button\" }, on: { click: E.onClick } }, [E._t(\"icon\", function() {\n return [T(\"span\", { staticClass: \"action-button__icon\", class: [E.isIconUrl ? \"action-button__icon--url\" : E.icon], style: { backgroundImage: E.isIconUrl ? \"url(\".concat(E.icon, \")\") : null }, attrs: { \"aria-hidden\": E.ariaHidden } })];\n }), E._v(\" \"), E.name ? T(\"p\", [T(\"strong\", { staticClass: \"action-button__name\" }, [E._v(`\n\t\t\t\t` + E._s(E.name) + `\n\t\t\t`)]), E._v(\" \"), T(\"br\"), E._v(\" \"), T(\"span\", { staticClass: \"action-button__longtext\", domProps: { textContent: E._s(E.text) } })]) : E.isLongText ? T(\"p\", { staticClass: \"action-button__longtext\", domProps: { textContent: E._s(E.text) } }) : T(\"span\", { staticClass: \"action-button__text\" }, [E._v(E._s(E.text))]), E._v(\" \"), E._e()], 2)]);\n }, [], !1, null, \"38d8193f\", null);\n typeof L() == \"function\" && L()(H);\n const C = H.exports;\n })(), r;\n })());\n})(Zc);\nvar Tf = Zc.exports;\nconst Ff = mn(Tf);\nvar Jc = { exports: {} }, uo = {}, lo, Tu;\nfunction Df() {\n if (Tu)\n return lo;\n Tu = 1;\n var e = \"Expected a function\", t = \"__lodash_hash_undefined__\", a = 1 / 0, n = \"[object Function]\", s = \"[object GeneratorFunction]\", r = \"[object Symbol]\", o = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/, i = /^\\w*$/, u = /^\\./, l = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g, c = /[\\\\^$.*+?()[\\]{}|]/g, d = /\\\\(\\\\)?/g, m = /^\\[object .+?Constructor\\]$/, p = typeof Ia == \"object\" && Ia && Ia.Object === Object && Ia, h = typeof self == \"object\" && self && self.Object === Object && self, y = p || h || Function(\"return this\")();\n function P(N, K) {\n return N?.[K];\n }\n function v(N) {\n var K = !1;\n if (N != null && typeof N.toString != \"function\")\n try {\n K = !!(N + \"\");\n } catch {\n }\n return K;\n }\n var g = Array.prototype, b = Function.prototype, x = Object.prototype, _ = y[\"__core-js_shared__\"], w = function() {\n var N = /[^.]+$/.exec(_ && _.keys && _.keys.IE_PROTO || \"\");\n return N ? \"Symbol(src)_1.\" + N : \"\";\n }(), L = b.toString, H = x.hasOwnProperty, C = x.toString, E = RegExp(\"^\" + L.call(H).replace(c, \"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, \"$1.*?\") + \"$\"), T = y.Symbol, f = g.splice, A = xe(y, \"Map\"), S = xe(Object, \"create\"), D = T ? T.prototype : void 0, R = D ? D.toString : void 0;\n function B(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function F() {\n this.__data__ = S ? S(null) : {};\n }\n function W(N) {\n return this.has(N) && delete this.__data__[N];\n }\n function U(N) {\n var K = this.__data__;\n if (S) {\n var ue = K[N];\n return ue === t ? void 0 : ue;\n }\n return H.call(K, N) ? K[N] : void 0;\n }\n function j(N) {\n var K = this.__data__;\n return S ? K[N] !== void 0 : H.call(K, N);\n }\n function ee(N, K) {\n var ue = this.__data__;\n return ue[N] = S && K === void 0 ? t : K, this;\n }\n B.prototype.clear = F, B.prototype.delete = W, B.prototype.get = U, B.prototype.has = j, B.prototype.set = ee;\n function J(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function le() {\n this.__data__ = [];\n }\n function ge(N) {\n var K = this.__data__, ue = Oe(K, N);\n if (ue < 0)\n return !1;\n var Te = K.length - 1;\n return ue == Te ? K.pop() : f.call(K, ue, 1), !0;\n }\n function fe(N) {\n var K = this.__data__, ue = Oe(K, N);\n return ue < 0 ? void 0 : K[ue][1];\n }\n function $(N) {\n return Oe(this.__data__, N) > -1;\n }\n function z(N, K) {\n var ue = this.__data__, Te = Oe(ue, N);\n return Te < 0 ? ue.push([N, K]) : ue[Te][1] = K, this;\n }\n J.prototype.clear = le, J.prototype.delete = ge, J.prototype.get = fe, J.prototype.has = $, J.prototype.set = z;\n function te(N) {\n var K = -1, ue = N ? N.length : 0;\n for (this.clear(); ++K < ue; ) {\n var Te = N[K];\n this.set(Te[0], Te[1]);\n }\n }\n function he() {\n this.__data__ = { hash: new B(), map: new (A || J)(), string: new B() };\n }\n function ye(N) {\n return re(this, N).delete(N);\n }\n function Be(N) {\n return re(this, N).get(N);\n }\n function je(N) {\n return re(this, N).has(N);\n }\n function Re(N, K) {\n return re(this, N).set(N, K), this;\n }\n te.prototype.clear = he, te.prototype.delete = ye, te.prototype.get = Be, te.prototype.has = je, te.prototype.set = Re;\n function Oe(N, K) {\n for (var ue = N.length; ue--; )\n if (I(N[ue][0], K))\n return ue;\n return -1;\n }\n function me(N, K) {\n K = Se(K, N) ? [K] : de(K);\n for (var ue = 0, Te = K.length; N != null && ue < Te; )\n N = N[ce(K[ue++])];\n return ue && ue == Te ? N : void 0;\n }\n function oe(N) {\n if (!se(N) || q(N))\n return !1;\n var K = ie(N) || v(N) ? E : m;\n return K.test(ne(N));\n }\n function Y(N) {\n if (typeof N == \"string\")\n return N;\n if (Ae(N))\n return R ? R.call(N) : \"\";\n var K = N + \"\";\n return K == \"0\" && 1 / N == -a ? \"-0\" : K;\n }\n function de(N) {\n return Z(N) ? N : X(N);\n }\n function re(N, K) {\n var ue = N.__data__;\n return V(K) ? ue[typeof K == \"string\" ? \"string\" : \"hash\"] : ue.map;\n }\n function xe(N, K) {\n var ue = P(N, K);\n return oe(ue) ? ue : void 0;\n }\n function Se(N, K) {\n if (Z(N))\n return !1;\n var ue = typeof N;\n return ue == \"number\" || ue == \"symbol\" || ue == \"boolean\" || N == null || Ae(N) ? !0 : i.test(N) || !o.test(N) || K != null && N in Object(K);\n }\n function V(N) {\n var K = typeof N;\n return K == \"string\" || K == \"number\" || K == \"symbol\" || K == \"boolean\" ? N !== \"__proto__\" : N === null;\n }\n function q(N) {\n return !!w && w in N;\n }\n var X = M(function(N) {\n N = Le(N);\n var K = [];\n return u.test(N) && K.push(\"\"), N.replace(l, function(ue, Te, Gt, Ht) {\n K.push(Gt ? Ht.replace(d, \"$1\") : Te || ue);\n }), K;\n });\n function ce(N) {\n if (typeof N == \"string\" || Ae(N))\n return N;\n var K = N + \"\";\n return K == \"0\" && 1 / N == -a ? \"-0\" : K;\n }\n function ne(N) {\n if (N != null) {\n try {\n return L.call(N);\n } catch {\n }\n try {\n return N + \"\";\n } catch {\n }\n }\n return \"\";\n }\n function M(N, K) {\n if (typeof N != \"function\" || K && typeof K != \"function\")\n throw new TypeError(e);\n var ue = function() {\n var Te = arguments, Gt = K ? K.apply(this, Te) : Te[0], Ht = ue.cache;\n if (Ht.has(Gt))\n return Ht.get(Gt);\n var at = N.apply(this, Te);\n return ue.cache = Ht.set(Gt, at), at;\n };\n return ue.cache = new (M.Cache || te)(), ue;\n }\n M.Cache = te;\n function I(N, K) {\n return N === K || N !== N && K !== K;\n }\n var Z = Array.isArray;\n function ie(N) {\n var K = se(N) ? C.call(N) : \"\";\n return K == n || K == s;\n }\n function se(N) {\n var K = typeof N;\n return !!N && (K == \"object\" || K == \"function\");\n }\n function Ce(N) {\n return !!N && typeof N == \"object\";\n }\n function Ae(N) {\n return typeof N == \"symbol\" || Ce(N) && C.call(N) == r;\n }\n function Le(N) {\n return N == null ? \"\" : Y(N);\n }\n function ke(N, K, ue) {\n var Te = N == null ? void 0 : me(N, K);\n return Te === void 0 ? ue : Te;\n }\n return lo = ke, lo;\n}\nvar Fu, Du;\nfunction Bf() {\n return Du || (Du = 1, Fu = { ach: { name: \"Acholi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, af: { name: \"Afrikaans\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ak: { name: \"Akan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, am: { name: \"Amharic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, an: { name: \"Aragonese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ar: { name: \"Arabic\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }, { plural: 2, sample: 2 }, { plural: 3, sample: 3 }, { plural: 4, sample: 11 }, { plural: 5, sample: 100 }], nplurals: 6, pluralsText: \"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)\", pluralsFunc: function(e) {\n return e === 0 ? 0 : e === 1 ? 1 : e === 2 ? 2 : e % 100 >= 3 && e % 100 <= 10 ? 3 : e % 100 >= 11 ? 4 : 5;\n } }, arn: { name: \"Mapudungun\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, ast: { name: \"Asturian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ay: { name: \"Aymará\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, az: { name: \"Azerbaijani\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, be: { name: \"Belarusian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, bg: { name: \"Bulgarian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bn: { name: \"Bengali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bo: { name: \"Tibetan\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, br: { name: \"Breton\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, brx: { name: \"Bodo\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, bs: { name: \"Bosnian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, ca: { name: \"Catalan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, cgg: { name: \"Chiga\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, cs: { name: \"Czech\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e >= 2 && e <= 4 ? 1 : 2;\n } }, csb: { name: \"Kashubian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, cy: { name: \"Welsh\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 8 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e !== 8 && e !== 11 ? 2 : 3;\n } }, da: { name: \"Danish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, de: { name: \"German\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, doi: { name: \"Dogri\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, dz: { name: \"Dzongkha\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, el: { name: \"Greek\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, en: { name: \"English\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, eo: { name: \"Esperanto\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, es: { name: \"Spanish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, et: { name: \"Estonian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, eu: { name: \"Basque\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fa: { name: \"Persian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ff: { name: \"Fulah\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fi: { name: \"Finnish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fil: { name: \"Filipino\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, fo: { name: \"Faroese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fr: { name: \"French\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, fur: { name: \"Friulian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, fy: { name: \"Frisian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ga: { name: \"Irish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 7 }, { plural: 4, sample: 11 }], nplurals: 5, pluralsText: \"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e < 7 ? 2 : e < 11 ? 3 : 4;\n } }, gd: { name: \"Scottish Gaelic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 20 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 || e === 11 ? 0 : e === 2 || e === 12 ? 1 : e > 2 && e < 20 ? 2 : 3;\n } }, gl: { name: \"Galician\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, gu: { name: \"Gujarati\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, gun: { name: \"Gun\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, ha: { name: \"Hausa\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, he: { name: \"Hebrew\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hi: { name: \"Hindi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hne: { name: \"Chhattisgarhi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hr: { name: \"Croatian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, hu: { name: \"Hungarian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, hy: { name: \"Armenian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, id: { name: \"Indonesian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, is: { name: \"Icelandic\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)\", pluralsFunc: function(e) {\n return e % 10 !== 1 || e % 100 === 11;\n } }, it: { name: \"Italian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ja: { name: \"Japanese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, jbo: { name: \"Lojban\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, jv: { name: \"Javanese\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 0)\", pluralsFunc: function(e) {\n return e !== 0;\n } }, ka: { name: \"Georgian\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, kk: { name: \"Kazakh\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, km: { name: \"Khmer\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, kn: { name: \"Kannada\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ko: { name: \"Korean\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ku: { name: \"Kurdish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, kw: { name: \"Cornish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 4 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 2 ? 1 : e === 3 ? 2 : 3;\n } }, ky: { name: \"Kyrgyz\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, lb: { name: \"Letzeburgesch\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ln: { name: \"Lingala\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, lo: { name: \"Lao\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, lt: { name: \"Lithuanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 10 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, lv: { name: \"Latvian\", examples: [{ plural: 2, sample: 0 }, { plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e !== 0 ? 1 : 2;\n } }, mai: { name: \"Maithili\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mfe: { name: \"Mauritian Creole\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mg: { name: \"Malagasy\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mi: { name: \"Maori\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, mk: { name: \"Macedonian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)\", pluralsFunc: function(e) {\n return e === 1 || e % 10 === 1 ? 0 : 1;\n } }, ml: { name: \"Malayalam\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mn: { name: \"Mongolian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mni: { name: \"Manipuri\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, mnk: { name: \"Mandinka\", examples: [{ plural: 0, sample: 0 }, { plural: 1, sample: 1 }, { plural: 2, sample: 2 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 0 ? 0 : e === 1 ? 1 : 2;\n } }, mr: { name: \"Marathi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ms: { name: \"Malay\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, mt: { name: \"Maltese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 11 }, { plural: 3, sample: 20 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 0 || e % 100 > 1 && e % 100 < 11 ? 1 : e % 100 > 10 && e % 100 < 20 ? 2 : 3;\n } }, my: { name: \"Burmese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, nah: { name: \"Nahuatl\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nap: { name: \"Neapolitan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nb: { name: \"Norwegian Bokmal\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ne: { name: \"Nepali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nl: { name: \"Dutch\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nn: { name: \"Norwegian Nynorsk\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, no: { name: \"Norwegian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, nso: { name: \"Northern Sotho\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, oc: { name: \"Occitan\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, or: { name: \"Oriya\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pa: { name: \"Punjabi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pap: { name: \"Papiamento\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pl: { name: \"Polish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, pms: { name: \"Piemontese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ps: { name: \"Pashto\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, pt: { name: \"Portuguese\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, rm: { name: \"Romansh\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ro: { name: \"Romanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 20 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e === 0 || e % 100 > 0 && e % 100 < 20 ? 1 : 2;\n } }, ru: { name: \"Russian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, rw: { name: \"Kinyarwanda\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sah: { name: \"Yakut\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, sat: { name: \"Santali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sco: { name: \"Scots\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sd: { name: \"Sindhi\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, se: { name: \"Northern Sami\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, si: { name: \"Sinhala\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sk: { name: \"Slovak\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)\", pluralsFunc: function(e) {\n return e === 1 ? 0 : e >= 2 && e <= 4 ? 1 : 2;\n } }, sl: { name: \"Slovenian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 3 }, { plural: 3, sample: 5 }], nplurals: 4, pluralsText: \"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)\", pluralsFunc: function(e) {\n return e % 100 === 1 ? 0 : e % 100 === 2 ? 1 : e % 100 === 3 || e % 100 === 4 ? 2 : 3;\n } }, so: { name: \"Somali\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, son: { name: \"Songhay\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sq: { name: \"Albanian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sr: { name: \"Serbian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, su: { name: \"Sundanese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, sv: { name: \"Swedish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, sw: { name: \"Swahili\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, ta: { name: \"Tamil\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, te: { name: \"Telugu\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, tg: { name: \"Tajik\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, th: { name: \"Thai\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ti: { name: \"Tigrinya\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, tk: { name: \"Turkmen\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, tr: { name: \"Turkish\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, tt: { name: \"Tatar\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, ug: { name: \"Uyghur\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, uk: { name: \"Ukrainian\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }, { plural: 2, sample: 5 }], nplurals: 3, pluralsText: \"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)\", pluralsFunc: function(e) {\n return e % 10 === 1 && e % 100 !== 11 ? 0 : e % 10 >= 2 && e % 10 <= 4 && (e % 100 < 10 || e % 100 >= 20) ? 1 : 2;\n } }, ur: { name: \"Urdu\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, uz: { name: \"Uzbek\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, vi: { name: \"Vietnamese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, wa: { name: \"Walloon\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n > 1)\", pluralsFunc: function(e) {\n return e > 1;\n } }, wo: { name: \"Wolof\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } }, yo: { name: \"Yoruba\", examples: [{ plural: 0, sample: 1 }, { plural: 1, sample: 2 }], nplurals: 2, pluralsText: \"nplurals = 2; plural = (n !== 1)\", pluralsFunc: function(e) {\n return e !== 1;\n } }, zh: { name: \"Chinese\", examples: [{ plural: 0, sample: 1 }], nplurals: 1, pluralsText: \"nplurals = 1; plural = 0\", pluralsFunc: function() {\n return 0;\n } } }), Fu;\n}\nvar co, Bu;\nfunction _f() {\n if (Bu)\n return co;\n Bu = 1;\n var e = Df(), t = Bf();\n co = a;\n function a(n) {\n n = n || {}, this.catalogs = {}, this.locale = \"\", this.domain = \"messages\", this.listeners = [], this.sourceLocale = \"\", n.sourceLocale && (typeof n.sourceLocale == \"string\" ? this.sourceLocale = n.sourceLocale : this.warn(\"The `sourceLocale` option should be a string\")), this.debug = \"debug\" in n && n.debug === !0;\n }\n return a.prototype.on = function(n, s) {\n this.listeners.push({ eventName: n, callback: s });\n }, a.prototype.off = function(n, s) {\n this.listeners = this.listeners.filter(function(r) {\n return !(r.eventName === n && r.callback === s);\n });\n }, a.prototype.emit = function(n, s) {\n for (var r = 0; r < this.listeners.length; r++) {\n var o = this.listeners[r];\n o.eventName === n && o.callback(s);\n }\n }, a.prototype.warn = function(n) {\n this.debug && console.warn(n), this.emit(\"error\", new Error(n));\n }, a.prototype.addTranslations = function(n, s, r) {\n this.catalogs[n] || (this.catalogs[n] = {}), this.catalogs[n][s] = r;\n }, a.prototype.setLocale = function(n) {\n if (typeof n != \"string\") {\n this.warn(\"You called setLocale() with an argument of type \" + typeof n + \". The locale must be a string.\");\n return;\n }\n n.trim() === \"\" && this.warn(\"You called setLocale() with an empty value, which makes little sense.\"), n !== this.sourceLocale && !this.catalogs[n] && this.warn('You called setLocale() with \"' + n + '\", but no translations for that locale has been added.'), this.locale = n;\n }, a.prototype.setTextDomain = function(n) {\n if (typeof n != \"string\") {\n this.warn(\"You called setTextDomain() with an argument of type \" + typeof n + \". The domain must be a string.\");\n return;\n }\n n.trim() === \"\" && this.warn(\"You called setTextDomain() with an empty `domain` value.\"), this.domain = n;\n }, a.prototype.gettext = function(n) {\n return this.dnpgettext(this.domain, \"\", n);\n }, a.prototype.dgettext = function(n, s) {\n return this.dnpgettext(n, \"\", s);\n }, a.prototype.ngettext = function(n, s, r) {\n return this.dnpgettext(this.domain, \"\", n, s, r);\n }, a.prototype.dngettext = function(n, s, r, o) {\n return this.dnpgettext(n, \"\", s, r, o);\n }, a.prototype.pgettext = function(n, s) {\n return this.dnpgettext(this.domain, n, s);\n }, a.prototype.dpgettext = function(n, s, r) {\n return this.dnpgettext(n, s, r);\n }, a.prototype.npgettext = function(n, s, r, o) {\n return this.dnpgettext(this.domain, n, s, r, o);\n }, a.prototype.dnpgettext = function(n, s, r, o, i) {\n var u = r, l, c;\n if (s = s || \"\", !isNaN(i) && i !== 1 && (u = o || r), l = this._getTranslation(n, s, r), l) {\n if (typeof i == \"number\") {\n var d = t[a.getLanguageCode(this.locale)].pluralsFunc;\n c = d(i), typeof c == \"boolean\" && (c = c ? 1 : 0);\n } else\n c = 0;\n return l.msgstr[c] || u;\n } else\n (!this.sourceLocale || this.locale !== this.sourceLocale) && this.warn('No translation was found for msgid \"' + r + '\" in msgctxt \"' + s + '\" and domain \"' + n + '\"');\n return u;\n }, a.prototype.getComment = function(n, s, r) {\n var o;\n return o = this._getTranslation(n, s, r), o ? o.comments || {} : {};\n }, a.prototype._getTranslation = function(n, s, r) {\n return s = s || \"\", e(this.catalogs, [this.locale, n, \"translations\", s, r]);\n }, a.getLanguageCode = function(n) {\n return n.split(/[\\-_]/)[0].toLowerCase();\n }, a.prototype.textdomain = function(n) {\n this.debug && console.warn(`textdomain(domain) was used to set locales in node-gettext v1. Make sure you are using it for domains, and switch to setLocale(locale) if you are not.\n\n To read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x\n\nThis warning will be removed in the final 2.0.0`), this.setTextDomain(n);\n }, a.prototype.setlocale = function(n) {\n this.setLocale(n);\n }, a.prototype.addTextdomain = function() {\n console.error(`addTextdomain() is deprecated.\n\n* To add translations, use addTranslations()\n* To set the default domain, use setTextDomain() (or its alias textdomain())\n\nTo read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x`);\n }, co;\n}\nvar _u = { exports: {} }, Nu;\nfunction Nf() {\n return Nu || (Nu = 1, function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(Ia, function() {\n const { entries: a, setPrototypeOf: n, isFrozen: s, getPrototypeOf: r, getOwnPropertyDescriptor: o } = Object;\n let { freeze: i, seal: u, create: l } = Object, { apply: c, construct: d } = typeof Reflect < \"u\" && Reflect;\n c || (c = function(oe, Y, de) {\n return oe.apply(Y, de);\n }), i || (i = function(oe) {\n return oe;\n }), u || (u = function(oe) {\n return oe;\n }), d || (d = function(oe, Y) {\n return new oe(...Y);\n });\n const m = L(Array.prototype.forEach), p = L(Array.prototype.pop), h = L(Array.prototype.push), y = L(String.prototype.toLowerCase), P = L(String.prototype.toString), v = L(String.prototype.match), g = L(String.prototype.replace), b = L(String.prototype.indexOf), x = L(String.prototype.trim), _ = L(RegExp.prototype.test), w = H(TypeError);\n function L(oe) {\n return function(Y) {\n for (var de = arguments.length, re = new Array(de > 1 ? de - 1 : 0), xe = 1; xe < de; xe++)\n re[xe - 1] = arguments[xe];\n return c(oe, Y, re);\n };\n }\n function H(oe) {\n return function() {\n for (var Y = arguments.length, de = new Array(Y), re = 0; re < Y; re++)\n de[re] = arguments[re];\n return d(oe, de);\n };\n }\n function C(oe, Y, de) {\n var re;\n de = (re = de) !== null && re !== void 0 ? re : y, n && n(oe, null);\n let xe = Y.length;\n for (; xe--; ) {\n let Se = Y[xe];\n if (typeof Se == \"string\") {\n const V = de(Se);\n V !== Se && (s(Y) || (Y[xe] = V), Se = V);\n }\n oe[Se] = !0;\n }\n return oe;\n }\n function E(oe) {\n const Y = l(null);\n for (const [de, re] of a(oe))\n Y[de] = re;\n return Y;\n }\n function T(oe, Y) {\n for (; oe !== null; ) {\n const re = o(oe, Y);\n if (re) {\n if (re.get)\n return L(re.get);\n if (typeof re.value == \"function\")\n return L(re.value);\n }\n oe = r(oe);\n }\n function de(re) {\n return console.warn(\"fallback value for\", re), null;\n }\n return de;\n }\n const f = i([\"a\", \"abbr\", \"acronym\", \"address\", \"area\", \"article\", \"aside\", \"audio\", \"b\", \"bdi\", \"bdo\", \"big\", \"blink\", \"blockquote\", \"body\", \"br\", \"button\", \"canvas\", \"caption\", \"center\", \"cite\", \"code\", \"col\", \"colgroup\", \"content\", \"data\", \"datalist\", \"dd\", \"decorator\", \"del\", \"details\", \"dfn\", \"dialog\", \"dir\", \"div\", \"dl\", \"dt\", \"element\", \"em\", \"fieldset\", \"figcaption\", \"figure\", \"font\", \"footer\", \"form\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\", \"head\", \"header\", \"hgroup\", \"hr\", \"html\", \"i\", \"img\", \"input\", \"ins\", \"kbd\", \"label\", \"legend\", \"li\", \"main\", \"map\", \"mark\", \"marquee\", \"menu\", \"menuitem\", \"meter\", \"nav\", \"nobr\", \"ol\", \"optgroup\", \"option\", \"output\", \"p\", \"picture\", \"pre\", \"progress\", \"q\", \"rp\", \"rt\", \"ruby\", \"s\", \"samp\", \"section\", \"select\", \"shadow\", \"small\", \"source\", \"spacer\", \"span\", \"strike\", \"strong\", \"style\", \"sub\", \"summary\", \"sup\", \"table\", \"tbody\", \"td\", \"template\", \"textarea\", \"tfoot\", \"th\", \"thead\", \"time\", \"tr\", \"track\", \"tt\", \"u\", \"ul\", \"var\", \"video\", \"wbr\"]), A = i([\"svg\", \"a\", \"altglyph\", \"altglyphdef\", \"altglyphitem\", \"animatecolor\", \"animatemotion\", \"animatetransform\", \"circle\", \"clippath\", \"defs\", \"desc\", \"ellipse\", \"filter\", \"font\", \"g\", \"glyph\", \"glyphref\", \"hkern\", \"image\", \"line\", \"lineargradient\", \"marker\", \"mask\", \"metadata\", \"mpath\", \"path\", \"pattern\", \"polygon\", \"polyline\", \"radialgradient\", \"rect\", \"stop\", \"style\", \"switch\", \"symbol\", \"text\", \"textpath\", \"title\", \"tref\", \"tspan\", \"view\", \"vkern\"]), S = i([\"feBlend\", \"feColorMatrix\", \"feComponentTransfer\", \"feComposite\", \"feConvolveMatrix\", \"feDiffuseLighting\", \"feDisplacementMap\", \"feDistantLight\", \"feDropShadow\", \"feFlood\", \"feFuncA\", \"feFuncB\", \"feFuncG\", \"feFuncR\", \"feGaussianBlur\", \"feImage\", \"feMerge\", \"feMergeNode\", \"feMorphology\", \"feOffset\", \"fePointLight\", \"feSpecularLighting\", \"feSpotLight\", \"feTile\", \"feTurbulence\"]), D = i([\"animate\", \"color-profile\", \"cursor\", \"discard\", \"font-face\", \"font-face-format\", \"font-face-name\", \"font-face-src\", \"font-face-uri\", \"foreignobject\", \"hatch\", \"hatchpath\", \"mesh\", \"meshgradient\", \"meshpatch\", \"meshrow\", \"missing-glyph\", \"script\", \"set\", \"solidcolor\", \"unknown\", \"use\"]), R = i([\"math\", \"menclose\", \"merror\", \"mfenced\", \"mfrac\", \"mglyph\", \"mi\", \"mlabeledtr\", \"mmultiscripts\", \"mn\", \"mo\", \"mover\", \"mpadded\", \"mphantom\", \"mroot\", \"mrow\", \"ms\", \"mspace\", \"msqrt\", \"mstyle\", \"msub\", \"msup\", \"msubsup\", \"mtable\", \"mtd\", \"mtext\", \"mtr\", \"munder\", \"munderover\", \"mprescripts\"]), B = i([\"maction\", \"maligngroup\", \"malignmark\", \"mlongdiv\", \"mscarries\", \"mscarry\", \"msgroup\", \"mstack\", \"msline\", \"msrow\", \"semantics\", \"annotation\", \"annotation-xml\", \"mprescripts\", \"none\"]), F = i([\"#text\"]), W = i([\"accept\", \"action\", \"align\", \"alt\", \"autocapitalize\", \"autocomplete\", \"autopictureinpicture\", \"autoplay\", \"background\", \"bgcolor\", \"border\", \"capture\", \"cellpadding\", \"cellspacing\", \"checked\", \"cite\", \"class\", \"clear\", \"color\", \"cols\", \"colspan\", \"controls\", \"controlslist\", \"coords\", \"crossorigin\", \"datetime\", \"decoding\", \"default\", \"dir\", \"disabled\", \"disablepictureinpicture\", \"disableremoteplayback\", \"download\", \"draggable\", \"enctype\", \"enterkeyhint\", \"face\", \"for\", \"headers\", \"height\", \"hidden\", \"high\", \"href\", \"hreflang\", \"id\", \"inputmode\", \"integrity\", \"ismap\", \"kind\", \"label\", \"lang\", \"list\", \"loading\", \"loop\", \"low\", \"max\", \"maxlength\", \"media\", \"method\", \"min\", \"minlength\", \"multiple\", \"muted\", \"name\", \"nonce\", \"noshade\", \"novalidate\", \"nowrap\", \"open\", \"optimum\", \"pattern\", \"placeholder\", \"playsinline\", \"poster\", \"preload\", \"pubdate\", \"radiogroup\", \"readonly\", \"rel\", \"required\", \"rev\", \"reversed\", \"role\", \"rows\", \"rowspan\", \"spellcheck\", \"scope\", \"selected\", \"shape\", \"size\", \"sizes\", \"span\", \"srclang\", \"start\", \"src\", \"srcset\", \"step\", \"style\", \"summary\", \"tabindex\", \"title\", \"translate\", \"type\", \"usemap\", \"valign\", \"value\", \"width\", \"xmlns\", \"slot\"]), U = i([\"accent-height\", \"accumulate\", \"additive\", \"alignment-baseline\", \"ascent\", \"attributename\", \"attributetype\", \"azimuth\", \"basefrequency\", \"baseline-shift\", \"begin\", \"bias\", \"by\", \"class\", \"clip\", \"clippathunits\", \"clip-path\", \"clip-rule\", \"color\", \"color-interpolation\", \"color-interpolation-filters\", \"color-profile\", \"color-rendering\", \"cx\", \"cy\", \"d\", \"dx\", \"dy\", \"diffuseconstant\", \"direction\", \"display\", \"divisor\", \"dur\", \"edgemode\", \"elevation\", \"end\", \"fill\", \"fill-opacity\", \"fill-rule\", \"filter\", \"filterunits\", \"flood-color\", \"flood-opacity\", \"font-family\", \"font-size\", \"font-size-adjust\", \"font-stretch\", \"font-style\", \"font-variant\", \"font-weight\", \"fx\", \"fy\", \"g1\", \"g2\", \"glyph-name\", \"glyphref\", \"gradientunits\", \"gradienttransform\", \"height\", \"href\", \"id\", \"image-rendering\", \"in\", \"in2\", \"k\", \"k1\", \"k2\", \"k3\", \"k4\", \"kerning\", \"keypoints\", \"keysplines\", \"keytimes\", \"lang\", \"lengthadjust\", \"letter-spacing\", \"kernelmatrix\", \"kernelunitlength\", \"lighting-color\", \"local\", \"marker-end\", \"marker-mid\", \"marker-start\", \"markerheight\", \"markerunits\", \"markerwidth\", \"maskcontentunits\", \"maskunits\", \"max\", \"mask\", \"media\", \"method\", \"mode\", \"min\", \"name\", \"numoctaves\", \"offset\", \"operator\", \"opacity\", \"order\", \"orient\", \"orientation\", \"origin\", \"overflow\", \"paint-order\", \"path\", \"pathlength\", \"patterncontentunits\", \"patterntransform\", \"patternunits\", \"points\", \"preservealpha\", \"preserveaspectratio\", \"primitiveunits\", \"r\", \"rx\", \"ry\", \"radius\", \"refx\", \"refy\", \"repeatcount\", \"repeatdur\", \"restart\", \"result\", \"rotate\", \"scale\", \"seed\", \"shape-rendering\", \"specularconstant\", \"specularexponent\", \"spreadmethod\", \"startoffset\", \"stddeviation\", \"stitchtiles\", \"stop-color\", \"stop-opacity\", \"stroke-dasharray\", \"stroke-dashoffset\", \"stroke-linecap\", \"stroke-linejoin\", \"stroke-miterlimit\", \"stroke-opacity\", \"stroke\", \"stroke-width\", \"style\", \"surfacescale\", \"systemlanguage\", \"tabindex\", \"targetx\", \"targety\", \"transform\", \"transform-origin\", \"text-anchor\", \"text-decoration\", \"text-rendering\", \"textlength\", \"type\", \"u1\", \"u2\", \"unicode\", \"values\", \"viewbox\", \"visibility\", \"version\", \"vert-adv-y\", \"vert-origin-x\", \"vert-origin-y\", \"width\", \"word-spacing\", \"wrap\", \"writing-mode\", \"xchannelselector\", \"ychannelselector\", \"x\", \"x1\", \"x2\", \"xmlns\", \"y\", \"y1\", \"y2\", \"z\", \"zoomandpan\"]), j = i([\"accent\", \"accentunder\", \"align\", \"bevelled\", \"close\", \"columnsalign\", \"columnlines\", \"columnspan\", \"denomalign\", \"depth\", \"dir\", \"display\", \"displaystyle\", \"encoding\", \"fence\", \"frame\", \"height\", \"href\", \"id\", \"largeop\", \"length\", \"linethickness\", \"lspace\", \"lquote\", \"mathbackground\", \"mathcolor\", \"mathsize\", \"mathvariant\", \"maxsize\", \"minsize\", \"movablelimits\", \"notation\", \"numalign\", \"open\", \"rowalign\", \"rowlines\", \"rowspacing\", \"rowspan\", \"rspace\", \"rquote\", \"scriptlevel\", \"scriptminsize\", \"scriptsizemultiplier\", \"selection\", \"separator\", \"separators\", \"stretchy\", \"subscriptshift\", \"supscriptshift\", \"symmetric\", \"voffset\", \"width\", \"xmlns\"]), ee = i([\"xlink:href\", \"xml:id\", \"xlink:title\", \"xml:space\", \"xmlns:xlink\"]), J = u(/\\{\\{[\\w\\W]*|[\\w\\W]*\\}\\}/gm), le = u(/<%[\\w\\W]*|[\\w\\W]*%>/gm), ge = u(/\\${[\\w\\W]*}/gm), fe = u(/^data-[\\-\\w.\\u00B7-\\uFFFF]/), $ = u(/^aria-[\\-\\w]+$/), z = u(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\\-]+(?:[^a-z+.\\-:]|$))/i), te = u(/^(?:\\w+script|data):/i), he = u(/[\\u0000-\\u0020\\u00A0\\u1680\\u180E\\u2000-\\u2029\\u205F\\u3000]/g), ye = u(/^html$/i);\n var Be = Object.freeze({ __proto__: null, MUSTACHE_EXPR: J, ERB_EXPR: le, TMPLIT_EXPR: ge, DATA_ATTR: fe, ARIA_ATTR: $, IS_ALLOWED_URI: z, IS_SCRIPT_OR_DATA: te, ATTR_WHITESPACE: he, DOCTYPE_NAME: ye });\n const je = () => typeof window > \"u\" ? null : window, Re = function(oe, Y) {\n if (typeof oe != \"object\" || typeof oe.createPolicy != \"function\")\n return null;\n let de = null;\n const re = \"data-tt-policy-suffix\";\n Y && Y.hasAttribute(re) && (de = Y.getAttribute(re));\n const xe = \"dompurify\" + (de ? \"#\" + de : \"\");\n try {\n return oe.createPolicy(xe, { createHTML(Se) {\n return Se;\n }, createScriptURL(Se) {\n return Se;\n } });\n } catch {\n return console.warn(\"TrustedTypes policy \" + xe + \" could not be created.\"), null;\n }\n };\n function Oe() {\n let oe = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : je();\n const Y = (k) => Oe(k);\n if (Y.version = \"3.0.5\", Y.removed = [], !oe || !oe.document || oe.document.nodeType !== 9)\n return Y.isSupported = !1, Y;\n const de = oe.document, re = de.currentScript;\n let { document: xe } = oe;\n const { DocumentFragment: Se, HTMLTemplateElement: V, Node: q, Element: X, NodeFilter: ce, NamedNodeMap: ne = oe.NamedNodeMap || oe.MozNamedAttrMap, HTMLFormElement: M, DOMParser: I, trustedTypes: Z } = oe, ie = X.prototype, se = T(ie, \"cloneNode\"), Ce = T(ie, \"nextSibling\"), Ae = T(ie, \"childNodes\"), Le = T(ie, \"parentNode\");\n if (typeof V == \"function\") {\n const k = xe.createElement(\"template\");\n k.content && k.content.ownerDocument && (xe = k.content.ownerDocument);\n }\n let ke, N = \"\";\n const { implementation: K, createNodeIterator: ue, createDocumentFragment: Te, getElementsByTagName: Gt } = xe, { importNode: Ht } = de;\n let at = {};\n Y.isSupported = typeof a == \"function\" && typeof Le == \"function\" && K && K.createHTMLDocument !== void 0;\n const { MUSTACHE_EXPR: js, ERB_EXPR: Ls, TMPLIT_EXPR: zs, DATA_ATTR: Om, ARIA_ATTR: jm, IS_SCRIPT_OR_DATA: Lm, ATTR_WHITESPACE: Vr } = Be;\n let { IS_ALLOWED_URI: Wr } = Be, Ge = null;\n const Zr = C({}, [...f, ...A, ...S, ...R, ...F]);\n let He = null;\n const Kr = C({}, [...W, ...U, ...j, ...ee]);\n let ze = Object.seal(Object.create(null, { tagNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, attributeNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, allowCustomizedBuiltInElements: { writable: !0, configurable: !1, enumerable: !0, value: !1 } })), Oa = null, Us = null, Jr = !0, Ms = !0, Yr = !1, Xr = !0, ua = !1, qt = !1, Rs = !1, $s = !1, la = !1, gn = !1, hn = !1, Qr = !0, ei = !1;\n const zm = \"user-content-\";\n let Is = !0, ja = !1, ca = {}, ma = null;\n const ti = C({}, [\"annotation-xml\", \"audio\", \"colgroup\", \"desc\", \"foreignobject\", \"head\", \"iframe\", \"math\", \"mi\", \"mn\", \"mo\", \"ms\", \"mtext\", \"noembed\", \"noframes\", \"noscript\", \"plaintext\", \"script\", \"style\", \"svg\", \"template\", \"thead\", \"title\", \"video\", \"xmp\"]);\n let ai = null;\n const ni = C({}, [\"audio\", \"video\", \"img\", \"source\", \"image\", \"track\"]);\n let Gs = null;\n const si = C({}, [\"alt\", \"class\", \"for\", \"id\", \"label\", \"name\", \"pattern\", \"placeholder\", \"role\", \"summary\", \"title\", \"value\", \"style\", \"xmlns\"]), fn = \"http://www.w3.org/1998/Math/MathML\", vn = \"http://www.w3.org/2000/svg\", Ct = \"http://www.w3.org/1999/xhtml\";\n let da = Ct, Hs = !1, qs = null;\n const Um = C({}, [fn, vn, Ct], P);\n let Vt;\n const Mm = [\"application/xhtml+xml\", \"text/html\"], Rm = \"text/html\";\n let qe, pa = null;\n const $m = xe.createElement(\"form\"), oi = function(k) {\n return k instanceof RegExp || k instanceof Function;\n }, Vs = function(k) {\n if (!(pa && pa === k)) {\n if ((!k || typeof k != \"object\") && (k = {}), k = E(k), Vt = Mm.indexOf(k.PARSER_MEDIA_TYPE) === -1 ? Vt = Rm : Vt = k.PARSER_MEDIA_TYPE, qe = Vt === \"application/xhtml+xml\" ? P : y, Ge = \"ALLOWED_TAGS\" in k ? C({}, k.ALLOWED_TAGS, qe) : Zr, He = \"ALLOWED_ATTR\" in k ? C({}, k.ALLOWED_ATTR, qe) : Kr, qs = \"ALLOWED_NAMESPACES\" in k ? C({}, k.ALLOWED_NAMESPACES, P) : Um, Gs = \"ADD_URI_SAFE_ATTR\" in k ? C(E(si), k.ADD_URI_SAFE_ATTR, qe) : si, ai = \"ADD_DATA_URI_TAGS\" in k ? C(E(ni), k.ADD_DATA_URI_TAGS, qe) : ni, ma = \"FORBID_CONTENTS\" in k ? C({}, k.FORBID_CONTENTS, qe) : ti, Oa = \"FORBID_TAGS\" in k ? C({}, k.FORBID_TAGS, qe) : {}, Us = \"FORBID_ATTR\" in k ? C({}, k.FORBID_ATTR, qe) : {}, ca = \"USE_PROFILES\" in k ? k.USE_PROFILES : !1, Jr = k.ALLOW_ARIA_ATTR !== !1, Ms = k.ALLOW_DATA_ATTR !== !1, Yr = k.ALLOW_UNKNOWN_PROTOCOLS || !1, Xr = k.ALLOW_SELF_CLOSE_IN_ATTR !== !1, ua = k.SAFE_FOR_TEMPLATES || !1, qt = k.WHOLE_DOCUMENT || !1, la = k.RETURN_DOM || !1, gn = k.RETURN_DOM_FRAGMENT || !1, hn = k.RETURN_TRUSTED_TYPE || !1, $s = k.FORCE_BODY || !1, Qr = k.SANITIZE_DOM !== !1, ei = k.SANITIZE_NAMED_PROPS || !1, Is = k.KEEP_CONTENT !== !1, ja = k.IN_PLACE || !1, Wr = k.ALLOWED_URI_REGEXP || z, da = k.NAMESPACE || Ct, ze = k.CUSTOM_ELEMENT_HANDLING || {}, k.CUSTOM_ELEMENT_HANDLING && oi(k.CUSTOM_ELEMENT_HANDLING.tagNameCheck) && (ze.tagNameCheck = k.CUSTOM_ELEMENT_HANDLING.tagNameCheck), k.CUSTOM_ELEMENT_HANDLING && oi(k.CUSTOM_ELEMENT_HANDLING.attributeNameCheck) && (ze.attributeNameCheck = k.CUSTOM_ELEMENT_HANDLING.attributeNameCheck), k.CUSTOM_ELEMENT_HANDLING && typeof k.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements == \"boolean\" && (ze.allowCustomizedBuiltInElements = k.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements), ua && (Ms = !1), gn && (la = !0), ca && (Ge = C({}, [...F]), He = [], ca.html === !0 && (C(Ge, f), C(He, W)), ca.svg === !0 && (C(Ge, A), C(He, U), C(He, ee)), ca.svgFilters === !0 && (C(Ge, S), C(He, U), C(He, ee)), ca.mathMl === !0 && (C(Ge, R), C(He, j), C(He, ee))), k.ADD_TAGS && (Ge === Zr && (Ge = E(Ge)), C(Ge, k.ADD_TAGS, qe)), k.ADD_ATTR && (He === Kr && (He = E(He)), C(He, k.ADD_ATTR, qe)), k.ADD_URI_SAFE_ATTR && C(Gs, k.ADD_URI_SAFE_ATTR, qe), k.FORBID_CONTENTS && (ma === ti && (ma = E(ma)), C(ma, k.FORBID_CONTENTS, qe)), Is && (Ge[\"#text\"] = !0), qt && C(Ge, [\"html\", \"head\", \"body\"]), Ge.table && (C(Ge, [\"tbody\"]), delete Oa.tbody), k.TRUSTED_TYPES_POLICY) {\n if (typeof k.TRUSTED_TYPES_POLICY.createHTML != \"function\")\n throw w('TRUSTED_TYPES_POLICY configuration option must provide a \"createHTML\" hook.');\n if (typeof k.TRUSTED_TYPES_POLICY.createScriptURL != \"function\")\n throw w('TRUSTED_TYPES_POLICY configuration option must provide a \"createScriptURL\" hook.');\n ke = k.TRUSTED_TYPES_POLICY, N = ke.createHTML(\"\");\n } else\n ke === void 0 && (ke = Re(Z, re)), ke !== null && typeof N == \"string\" && (N = ke.createHTML(\"\"));\n i && i(k), pa = k;\n }\n }, ri = C({}, [\"mi\", \"mo\", \"mn\", \"ms\", \"mtext\"]), ii = C({}, [\"foreignobject\", \"desc\", \"title\", \"annotation-xml\"]), Im = C({}, [\"title\", \"style\", \"font\", \"a\", \"script\"]), Cn = C({}, A);\n C(Cn, S), C(Cn, D);\n const Ws = C({}, R);\n C(Ws, B);\n const Gm = function(k) {\n let ae = Le(k);\n (!ae || !ae.tagName) && (ae = { namespaceURI: da, tagName: \"template\" });\n const Q = y(k.tagName), Ee = y(ae.tagName);\n return qs[k.namespaceURI] ? k.namespaceURI === vn ? ae.namespaceURI === Ct ? Q === \"svg\" : ae.namespaceURI === fn ? Q === \"svg\" && (Ee === \"annotation-xml\" || ri[Ee]) : !!Cn[Q] : k.namespaceURI === fn ? ae.namespaceURI === Ct ? Q === \"math\" : ae.namespaceURI === vn ? Q === \"math\" && ii[Ee] : !!Ws[Q] : k.namespaceURI === Ct ? ae.namespaceURI === vn && !ii[Ee] || ae.namespaceURI === fn && !ri[Ee] ? !1 : !Ws[Q] && (Im[Q] || !Cn[Q]) : !!(Vt === \"application/xhtml+xml\" && qs[k.namespaceURI]) : !1;\n }, ga = function(k) {\n h(Y.removed, { element: k });\n try {\n k.parentNode.removeChild(k);\n } catch {\n k.remove();\n }\n }, Zs = function(k, ae) {\n try {\n h(Y.removed, { attribute: ae.getAttributeNode(k), from: ae });\n } catch {\n h(Y.removed, { attribute: null, from: ae });\n }\n if (ae.removeAttribute(k), k === \"is\" && !He[k])\n if (la || gn)\n try {\n ga(ae);\n } catch {\n }\n else\n try {\n ae.setAttribute(k, \"\");\n } catch {\n }\n }, ui = function(k) {\n let ae, Q;\n if ($s)\n k = \"\" + k;\n else {\n const Ye = v(k, /^[\\r\\n\\t ]+/);\n Q = Ye && Ye[0];\n }\n Vt === \"application/xhtml+xml\" && da === Ct && (k = '' + k + \"\");\n const Ee = ke ? ke.createHTML(k) : k;\n if (da === Ct)\n try {\n ae = new I().parseFromString(Ee, Vt);\n } catch {\n }\n if (!ae || !ae.documentElement) {\n ae = K.createDocument(da, \"template\", null);\n try {\n ae.documentElement.innerHTML = Hs ? N : Ee;\n } catch {\n }\n }\n const $e = ae.body || ae.documentElement;\n return k && Q && $e.insertBefore(xe.createTextNode(Q), $e.childNodes[0] || null), da === Ct ? Gt.call(ae, qt ? \"html\" : \"body\")[0] : qt ? ae.documentElement : $e;\n }, li = function(k) {\n return ue.call(k.ownerDocument || k, k, ce.SHOW_ELEMENT | ce.SHOW_COMMENT | ce.SHOW_TEXT, null, !1);\n }, Hm = function(k) {\n return k instanceof M && (typeof k.nodeName != \"string\" || typeof k.textContent != \"string\" || typeof k.removeChild != \"function\" || !(k.attributes instanceof ne) || typeof k.removeAttribute != \"function\" || typeof k.setAttribute != \"function\" || typeof k.namespaceURI != \"string\" || typeof k.insertBefore != \"function\" || typeof k.hasChildNodes != \"function\");\n }, yn = function(k) {\n return typeof q == \"object\" ? k instanceof q : k && typeof k == \"object\" && typeof k.nodeType == \"number\" && typeof k.nodeName == \"string\";\n }, yt = function(k, ae, Q) {\n at[k] && m(at[k], (Ee) => {\n Ee.call(Y, ae, Q, pa);\n });\n }, ci = function(k) {\n let ae;\n if (yt(\"beforeSanitizeElements\", k, null), Hm(k))\n return ga(k), !0;\n const Q = qe(k.nodeName);\n if (yt(\"uponSanitizeElement\", k, { tagName: Q, allowedTags: Ge }), k.hasChildNodes() && !yn(k.firstElementChild) && (!yn(k.content) || !yn(k.content.firstElementChild)) && _(/<[/\\w]/g, k.innerHTML) && _(/<[/\\w]/g, k.textContent))\n return ga(k), !0;\n if (!Ge[Q] || Oa[Q]) {\n if (!Oa[Q] && di(Q) && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, Q) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(Q)))\n return !1;\n if (Is && !ma[Q]) {\n const Ee = Le(k) || k.parentNode, $e = Ae(k) || k.childNodes;\n if ($e && Ee) {\n const Ye = $e.length;\n for (let et = Ye - 1; et >= 0; --et)\n Ee.insertBefore(se($e[et], !0), Ce(k));\n }\n }\n return ga(k), !0;\n }\n return k instanceof X && !Gm(k) || (Q === \"noscript\" || Q === \"noembed\" || Q === \"noframes\") && _(/<\\/no(script|embed|frames)/i, k.innerHTML) ? (ga(k), !0) : (ua && k.nodeType === 3 && (ae = k.textContent, ae = g(ae, js, \" \"), ae = g(ae, Ls, \" \"), ae = g(ae, zs, \" \"), k.textContent !== ae && (h(Y.removed, { element: k.cloneNode() }), k.textContent = ae)), yt(\"afterSanitizeElements\", k, null), !1);\n }, mi = function(k, ae, Q) {\n if (Qr && (ae === \"id\" || ae === \"name\") && (Q in xe || Q in $m))\n return !1;\n if (!(Ms && !Us[ae] && _(Om, ae)) && !(Jr && _(jm, ae))) {\n if (!He[ae] || Us[ae]) {\n if (!(di(k) && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, k) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(k)) && (ze.attributeNameCheck instanceof RegExp && _(ze.attributeNameCheck, ae) || ze.attributeNameCheck instanceof Function && ze.attributeNameCheck(ae)) || ae === \"is\" && ze.allowCustomizedBuiltInElements && (ze.tagNameCheck instanceof RegExp && _(ze.tagNameCheck, Q) || ze.tagNameCheck instanceof Function && ze.tagNameCheck(Q))))\n return !1;\n } else if (!Gs[ae] && !_(Wr, g(Q, Vr, \"\")) && !((ae === \"src\" || ae === \"xlink:href\" || ae === \"href\") && k !== \"script\" && b(Q, \"data:\") === 0 && ai[k]) && !(Yr && !_(Lm, g(Q, Vr, \"\"))) && Q)\n return !1;\n }\n return !0;\n }, di = function(k) {\n return k.indexOf(\"-\") > 0;\n }, pi = function(k) {\n let ae, Q, Ee, $e;\n yt(\"beforeSanitizeAttributes\", k, null);\n const { attributes: Ye } = k;\n if (!Ye)\n return;\n const et = { attrName: \"\", attrValue: \"\", keepAttr: !0, allowedAttributes: He };\n for ($e = Ye.length; $e--; ) {\n ae = Ye[$e];\n const { name: Ve, namespaceURI: ha } = ae;\n if (Q = Ve === \"value\" ? ae.value : x(ae.value), Ee = qe(Ve), et.attrName = Ee, et.attrValue = Q, et.keepAttr = !0, et.forceKeepAttr = void 0, yt(\"uponSanitizeAttribute\", k, et), Q = et.attrValue, et.forceKeepAttr || (Zs(Ve, k), !et.keepAttr))\n continue;\n if (!Xr && _(/\\/>/i, Q)) {\n Zs(Ve, k);\n continue;\n }\n ua && (Q = g(Q, js, \" \"), Q = g(Q, Ls, \" \"), Q = g(Q, zs, \" \"));\n const gi = qe(k.nodeName);\n if (mi(gi, Ee, Q)) {\n if (ei && (Ee === \"id\" || Ee === \"name\") && (Zs(Ve, k), Q = zm + Q), ke && typeof Z == \"object\" && typeof Z.getAttributeType == \"function\" && !ha)\n switch (Z.getAttributeType(gi, Ee)) {\n case \"TrustedHTML\": {\n Q = ke.createHTML(Q);\n break;\n }\n case \"TrustedScriptURL\": {\n Q = ke.createScriptURL(Q);\n break;\n }\n }\n try {\n ha ? k.setAttributeNS(ha, Ve, Q) : k.setAttribute(Ve, Q), p(Y.removed);\n } catch {\n }\n }\n }\n yt(\"afterSanitizeAttributes\", k, null);\n }, qm = function k(ae) {\n let Q;\n const Ee = li(ae);\n for (yt(\"beforeSanitizeShadowDOM\", ae, null); Q = Ee.nextNode(); )\n yt(\"uponSanitizeShadowNode\", Q, null), !ci(Q) && (Q.content instanceof Se && k(Q.content), pi(Q));\n yt(\"afterSanitizeShadowDOM\", ae, null);\n };\n return Y.sanitize = function(k) {\n let ae = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, Q, Ee, $e, Ye;\n if (Hs = !k, Hs && (k = \"\"), typeof k != \"string\" && !yn(k))\n if (typeof k.toString == \"function\") {\n if (k = k.toString(), typeof k != \"string\")\n throw w(\"dirty is not a string, aborting\");\n } else\n throw w(\"toString is not a function\");\n if (!Y.isSupported)\n return k;\n if (Rs || Vs(ae), Y.removed = [], typeof k == \"string\" && (ja = !1), ja) {\n if (k.nodeName) {\n const ha = qe(k.nodeName);\n if (!Ge[ha] || Oa[ha])\n throw w(\"root node is forbidden and cannot be sanitized in-place\");\n }\n } else if (k instanceof q)\n Q = ui(\"\"), Ee = Q.ownerDocument.importNode(k, !0), Ee.nodeType === 1 && Ee.nodeName === \"BODY\" || Ee.nodeName === \"HTML\" ? Q = Ee : Q.appendChild(Ee);\n else {\n if (!la && !ua && !qt && k.indexOf(\"<\") === -1)\n return ke && hn ? ke.createHTML(k) : k;\n if (Q = ui(k), !Q)\n return la ? null : hn ? N : \"\";\n }\n Q && $s && ga(Q.firstChild);\n const et = li(ja ? k : Q);\n for (; $e = et.nextNode(); )\n ci($e) || ($e.content instanceof Se && qm($e.content), pi($e));\n if (ja)\n return k;\n if (la) {\n if (gn)\n for (Ye = Te.call(Q.ownerDocument); Q.firstChild; )\n Ye.appendChild(Q.firstChild);\n else\n Ye = Q;\n return (He.shadowroot || He.shadowrootmode) && (Ye = Ht.call(de, Ye, !0)), Ye;\n }\n let Ve = qt ? Q.outerHTML : Q.innerHTML;\n return qt && Ge[\"!doctype\"] && Q.ownerDocument && Q.ownerDocument.doctype && Q.ownerDocument.doctype.name && _(ye, Q.ownerDocument.doctype.name) && (Ve = \"\n` + Ve), ua && (Ve = g(Ve, js, \" \"), Ve = g(Ve, Ls, \" \"), Ve = g(Ve, zs, \" \")), ke && hn ? ke.createHTML(Ve) : Ve;\n }, Y.setConfig = function(k) {\n Vs(k), Rs = !0;\n }, Y.clearConfig = function() {\n pa = null, Rs = !1;\n }, Y.isValidAttribute = function(k, ae, Q) {\n pa || Vs({});\n const Ee = qe(k), $e = qe(ae);\n return mi(Ee, $e, Q);\n }, Y.addHook = function(k, ae) {\n typeof ae == \"function\" && (at[k] = at[k] || [], h(at[k], ae));\n }, Y.removeHook = function(k) {\n if (at[k])\n return p(at[k]);\n }, Y.removeHooks = function(k) {\n at[k] && (at[k] = []);\n }, Y.removeAllHooks = function() {\n at = {};\n }, Y;\n }\n var me = Oe();\n return me;\n });\n }(_u)), _u.exports;\n}\nvar Ou;\nfunction Yc() {\n if (Ou)\n return uo;\n Ou = 1;\n var e = _f();\n Nf();\n function t() {\n return document.documentElement.lang || \"en\";\n }\n class a {\n constructor() {\n this.translations = {}, this.debug = !1;\n }\n setLanguage(o) {\n return this.locale = o, this;\n }\n detectLocale() {\n return this.setLanguage(t().replace(\"-\", \"_\"));\n }\n addTranslation(o, i) {\n return this.translations[o] = i, this;\n }\n enableDebugMode() {\n return this.debug = !0, this;\n }\n build() {\n return new n(this.locale || \"en\", this.translations, this.debug);\n }\n }\n class n {\n constructor(o, i, u) {\n this.gt = new e({ debug: u, sourceLocale: \"en\" });\n for (const l in i)\n this.gt.addTranslations(l, \"messages\", i[l]);\n this.gt.setLocale(o);\n }\n subtitudePlaceholders(o, i) {\n return o.replace(/{([^{}]*)}/g, (u, l) => {\n const c = i[l];\n return typeof c == \"string\" || typeof c == \"number\" ? c.toString() : u;\n });\n }\n gettext(o, i = {}) {\n return this.subtitudePlaceholders(this.gt.gettext(o), i);\n }\n ngettext(o, i, u, l = {}) {\n return this.subtitudePlaceholders(this.gt.ngettext(o, i, u).replace(/%n/g, u.toString()), l);\n }\n }\n function s() {\n return new a();\n }\n return uo.getGettextBuilder = s, uo;\n}\nfunction Tt(e) {\n return e.split(\"-\")[0];\n}\nfunction ba(e) {\n return e.split(\"-\")[1];\n}\nfunction dn(e) {\n return [\"top\", \"bottom\"].includes(Tt(e)) ? \"x\" : \"y\";\n}\nfunction Ur(e) {\n return e === \"y\" ? \"height\" : \"width\";\n}\nfunction ju(e) {\n let { reference: t, floating: a, placement: n } = e;\n const s = t.x + t.width / 2 - a.width / 2, r = t.y + t.height / 2 - a.height / 2;\n let o;\n switch (Tt(n)) {\n case \"top\":\n o = { x: s, y: t.y - a.height };\n break;\n case \"bottom\":\n o = { x: s, y: t.y + t.height };\n break;\n case \"right\":\n o = { x: t.x + t.width, y: r };\n break;\n case \"left\":\n o = { x: t.x - a.width, y: r };\n break;\n default:\n o = { x: t.x, y: t.y };\n }\n const i = dn(n), u = Ur(i);\n switch (ba(n)) {\n case \"start\":\n o[i] = o[i] - (t[u] / 2 - a[u] / 2);\n break;\n case \"end\":\n o[i] = o[i] + (t[u] / 2 - a[u] / 2);\n break;\n }\n return o;\n}\nconst Of = async (e, t, a) => {\n const { placement: n = \"bottom\", strategy: s = \"absolute\", middleware: r = [], platform: o } = a;\n let i = await o.getElementRects({ reference: e, floating: t, strategy: s }), { x: u, y: l } = ju({ ...i, placement: n }), c = n, d = {};\n for (let m = 0; m < r.length; m++) {\n const { name: p, fn: h } = r[m], { x: y, y: P, data: v, reset: g } = await h({ x: u, y: l, initialPlacement: n, placement: c, strategy: s, middlewareData: d, rects: i, platform: o, elements: { reference: e, floating: t } });\n if (u = y ?? u, l = P ?? l, d = { ...d, [p]: v ?? {} }, g) {\n typeof g == \"object\" && (g.placement && (c = g.placement), g.rects && (i = g.rects === !0 ? await o.getElementRects({ reference: e, floating: t, strategy: s }) : g.rects), { x: u, y: l } = ju({ ...i, placement: c })), m = -1;\n continue;\n }\n }\n return { x: u, y: l, placement: c, strategy: s, middlewareData: d };\n};\nfunction jf(e) {\n return { top: 0, right: 0, bottom: 0, left: 0, ...e };\n}\nfunction Xc(e) {\n return typeof e != \"number\" ? jf(e) : { top: e, right: e, bottom: e, left: e };\n}\nfunction Xo(e) {\n return { ...e, top: e.y, left: e.x, right: e.x + e.width, bottom: e.y + e.height };\n}\nasync function Ss(e, t) {\n t === void 0 && (t = {});\n const { x: a, y: n, platform: s, rects: r, elements: o, strategy: i } = e, { boundary: u = \"clippingParents\", rootBoundary: l = \"viewport\", elementContext: c = \"floating\", altBoundary: d = !1, padding: m = 0 } = t, p = Xc(m), h = o[d ? c === \"floating\" ? \"reference\" : \"floating\" : c], y = await s.getClippingClientRect({ element: await s.isElement(h) ? h : h.contextElement || await s.getDocumentElement({ element: o.floating }), boundary: u, rootBoundary: l }), P = Xo(await s.convertOffsetParentRelativeRectToViewportRelativeRect({ rect: c === \"floating\" ? { ...r.floating, x: a, y: n } : r.reference, offsetParent: await s.getOffsetParent({ element: o.floating }), strategy: i }));\n return { top: y.top - P.top + p.top, bottom: P.bottom - y.bottom + p.bottom, left: y.left - P.left + p.left, right: P.right - y.right + p.right };\n}\nconst Lf = Math.min, Kt = Math.max;\nfunction Qo(e, t, a) {\n return Kt(e, Lf(t, a));\n}\nconst zf = (e) => ({ name: \"arrow\", options: e, async fn(t) {\n const { element: a, padding: n = 0 } = e ?? {}, { x: s, y: r, placement: o, rects: i, platform: u } = t;\n if (a == null)\n return {};\n const l = Xc(n), c = { x: s, y: r }, d = Tt(o), m = dn(d), p = Ur(m), h = await u.getDimensions({ element: a }), y = m === \"y\" ? \"top\" : \"left\", P = m === \"y\" ? \"bottom\" : \"right\", v = i.reference[p] + i.reference[m] - c[m] - i.floating[p], g = c[m] - i.reference[m], b = await u.getOffsetParent({ element: a }), x = b ? m === \"y\" ? b.clientHeight || 0 : b.clientWidth || 0 : 0, _ = v / 2 - g / 2, w = l[y], L = x - h[p] - l[P], H = x / 2 - h[p] / 2 + _, C = Qo(w, H, L);\n return { data: { [m]: C, centerOffset: H - C } };\n} }), Uf = { left: \"right\", right: \"left\", bottom: \"top\", top: \"bottom\" };\nfunction is(e) {\n return e.replace(/left|right|bottom|top/g, (t) => Uf[t]);\n}\nfunction Qc(e, t) {\n const a = ba(e) === \"start\", n = dn(e), s = Ur(n);\n let r = n === \"x\" ? a ? \"right\" : \"left\" : a ? \"bottom\" : \"top\";\n return t.reference[s] > t.floating[s] && (r = is(r)), { main: r, cross: is(r) };\n}\nconst Mf = { start: \"end\", end: \"start\" };\nfunction er(e) {\n return e.replace(/start|end/g, (t) => Mf[t]);\n}\nconst Rf = [\"top\", \"right\", \"bottom\", \"left\"], $f = Rf.reduce((e, t) => e.concat(t, t + \"-start\", t + \"-end\"), []);\nfunction If(e, t, a) {\n return (e ? [...a.filter((n) => ba(n) === e), ...a.filter((n) => ba(n) !== e)] : a.filter((n) => Tt(n) === n)).filter((n) => e ? ba(n) === e || (t ? er(n) !== n : !1) : !0);\n}\nconst Gf = function(e) {\n return e === void 0 && (e = {}), { name: \"autoPlacement\", options: e, async fn(t) {\n var a, n, s, r, o, i;\n const { x: u, y: l, rects: c, middlewareData: d, placement: m } = t, { alignment: p = null, allowedPlacements: h = $f, autoAlignment: y = !0, ...P } = e;\n if ((a = d.autoPlacement) != null && a.skip)\n return {};\n const v = If(p, y, h), g = await Ss(t, P), b = (n = (s = d.autoPlacement) == null ? void 0 : s.index) != null ? n : 0, x = v[b], { main: _, cross: w } = Qc(x, c);\n if (m !== x)\n return { x: u, y: l, reset: { placement: v[0] } };\n const L = [g[Tt(x)], g[_], g[w]], H = [...(r = (o = d.autoPlacement) == null ? void 0 : o.overflows) != null ? r : [], { placement: x, overflows: L }], C = v[b + 1];\n if (C)\n return { data: { index: b + 1, overflows: H }, reset: { placement: C } };\n const E = H.slice().sort((f, A) => f.overflows[0] - A.overflows[0]), T = (i = E.find((f) => {\n let { overflows: A } = f;\n return A.every((S) => S <= 0);\n })) == null ? void 0 : i.placement;\n return { data: { skip: !0 }, reset: { placement: T ?? E[0].placement } };\n } };\n};\nfunction Hf(e) {\n const t = is(e);\n return [er(e), t, er(t)];\n}\nconst qf = function(e) {\n return e === void 0 && (e = {}), { name: \"flip\", options: e, async fn(t) {\n var a, n;\n const { placement: s, middlewareData: r, rects: o, initialPlacement: i } = t;\n if ((a = r.flip) != null && a.skip)\n return {};\n const { mainAxis: u = !0, crossAxis: l = !0, fallbackPlacements: c, fallbackStrategy: d = \"bestFit\", flipAlignment: m = !0, ...p } = e, h = Tt(s), y = c || (h === i || !m ? [is(i)] : Hf(i)), P = [i, ...y], v = await Ss(t, p), g = [];\n let b = ((n = r.flip) == null ? void 0 : n.overflows) || [];\n if (u && g.push(v[h]), l) {\n const { main: L, cross: H } = Qc(s, o);\n g.push(v[L], v[H]);\n }\n if (b = [...b, { placement: s, overflows: g }], !g.every((L) => L <= 0)) {\n var x, _;\n const L = ((x = (_ = r.flip) == null ? void 0 : _.index) != null ? x : 0) + 1, H = P[L];\n if (H)\n return { data: { index: L, overflows: b }, reset: { placement: H } };\n let C = \"bottom\";\n switch (d) {\n case \"bestFit\": {\n var w;\n const E = (w = b.slice().sort((T, f) => T.overflows.filter((A) => A > 0).reduce((A, S) => A + S, 0) - f.overflows.filter((A) => A > 0).reduce((A, S) => A + S, 0))[0]) == null ? void 0 : w.placement;\n E && (C = E);\n break;\n }\n case \"initialPlacement\":\n C = i;\n break;\n }\n return { data: { skip: !0 }, reset: { placement: C } };\n }\n return {};\n } };\n};\nfunction Vf(e) {\n let { placement: t, rects: a, value: n } = e;\n const s = Tt(t), r = [\"left\", \"top\"].includes(s) ? -1 : 1, o = typeof n == \"function\" ? n({ ...a, placement: t }) : n, { mainAxis: i, crossAxis: u } = typeof o == \"number\" ? { mainAxis: o, crossAxis: 0 } : { mainAxis: 0, crossAxis: 0, ...o };\n return dn(s) === \"x\" ? { x: u, y: i * r } : { x: i * r, y: u };\n}\nconst Wf = function(e) {\n return e === void 0 && (e = 0), { name: \"offset\", options: e, fn(t) {\n const { x: a, y: n, placement: s, rects: r } = t, o = Vf({ placement: s, rects: r, value: e });\n return { x: a + o.x, y: n + o.y, data: o };\n } };\n};\nfunction Zf(e) {\n return e === \"x\" ? \"y\" : \"x\";\n}\nconst Kf = function(e) {\n return e === void 0 && (e = {}), { name: \"shift\", options: e, async fn(t) {\n const { x: a, y: n, placement: s } = t, { mainAxis: r = !0, crossAxis: o = !1, limiter: i = { fn: (P) => {\n let { x: v, y: g } = P;\n return { x: v, y: g };\n } }, ...u } = e, l = { x: a, y: n }, c = await Ss(t, u), d = dn(Tt(s)), m = Zf(d);\n let p = l[d], h = l[m];\n if (r) {\n const P = d === \"y\" ? \"top\" : \"left\", v = d === \"y\" ? \"bottom\" : \"right\", g = p + c[P], b = p - c[v];\n p = Qo(g, p, b);\n }\n if (o) {\n const P = m === \"y\" ? \"top\" : \"left\", v = m === \"y\" ? \"bottom\" : \"right\", g = h + c[P], b = h - c[v];\n h = Qo(g, h, b);\n }\n const y = i.fn({ ...t, [d]: p, [m]: h });\n return { ...y, data: { x: y.x - a, y: y.y - n } };\n } };\n}, Jf = function(e) {\n return e === void 0 && (e = {}), { name: \"size\", options: e, async fn(t) {\n var a;\n const { placement: n, rects: s, middlewareData: r } = t, { apply: o, ...i } = e;\n if ((a = r.size) != null && a.skip)\n return {};\n const u = await Ss(t, i), l = Tt(n), c = ba(n) === \"end\";\n let d, m;\n l === \"top\" || l === \"bottom\" ? (d = l, m = c ? \"left\" : \"right\") : (m = l, d = c ? \"top\" : \"bottom\");\n const p = Kt(u.left, 0), h = Kt(u.right, 0), y = Kt(u.top, 0), P = Kt(u.bottom, 0), v = { height: s.floating.height - ([\"left\", \"right\"].includes(n) ? 2 * (y !== 0 || P !== 0 ? y + P : Kt(u.top, u.bottom)) : u[d]), width: s.floating.width - ([\"top\", \"bottom\"].includes(n) ? 2 * (p !== 0 || h !== 0 ? p + h : Kt(u.left, u.right)) : u[m]) };\n return o?.({ ...v, ...s }), { data: { skip: !0 }, reset: { rects: !0 } };\n } };\n};\nfunction Mr(e) {\n return e?.toString() === \"[object Window]\";\n}\nfunction $t(e) {\n if (e == null)\n return window;\n if (!Mr(e)) {\n const t = e.ownerDocument;\n return t && t.defaultView || window;\n }\n return e;\n}\nfunction Ts(e) {\n return $t(e).getComputedStyle(e);\n}\nfunction Pt(e) {\n return Mr(e) ? \"\" : e ? (e.nodeName || \"\").toLowerCase() : \"\";\n}\nfunction St(e) {\n return e instanceof $t(e).HTMLElement;\n}\nfunction us(e) {\n return e instanceof $t(e).Element;\n}\nfunction Yf(e) {\n return e instanceof $t(e).Node;\n}\nfunction em(e) {\n const t = $t(e).ShadowRoot;\n return e instanceof t || e instanceof ShadowRoot;\n}\nfunction Fs(e) {\n const { overflow: t, overflowX: a, overflowY: n } = Ts(e);\n return /auto|scroll|overlay|hidden/.test(t + n + a);\n}\nfunction Xf(e) {\n return [\"table\", \"td\", \"th\"].includes(Pt(e));\n}\nfunction tm(e) {\n const t = navigator.userAgent.toLowerCase().includes(\"firefox\"), a = Ts(e);\n return a.transform !== \"none\" || a.perspective !== \"none\" || a.contain === \"paint\" || [\"transform\", \"perspective\"].includes(a.willChange) || t && a.willChange === \"filter\" || t && (a.filter ? a.filter !== \"none\" : !1);\n}\nconst Lu = Math.min, qa = Math.max, ls = Math.round;\nfunction Pa(e, t) {\n t === void 0 && (t = !1);\n const a = e.getBoundingClientRect();\n let n = 1, s = 1;\n return t && St(e) && (n = e.offsetWidth > 0 && ls(a.width) / e.offsetWidth || 1, s = e.offsetHeight > 0 && ls(a.height) / e.offsetHeight || 1), { width: a.width / n, height: a.height / s, top: a.top / s, right: a.right / n, bottom: a.bottom / s, left: a.left / n, x: a.left / n, y: a.top / s };\n}\nfunction It(e) {\n return ((Yf(e) ? e.ownerDocument : e.document) || window.document).documentElement;\n}\nfunction Ds(e) {\n return Mr(e) ? { scrollLeft: e.pageXOffset, scrollTop: e.pageYOffset } : { scrollLeft: e.scrollLeft, scrollTop: e.scrollTop };\n}\nfunction am(e) {\n return Pa(It(e)).left + Ds(e).scrollLeft;\n}\nfunction Qf(e) {\n const t = Pa(e);\n return ls(t.width) !== e.offsetWidth || ls(t.height) !== e.offsetHeight;\n}\nfunction e4(e, t, a) {\n const n = St(t), s = It(t), r = Pa(e, n && Qf(t));\n let o = { scrollLeft: 0, scrollTop: 0 };\n const i = { x: 0, y: 0 };\n if (n || !n && a !== \"fixed\")\n if ((Pt(t) !== \"body\" || Fs(s)) && (o = Ds(t)), St(t)) {\n const u = Pa(t, !0);\n i.x = u.x + t.clientLeft, i.y = u.y + t.clientTop;\n } else\n s && (i.x = am(s));\n return { x: r.left + o.scrollLeft - i.x, y: r.top + o.scrollTop - i.y, width: r.width, height: r.height };\n}\nfunction Bs(e) {\n return Pt(e) === \"html\" ? e : e.assignedSlot || e.parentNode || (em(e) ? e.host : null) || It(e);\n}\nfunction zu(e) {\n return !St(e) || getComputedStyle(e).position === \"fixed\" ? null : e.offsetParent;\n}\nfunction t4(e) {\n let t = Bs(e);\n for (; St(t) && ![\"html\", \"body\"].includes(Pt(t)); ) {\n if (tm(t))\n return t;\n t = t.parentNode;\n }\n return null;\n}\nfunction tr(e) {\n const t = $t(e);\n let a = zu(e);\n for (; a && Xf(a) && getComputedStyle(a).position === \"static\"; )\n a = zu(a);\n return a && (Pt(a) === \"html\" || Pt(a) === \"body\" && getComputedStyle(a).position === \"static\" && !tm(a)) ? t : a || t4(e) || t;\n}\nfunction Uu(e) {\n return { width: e.offsetWidth, height: e.offsetHeight };\n}\nfunction a4(e) {\n let { rect: t, offsetParent: a, strategy: n } = e;\n const s = St(a), r = It(a);\n if (a === r)\n return t;\n let o = { scrollLeft: 0, scrollTop: 0 };\n const i = { x: 0, y: 0 };\n if ((s || !s && n !== \"fixed\") && ((Pt(a) !== \"body\" || Fs(r)) && (o = Ds(a)), St(a))) {\n const u = Pa(a, !0);\n i.x = u.x + a.clientLeft, i.y = u.y + a.clientTop;\n }\n return { ...t, x: t.x - o.scrollLeft + i.x, y: t.y - o.scrollTop + i.y };\n}\nfunction n4(e) {\n const t = $t(e), a = It(e), n = t.visualViewport;\n let s = a.clientWidth, r = a.clientHeight, o = 0, i = 0;\n return n && (s = n.width, r = n.height, Math.abs(t.innerWidth / n.scale - n.width) < 0.01 && (o = n.offsetLeft, i = n.offsetTop)), { width: s, height: r, x: o, y: i };\n}\nfunction s4(e) {\n var t;\n const a = It(e), n = Ds(e), s = (t = e.ownerDocument) == null ? void 0 : t.body, r = qa(a.scrollWidth, a.clientWidth, s ? s.scrollWidth : 0, s ? s.clientWidth : 0), o = qa(a.scrollHeight, a.clientHeight, s ? s.scrollHeight : 0, s ? s.clientHeight : 0);\n let i = -n.scrollLeft + am(e);\n const u = -n.scrollTop;\n return Ts(s || a).direction === \"rtl\" && (i += qa(a.clientWidth, s ? s.clientWidth : 0) - r), { width: r, height: o, x: i, y: u };\n}\nfunction nm(e) {\n return [\"html\", \"body\", \"#document\"].includes(Pt(e)) ? e.ownerDocument.body : St(e) && Fs(e) ? e : nm(Bs(e));\n}\nfunction cs(e, t) {\n var a;\n t === void 0 && (t = []);\n const n = nm(e), s = n === ((a = e.ownerDocument) == null ? void 0 : a.body), r = $t(n), o = s ? [r].concat(r.visualViewport || [], Fs(n) ? n : []) : n, i = t.concat(o);\n return s ? i : i.concat(cs(Bs(o)));\n}\nfunction o4(e, t) {\n const a = t.getRootNode == null ? void 0 : t.getRootNode();\n if (e.contains(t))\n return !0;\n if (a && em(a)) {\n let n = t;\n do {\n if (n && e === n)\n return !0;\n n = n.parentNode || n.host;\n } while (n);\n }\n return !1;\n}\nfunction r4(e) {\n const t = Pa(e), a = t.top + e.clientTop, n = t.left + e.clientLeft;\n return { top: a, left: n, x: n, y: a, right: n + e.clientWidth, bottom: a + e.clientHeight, width: e.clientWidth, height: e.clientHeight };\n}\nfunction Mu(e, t) {\n return t === \"viewport\" ? Xo(n4(e)) : us(t) ? r4(t) : Xo(s4(It(e)));\n}\nfunction i4(e) {\n const t = cs(Bs(e)), a = [\"absolute\", \"fixed\"].includes(Ts(e).position) && St(e) ? tr(e) : e;\n return us(a) ? t.filter((n) => us(n) && o4(n, a) && Pt(n) !== \"body\") : [];\n}\nfunction u4(e) {\n let { element: t, boundary: a, rootBoundary: n } = e;\n const s = [...a === \"clippingParents\" ? i4(t) : [].concat(a), n], r = s[0], o = s.reduce((i, u) => {\n const l = Mu(t, u);\n return i.top = qa(l.top, i.top), i.right = Lu(l.right, i.right), i.bottom = Lu(l.bottom, i.bottom), i.left = qa(l.left, i.left), i;\n }, Mu(t, r));\n return o.width = o.right - o.left, o.height = o.bottom - o.top, o.x = o.left, o.y = o.top, o;\n}\nconst l4 = { getElementRects: (e) => {\n let { reference: t, floating: a, strategy: n } = e;\n return { reference: e4(t, tr(a), n), floating: { ...Uu(a), x: 0, y: 0 } };\n}, convertOffsetParentRelativeRectToViewportRelativeRect: (e) => a4(e), getOffsetParent: (e) => {\n let { element: t } = e;\n return tr(t);\n}, isElement: (e) => us(e), getDocumentElement: (e) => {\n let { element: t } = e;\n return It(t);\n}, getClippingClientRect: (e) => u4(e), getDimensions: (e) => {\n let { element: t } = e;\n return Uu(t);\n}, getClientRects: (e) => {\n let { element: t } = e;\n return t.getClientRects();\n} }, c4 = (e, t, a) => Of(e, t, { platform: l4, ...a });\nvar m4 = Object.defineProperty, d4 = Object.defineProperties, p4 = Object.getOwnPropertyDescriptors, ms = Object.getOwnPropertySymbols, sm = Object.prototype.hasOwnProperty, om = Object.prototype.propertyIsEnumerable, Ru = (e, t, a) => t in e ? m4(e, t, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[t] = a, Nt = (e, t) => {\n for (var a in t || (t = {}))\n sm.call(t, a) && Ru(e, a, t[a]);\n if (ms)\n for (var a of ms(t))\n om.call(t, a) && Ru(e, a, t[a]);\n return e;\n}, _s = (e, t) => d4(e, p4(t)), g4 = (e, t) => {\n var a = {};\n for (var n in e)\n sm.call(e, n) && t.indexOf(n) < 0 && (a[n] = e[n]);\n if (e != null && ms)\n for (var n of ms(e))\n t.indexOf(n) < 0 && om.call(e, n) && (a[n] = e[n]);\n return a;\n};\nfunction rm(e, t) {\n for (const a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (typeof t[a] == \"object\" && e[a] ? rm(e[a], t[a]) : e[a] = t[a]);\n}\nconst ht = { disabled: !1, distance: 5, skidding: 0, container: \"body\", boundary: void 0, instantMove: !1, disposeTimeout: 5e3, popperTriggers: [], strategy: \"absolute\", preventOverflow: !0, flip: !0, shift: !0, overflowPadding: 0, arrowPadding: 0, arrowOverflow: !0, themes: { tooltip: { placement: \"top\", triggers: [\"hover\", \"focus\", \"touch\"], hideTriggers: (e) => [...e, \"click\"], delay: { show: 200, hide: 0 }, handleResize: !1, html: !1, loadingContent: \"...\" }, dropdown: { placement: \"bottom\", triggers: [\"click\"], delay: 0, handleResize: !0, autoHide: !0 }, menu: { $extend: \"dropdown\", triggers: [\"hover\", \"focus\"], popperTriggers: [\"hover\", \"focus\"], delay: { show: 0, hide: 400 } } } };\nfunction Sa(e, t) {\n let a = ht.themes[e] || {}, n;\n do\n n = a[t], typeof n > \"u\" ? a.$extend ? a = ht.themes[a.$extend] || {} : (a = null, n = ht[t]) : a = null;\n while (a);\n return n;\n}\nfunction h4(e) {\n const t = [e];\n let a = ht.themes[e] || {};\n do\n a.$extend && !a.$resetCss ? (t.push(a.$extend), a = ht.themes[a.$extend] || {}) : a = null;\n while (a);\n return t.map((n) => `v-popper--theme-${n}`);\n}\nfunction $u(e) {\n const t = [e];\n let a = ht.themes[e] || {};\n do\n a.$extend ? (t.push(a.$extend), a = ht.themes[a.$extend] || {}) : a = null;\n while (a);\n return t;\n}\nlet sa = !1;\nif (typeof window < \"u\") {\n sa = !1;\n try {\n const e = Object.defineProperty({}, \"passive\", { get() {\n sa = !0;\n } });\n window.addEventListener(\"test\", null, e);\n } catch {\n }\n}\nlet im = !1;\ntypeof window < \"u\" && typeof navigator < \"u\" && (im = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream);\nconst Rr = [\"auto\", \"top\", \"bottom\", \"left\", \"right\"].reduce((e, t) => e.concat([t, `${t}-start`, `${t}-end`]), []), ar = { hover: \"mouseenter\", focus: \"focus\", click: \"click\", touch: \"touchstart\" }, nr = { hover: \"mouseleave\", focus: \"blur\", click: \"click\", touch: \"touchend\" };\nfunction Iu(e, t) {\n const a = e.indexOf(t);\n a !== -1 && e.splice(a, 1);\n}\nfunction mo() {\n return new Promise((e) => requestAnimationFrame(() => {\n requestAnimationFrame(e);\n }));\n}\nconst nt = [];\nlet Zt = null;\nconst Gu = {};\nfunction Hu(e) {\n let t = Gu[e];\n return t || (t = Gu[e] = []), t;\n}\nlet sr = function() {\n};\ntypeof window < \"u\" && (sr = window.Element);\nfunction we(e) {\n return function() {\n const t = this.$props;\n return Sa(t.theme, e);\n };\n}\nconst po = \"__floating-vue__popper\";\nvar $r = () => ({ name: \"VPopper\", props: { theme: { type: String, required: !0 }, targetNodes: { type: Function, required: !0 }, referenceNode: { type: Function, required: !0 }, popperNode: { type: Function, required: !0 }, shown: { type: Boolean, default: !1 }, showGroup: { type: String, default: null }, ariaId: { default: null }, disabled: { type: Boolean, default: we(\"disabled\") }, positioningDisabled: { type: Boolean, default: we(\"positioningDisabled\") }, placement: { type: String, default: we(\"placement\"), validator: (e) => Rr.includes(e) }, delay: { type: [String, Number, Object], default: we(\"delay\") }, distance: { type: [Number, String], default: we(\"distance\") }, skidding: { type: [Number, String], default: we(\"skidding\") }, triggers: { type: Array, default: we(\"triggers\") }, showTriggers: { type: [Array, Function], default: we(\"showTriggers\") }, hideTriggers: { type: [Array, Function], default: we(\"hideTriggers\") }, popperTriggers: { type: Array, default: we(\"popperTriggers\") }, popperShowTriggers: { type: [Array, Function], default: we(\"popperShowTriggers\") }, popperHideTriggers: { type: [Array, Function], default: we(\"popperHideTriggers\") }, container: { type: [String, Object, sr, Boolean], default: we(\"container\") }, boundary: { type: [String, sr], default: we(\"boundary\") }, strategy: { type: String, validator: (e) => [\"absolute\", \"fixed\"].includes(e), default: we(\"strategy\") }, autoHide: { type: [Boolean, Function], default: we(\"autoHide\") }, handleResize: { type: Boolean, default: we(\"handleResize\") }, instantMove: { type: Boolean, default: we(\"instantMove\") }, eagerMount: { type: Boolean, default: we(\"eagerMount\") }, popperClass: { type: [String, Array, Object], default: we(\"popperClass\") }, computeTransformOrigin: { type: Boolean, default: we(\"computeTransformOrigin\") }, autoMinSize: { type: Boolean, default: we(\"autoMinSize\") }, autoSize: { type: [Boolean, String], default: we(\"autoSize\") }, autoMaxSize: { type: Boolean, default: we(\"autoMaxSize\") }, autoBoundaryMaxSize: { type: Boolean, default: we(\"autoBoundaryMaxSize\") }, preventOverflow: { type: Boolean, default: we(\"preventOverflow\") }, overflowPadding: { type: [Number, String], default: we(\"overflowPadding\") }, arrowPadding: { type: [Number, String], default: we(\"arrowPadding\") }, arrowOverflow: { type: Boolean, default: we(\"arrowOverflow\") }, flip: { type: Boolean, default: we(\"flip\") }, shift: { type: Boolean, default: we(\"shift\") }, shiftCrossAxis: { type: Boolean, default: we(\"shiftCrossAxis\") }, noAutoFocus: { type: Boolean, default: we(\"noAutoFocus\") } }, provide() {\n return { [po]: { parentPopper: this } };\n}, inject: { [po]: { default: null } }, data() {\n return { isShown: !1, isMounted: !1, skipTransition: !1, classes: { showFrom: !1, showTo: !1, hideFrom: !1, hideTo: !0 }, result: { x: 0, y: 0, placement: \"\", strategy: this.strategy, arrow: { x: 0, y: 0, centerOffset: 0 }, transformOrigin: null }, shownChildren: /* @__PURE__ */ new Set(), lastAutoHide: !0 };\n}, computed: { popperId() {\n return this.ariaId != null ? this.ariaId : this.randomId;\n}, shouldMountContent() {\n return this.eagerMount || this.isMounted;\n}, slotData() {\n return { popperId: this.popperId, isShown: this.isShown, shouldMountContent: this.shouldMountContent, skipTransition: this.skipTransition, autoHide: typeof this.autoHide == \"function\" ? this.lastAutoHide : this.autoHide, show: this.show, hide: this.hide, handleResize: this.handleResize, onResize: this.onResize, classes: _s(Nt({}, this.classes), { popperClass: this.popperClass }), result: this.positioningDisabled ? null : this.result };\n}, parentPopper() {\n var e;\n return (e = this[po]) == null ? void 0 : e.parentPopper;\n}, hasPopperShowTriggerHover() {\n var e, t;\n return ((e = this.popperTriggers) == null ? void 0 : e.includes(\"hover\")) || ((t = this.popperShowTriggers) == null ? void 0 : t.includes(\"hover\"));\n} }, watch: Nt(Nt({ shown: \"$_autoShowHide\", disabled(e) {\n e ? this.dispose() : this.init();\n}, async container() {\n this.isShown && (this.$_ensureTeleport(), await this.$_computePosition());\n} }, [\"triggers\", \"positioningDisabled\"].reduce((e, t) => (e[t] = \"$_refreshListeners\", e), {})), [\"placement\", \"distance\", \"skidding\", \"boundary\", \"strategy\", \"overflowPadding\", \"arrowPadding\", \"preventOverflow\", \"shift\", \"shiftCrossAxis\", \"flip\"].reduce((e, t) => (e[t] = \"$_computePosition\", e), {})), created() {\n this.$_isDisposed = !0, this.randomId = `popper_${[Math.random(), Date.now()].map((e) => e.toString(36).substring(2, 10)).join(\"_\")}`, this.autoMinSize && console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize=\"min\"` instead.'), this.autoMaxSize && console.warn(\"[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.\");\n}, mounted() {\n this.init(), this.$_detachPopperNode();\n}, activated() {\n this.$_autoShowHide();\n}, deactivated() {\n this.hide();\n}, beforeDestroy() {\n this.dispose();\n}, methods: { show({ event: e = null, skipDelay: t = !1, force: a = !1 } = {}) {\n var n, s;\n (n = this.parentPopper) != null && n.lockedChild && this.parentPopper.lockedChild !== this || (this.$_pendingHide = !1, (a || !this.disabled) && (((s = this.parentPopper) == null ? void 0 : s.lockedChild) === this && (this.parentPopper.lockedChild = null), this.$_scheduleShow(e, t), this.$emit(\"show\"), this.$_showFrameLocked = !0, requestAnimationFrame(() => {\n this.$_showFrameLocked = !1;\n })), this.$emit(\"update:shown\", !0));\n}, hide({ event: e = null, skipDelay: t = !1, skipAiming: a = !1 } = {}) {\n var n;\n if (!this.$_hideInProgress) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0;\n return;\n }\n if (!a && this.hasPopperShowTriggerHover && this.$_isAimingPopper()) {\n this.parentPopper && (this.parentPopper.lockedChild = this, clearTimeout(this.parentPopper.lockedChildTimer), this.parentPopper.lockedChildTimer = setTimeout(() => {\n this.parentPopper.lockedChild === this && (this.parentPopper.lockedChild.hide({ skipDelay: t }), this.parentPopper.lockedChild = null);\n }, 1e3));\n return;\n }\n ((n = this.parentPopper) == null ? void 0 : n.lockedChild) === this && (this.parentPopper.lockedChild = null), this.$_pendingHide = !1, this.$_scheduleHide(e, t), this.$emit(\"hide\"), this.$emit(\"update:shown\", !1);\n }\n}, init() {\n this.$_isDisposed && (this.$_isDisposed = !1, this.isMounted = !1, this.$_events = [], this.$_preventShow = !1, this.$_referenceNode = this.referenceNode(), this.$_targetNodes = this.targetNodes().filter((e) => e.nodeType === e.ELEMENT_NODE), this.$_popperNode = this.popperNode(), this.$_innerNode = this.$_popperNode.querySelector(\".v-popper__inner\"), this.$_arrowNode = this.$_popperNode.querySelector(\".v-popper__arrow-container\"), this.$_swapTargetAttrs(\"title\", \"data-original-title\"), this.$_detachPopperNode(), this.triggers.length && this.$_addEventListeners(), this.shown && this.show());\n}, dispose() {\n this.$_isDisposed || (this.$_isDisposed = !0, this.$_removeEventListeners(), this.hide({ skipDelay: !0 }), this.$_detachPopperNode(), this.isMounted = !1, this.isShown = !1, this.$_updateParentShownChildren(!1), this.$_swapTargetAttrs(\"data-original-title\", \"title\"), this.$emit(\"dispose\"));\n}, async onResize() {\n this.isShown && (await this.$_computePosition(), this.$emit(\"resize\"));\n}, async $_computePosition() {\n var e;\n if (this.$_isDisposed || this.positioningDisabled)\n return;\n const t = { strategy: this.strategy, middleware: [] };\n (this.distance || this.skidding) && t.middleware.push(Wf({ mainAxis: this.distance, crossAxis: this.skidding }));\n const a = this.placement.startsWith(\"auto\");\n if (a ? t.middleware.push(Gf({ alignment: (e = this.placement.split(\"-\")[1]) != null ? e : \"\" })) : t.placement = this.placement, this.preventOverflow && (this.shift && t.middleware.push(Kf({ padding: this.overflowPadding, boundary: this.boundary, crossAxis: this.shiftCrossAxis })), !a && this.flip && t.middleware.push(qf({ padding: this.overflowPadding, boundary: this.boundary }))), t.middleware.push(zf({ element: this.$_arrowNode, padding: this.arrowPadding })), this.arrowOverflow && t.middleware.push({ name: \"arrowOverflow\", fn: ({ placement: s, rects: r, middlewareData: o }) => {\n let i;\n const { centerOffset: u } = o.arrow;\n return s.startsWith(\"top\") || s.startsWith(\"bottom\") ? i = Math.abs(u) > r.reference.width / 2 : i = Math.abs(u) > r.reference.height / 2, { data: { overflow: i } };\n } }), this.autoMinSize || this.autoSize) {\n const s = this.autoSize ? this.autoSize : this.autoMinSize ? \"min\" : null;\n t.middleware.push({ name: \"autoSize\", fn: ({ rects: r, placement: o, middlewareData: i }) => {\n var u;\n if ((u = i.autoSize) != null && u.skip)\n return {};\n let l, c;\n return o.startsWith(\"top\") || o.startsWith(\"bottom\") ? l = r.reference.width : c = r.reference.height, this.$_innerNode.style[s === \"min\" ? \"minWidth\" : s === \"max\" ? \"maxWidth\" : \"width\"] = l != null ? `${l}px` : null, this.$_innerNode.style[s === \"min\" ? \"minHeight\" : s === \"max\" ? \"maxHeight\" : \"height\"] = c != null ? `${c}px` : null, { data: { skip: !0 }, reset: { rects: !0 } };\n } });\n }\n (this.autoMaxSize || this.autoBoundaryMaxSize) && (this.$_innerNode.style.maxWidth = null, this.$_innerNode.style.maxHeight = null, t.middleware.push(Jf({ boundary: this.boundary, padding: this.overflowPadding, apply: ({ width: s, height: r }) => {\n this.$_innerNode.style.maxWidth = s != null ? `${s}px` : null, this.$_innerNode.style.maxHeight = r != null ? `${r}px` : null;\n } })));\n const n = await c4(this.$_referenceNode, this.$_popperNode, t);\n Object.assign(this.result, { x: n.x, y: n.y, placement: n.placement, strategy: n.strategy, arrow: Nt(Nt({}, n.middlewareData.arrow), n.middlewareData.arrowOverflow) });\n}, $_scheduleShow(e = null, t = !1) {\n if (this.$_updateParentShownChildren(!0), this.$_hideInProgress = !1, clearTimeout(this.$_scheduleTimer), Zt && this.instantMove && Zt.instantMove && Zt !== this.parentPopper) {\n Zt.$_applyHide(!0), this.$_applyShow(!0);\n return;\n }\n t ? this.$_applyShow() : this.$_scheduleTimer = setTimeout(this.$_applyShow.bind(this), this.$_computeDelay(\"show\"));\n}, $_scheduleHide(e = null, t = !1) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0;\n return;\n }\n this.$_updateParentShownChildren(!1), this.$_hideInProgress = !0, clearTimeout(this.$_scheduleTimer), this.isShown && (Zt = this), t ? this.$_applyHide() : this.$_scheduleTimer = setTimeout(this.$_applyHide.bind(this), this.$_computeDelay(\"hide\"));\n}, $_computeDelay(e) {\n const t = this.delay;\n return parseInt(t && t[e] || t || 0);\n}, async $_applyShow(e = !1) {\n clearTimeout(this.$_disposeTimer), clearTimeout(this.$_scheduleTimer), this.skipTransition = e, !this.isShown && (this.$_ensureTeleport(), await mo(), await this.$_computePosition(), await this.$_applyShowEffect(), this.positioningDisabled || this.$_registerEventListeners([...cs(this.$_referenceNode), ...cs(this.$_popperNode)], \"scroll\", () => {\n this.$_computePosition();\n }));\n}, async $_applyShowEffect() {\n if (this.$_hideInProgress)\n return;\n if (this.computeTransformOrigin) {\n const t = this.$_referenceNode.getBoundingClientRect(), a = this.$_popperNode.querySelector(\".v-popper__wrapper\"), n = a.parentNode.getBoundingClientRect(), s = t.x + t.width / 2 - (n.left + a.offsetLeft), r = t.y + t.height / 2 - (n.top + a.offsetTop);\n this.result.transformOrigin = `${s}px ${r}px`;\n }\n this.isShown = !0, this.$_applyAttrsToTarget({ \"aria-describedby\": this.popperId, \"data-popper-shown\": \"\" });\n const e = this.showGroup;\n if (e) {\n let t;\n for (let a = 0; a < nt.length; a++)\n t = nt[a], t.showGroup !== e && (t.hide(), t.$emit(\"close-group\"));\n }\n nt.push(this), document.body.classList.add(\"v-popper--some-open\");\n for (const t of $u(this.theme))\n Hu(t).push(this), document.body.classList.add(`v-popper--some-open--${t}`);\n this.$emit(\"apply-show\"), this.classes.showFrom = !0, this.classes.showTo = !1, this.classes.hideFrom = !1, this.classes.hideTo = !1, await mo(), this.classes.showFrom = !1, this.classes.showTo = !0, this.noAutoFocus || this.$_popperNode.focus();\n}, async $_applyHide(e = !1) {\n if (this.shownChildren.size > 0) {\n this.$_pendingHide = !0, this.$_hideInProgress = !1;\n return;\n }\n if (clearTimeout(this.$_scheduleTimer), !this.isShown)\n return;\n this.skipTransition = e, Iu(nt, this), nt.length === 0 && document.body.classList.remove(\"v-popper--some-open\");\n for (const a of $u(this.theme)) {\n const n = Hu(a);\n Iu(n, this), n.length === 0 && document.body.classList.remove(`v-popper--some-open--${a}`);\n }\n Zt === this && (Zt = null), this.isShown = !1, this.$_applyAttrsToTarget({ \"aria-describedby\": void 0, \"data-popper-shown\": void 0 }), clearTimeout(this.$_disposeTimer);\n const t = Sa(this.theme, \"disposeTimeout\");\n t !== null && (this.$_disposeTimer = setTimeout(() => {\n this.$_popperNode && (this.$_detachPopperNode(), this.isMounted = !1);\n }, t)), this.$_removeEventListeners(\"scroll\"), this.$emit(\"apply-hide\"), this.classes.showFrom = !1, this.classes.showTo = !1, this.classes.hideFrom = !0, this.classes.hideTo = !1, await mo(), this.classes.hideFrom = !1, this.classes.hideTo = !0;\n}, $_autoShowHide() {\n this.shown ? this.show() : this.hide();\n}, $_ensureTeleport() {\n if (this.$_isDisposed)\n return;\n let e = this.container;\n if (typeof e == \"string\" ? e = window.document.querySelector(e) : e === !1 && (e = this.$_targetNodes[0].parentNode), !e)\n throw new Error(\"No container for popover: \" + this.container);\n e.appendChild(this.$_popperNode), this.isMounted = !0;\n}, $_addEventListeners() {\n const e = (a) => {\n this.isShown && !this.$_hideInProgress || (a.usedByTooltip = !0, !this.$_preventShow && this.show({ event: a }));\n };\n this.$_registerTriggerListeners(this.$_targetNodes, ar, this.triggers, this.showTriggers, e), this.$_registerTriggerListeners([this.$_popperNode], ar, this.popperTriggers, this.popperShowTriggers, e);\n const t = (a) => (n) => {\n n.usedByTooltip || this.hide({ event: n, skipAiming: a });\n };\n this.$_registerTriggerListeners(this.$_targetNodes, nr, this.triggers, this.hideTriggers, t(!1)), this.$_registerTriggerListeners([this.$_popperNode], nr, this.popperTriggers, this.popperHideTriggers, t(!0));\n}, $_registerEventListeners(e, t, a) {\n this.$_events.push({ targetNodes: e, eventType: t, handler: a }), e.forEach((n) => n.addEventListener(t, a, sa ? { passive: !0 } : void 0));\n}, $_registerTriggerListeners(e, t, a, n, s) {\n let r = a;\n n != null && (r = typeof n == \"function\" ? n(r) : n), r.forEach((o) => {\n const i = t[o];\n i && this.$_registerEventListeners(e, i, s);\n });\n}, $_removeEventListeners(e) {\n const t = [];\n this.$_events.forEach((a) => {\n const { targetNodes: n, eventType: s, handler: r } = a;\n !e || e === s ? n.forEach((o) => o.removeEventListener(s, r)) : t.push(a);\n }), this.$_events = t;\n}, $_refreshListeners() {\n this.$_isDisposed || (this.$_removeEventListeners(), this.$_addEventListeners());\n}, $_handleGlobalClose(e, t = !1) {\n this.$_showFrameLocked || (this.hide({ event: e }), e.closePopover ? this.$emit(\"close-directive\") : this.$emit(\"auto-hide\"), t && (this.$_preventShow = !0, setTimeout(() => {\n this.$_preventShow = !1;\n }, 300)));\n}, $_detachPopperNode() {\n this.$_popperNode.parentNode && this.$_popperNode.parentNode.removeChild(this.$_popperNode);\n}, $_swapTargetAttrs(e, t) {\n for (const a of this.$_targetNodes) {\n const n = a.getAttribute(e);\n n && (a.removeAttribute(e), a.setAttribute(t, n));\n }\n}, $_applyAttrsToTarget(e) {\n for (const t of this.$_targetNodes)\n for (const a in e) {\n const n = e[a];\n n == null ? t.removeAttribute(a) : t.setAttribute(a, n);\n }\n}, $_updateParentShownChildren(e) {\n let t = this.parentPopper;\n for (; t; )\n e ? t.shownChildren.add(this.randomId) : (t.shownChildren.delete(this.randomId), t.$_pendingHide && t.hide()), t = t.parentPopper;\n}, $_isAimingPopper() {\n const e = this.$el.getBoundingClientRect();\n if (Va >= e.left && Va <= e.right && Wa >= e.top && Wa <= e.bottom) {\n const t = this.$_popperNode.getBoundingClientRect(), a = Va - Dt, n = Wa - Bt, s = t.left + t.width / 2 - Dt + (t.top + t.height / 2) - Bt + t.width + t.height, r = Dt + a * s, o = Bt + n * s;\n return Fn(Dt, Bt, r, o, t.left, t.top, t.left, t.bottom) || Fn(Dt, Bt, r, o, t.left, t.top, t.right, t.top) || Fn(Dt, Bt, r, o, t.right, t.top, t.right, t.bottom) || Fn(Dt, Bt, r, o, t.left, t.bottom, t.right, t.bottom);\n }\n return !1;\n} }, render() {\n return this.$scopedSlots.default(this.slotData)[0];\n} });\ntypeof document < \"u\" && typeof window < \"u\" && (im ? (document.addEventListener(\"touchstart\", qu, sa ? { passive: !0, capture: !0 } : !0), document.addEventListener(\"touchend\", v4, sa ? { passive: !0, capture: !0 } : !0)) : (window.addEventListener(\"mousedown\", qu, !0), window.addEventListener(\"click\", f4, !0)), window.addEventListener(\"resize\", A4));\nfunction qu(e) {\n for (let t = 0; t < nt.length; t++) {\n const a = nt[t];\n try {\n const n = a.popperNode();\n a.$_mouseDownContains = n.contains(e.target);\n } catch {\n }\n }\n}\nfunction f4(e) {\n um(e);\n}\nfunction v4(e) {\n um(e, !0);\n}\nfunction um(e, t = !1) {\n const a = {};\n for (let n = nt.length - 1; n >= 0; n--) {\n const s = nt[n];\n try {\n const r = s.$_containsGlobalTarget = C4(s, e);\n s.$_pendingHide = !1, requestAnimationFrame(() => {\n if (s.$_pendingHide = !1, !a[s.randomId] && Vu(s, r, e)) {\n if (s.$_handleGlobalClose(e, t), !e.closeAllPopover && e.closePopover && r) {\n let i = s.parentPopper;\n for (; i; )\n a[i.randomId] = !0, i = i.parentPopper;\n return;\n }\n let o = s.parentPopper;\n for (; o && Vu(o, o.$_containsGlobalTarget, e); )\n o.$_handleGlobalClose(e, t), o = o.parentPopper;\n }\n });\n } catch {\n }\n }\n}\nfunction C4(e, t) {\n const a = e.popperNode();\n return e.$_mouseDownContains || a.contains(t.target);\n}\nfunction Vu(e, t, a) {\n return a.closeAllPopover || a.closePopover && t || y4(e, a) && !t;\n}\nfunction y4(e, t) {\n if (typeof e.autoHide == \"function\") {\n const a = e.autoHide(t);\n return e.lastAutoHide = a, a;\n }\n return e.autoHide;\n}\nfunction A4(e) {\n for (let t = 0; t < nt.length; t++)\n nt[t].$_computePosition(e);\n}\nfunction w4() {\n for (let e = 0; e < nt.length; e++)\n nt[e].hide();\n}\nlet Dt = 0, Bt = 0, Va = 0, Wa = 0;\ntypeof window < \"u\" && window.addEventListener(\"mousemove\", (e) => {\n Dt = Va, Bt = Wa, Va = e.clientX, Wa = e.clientY;\n}, sa ? { passive: !0 } : void 0);\nfunction Fn(e, t, a, n, s, r, o, i) {\n const u = ((o - s) * (t - r) - (i - r) * (e - s)) / ((i - r) * (a - e) - (o - s) * (n - t)), l = ((a - e) * (t - r) - (n - t) * (e - s)) / ((i - r) * (a - e) - (o - s) * (n - t));\n return u >= 0 && u <= 1 && l >= 0 && l <= 1;\n}\nfunction b4() {\n var e = window.navigator.userAgent, t = e.indexOf(\"MSIE \");\n if (t > 0)\n return parseInt(e.substring(t + 5, e.indexOf(\".\", t)), 10);\n var a = e.indexOf(\"Trident/\");\n if (a > 0) {\n var n = e.indexOf(\"rv:\");\n return parseInt(e.substring(n + 3, e.indexOf(\".\", n)), 10);\n }\n var s = e.indexOf(\"Edge/\");\n return s > 0 ? parseInt(e.substring(s + 5, e.indexOf(\".\", s)), 10) : -1;\n}\nvar Vn;\nfunction or() {\n or.init || (or.init = !0, Vn = b4() !== -1);\n}\nvar x4 = { name: \"ResizeObserver\", props: { emitOnMount: { type: Boolean, default: !1 }, ignoreWidth: { type: Boolean, default: !1 }, ignoreHeight: { type: Boolean, default: !1 } }, mounted: function() {\n var e = this;\n or(), this.$nextTick(function() {\n e._w = e.$el.offsetWidth, e._h = e.$el.offsetHeight, e.emitOnMount && e.emitSize();\n });\n var t = document.createElement(\"object\");\n this._resizeObject = t, t.setAttribute(\"aria-hidden\", \"true\"), t.setAttribute(\"tabindex\", -1), t.onload = this.addResizeHandlers, t.type = \"text/html\", Vn && this.$el.appendChild(t), t.data = \"about:blank\", Vn || this.$el.appendChild(t);\n}, beforeDestroy: function() {\n this.removeResizeHandlers();\n}, methods: { compareAndNotify: function() {\n (!this.ignoreWidth && this._w !== this.$el.offsetWidth || !this.ignoreHeight && this._h !== this.$el.offsetHeight) && (this._w = this.$el.offsetWidth, this._h = this.$el.offsetHeight, this.emitSize());\n}, emitSize: function() {\n this.$emit(\"notify\", { width: this._w, height: this._h });\n}, addResizeHandlers: function() {\n this._resizeObject.contentDocument.defaultView.addEventListener(\"resize\", this.compareAndNotify), this.compareAndNotify();\n}, removeResizeHandlers: function() {\n this._resizeObject && this._resizeObject.onload && (!Vn && this._resizeObject.contentDocument && this._resizeObject.contentDocument.defaultView.removeEventListener(\"resize\", this.compareAndNotify), this.$el.removeChild(this._resizeObject), this._resizeObject.onload = null, this._resizeObject = null);\n} } };\nfunction k4(e, t, a, n, s, r, o, i, u, l) {\n typeof o != \"boolean\" && (u = i, i = o, o = !1);\n var c = typeof a == \"function\" ? a.options : a;\n e && e.render && (c.render = e.render, c.staticRenderFns = e.staticRenderFns, c._compiled = !0, s && (c.functional = !0)), n && (c._scopeId = n);\n var d;\n if (r ? (d = function(h) {\n h = h || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !h && typeof __VUE_SSR_CONTEXT__ < \"u\" && (h = __VUE_SSR_CONTEXT__), t && t.call(this, u(h)), h && h._registeredComponents && h._registeredComponents.add(r);\n }, c._ssrRegister = d) : t && (d = o ? function(h) {\n t.call(this, l(h, this.$root.$options.shadowRoot));\n } : function(h) {\n t.call(this, i(h));\n }), d)\n if (c.functional) {\n var m = c.render;\n c.render = function(h, y) {\n return d.call(y), m(h, y);\n };\n } else {\n var p = c.beforeCreate;\n c.beforeCreate = p ? [].concat(p, d) : [d];\n }\n return a;\n}\nvar E4 = x4, lm = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"div\", { staticClass: \"resize-observer\", attrs: { tabindex: \"-1\" } });\n}, P4 = [];\nlm._withStripped = !0;\nvar S4 = void 0, T4 = \"data-v-8859cc6c\", F4 = void 0, D4 = !1, rr = k4({ render: lm, staticRenderFns: P4 }, S4, E4, T4, D4, F4, !1, void 0, void 0, void 0);\nfunction B4(e) {\n e.component(\"resize-observer\", rr), e.component(\"ResizeObserver\", rr);\n}\nvar _4 = { version: \"1.0.1\", install: B4 }, Dn = null;\ntypeof window < \"u\" ? Dn = window.Vue : typeof global < \"u\" && (Dn = global.Vue), Dn && Dn.use(_4);\nvar Ir = { computed: { themeClass() {\n return h4(this.theme);\n} } }, N4 = { name: \"VPopperContent\", components: { ResizeObserver: rr }, mixins: [Ir], props: { popperId: String, theme: String, shown: Boolean, mounted: Boolean, skipTransition: Boolean, autoHide: Boolean, handleResize: Boolean, classes: Object, result: Object }, methods: { toPx(e) {\n return e != null && !isNaN(e) ? `${e}px` : null;\n} } }, O4 = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"div\", { ref: \"popover\", staticClass: \"v-popper__popper\", class: [e.themeClass, e.classes.popperClass, { \"v-popper__popper--shown\": e.shown, \"v-popper__popper--hidden\": !e.shown, \"v-popper__popper--show-from\": e.classes.showFrom, \"v-popper__popper--show-to\": e.classes.showTo, \"v-popper__popper--hide-from\": e.classes.hideFrom, \"v-popper__popper--hide-to\": e.classes.hideTo, \"v-popper__popper--skip-transition\": e.skipTransition, \"v-popper__popper--arrow-overflow\": e.result && e.result.arrow.overflow, \"v-popper__popper--no-positioning\": !e.result }], style: e.result ? { position: e.result.strategy, transform: \"translate3d(\" + Math.round(e.result.x) + \"px,\" + Math.round(e.result.y) + \"px,0)\" } : void 0, attrs: { id: e.popperId, \"aria-hidden\": e.shown ? \"false\" : \"true\", tabindex: e.autoHide ? 0 : void 0, \"data-popper-placement\": e.result ? e.result.placement : void 0 }, on: { keyup: function(n) {\n if (!n.type.indexOf(\"key\") && e._k(n.keyCode, \"esc\", 27, n.key, [\"Esc\", \"Escape\"]))\n return null;\n e.autoHide && e.$emit(\"hide\");\n } } }, [a(\"div\", { staticClass: \"v-popper__backdrop\", on: { click: function(n) {\n e.autoHide && e.$emit(\"hide\");\n } } }), a(\"div\", { staticClass: \"v-popper__wrapper\", style: e.result ? { transformOrigin: e.result.transformOrigin } : void 0 }, [a(\"div\", { ref: \"inner\", staticClass: \"v-popper__inner\" }, [e.mounted ? [a(\"div\", [e._t(\"default\")], 2), e.handleResize ? a(\"ResizeObserver\", { on: { notify: function(n) {\n return e.$emit(\"resize\", n);\n } } }) : e._e()] : e._e()], 2), a(\"div\", { ref: \"arrow\", staticClass: \"v-popper__arrow-container\", style: e.result ? { left: e.toPx(e.result.arrow.x), top: e.toPx(e.result.arrow.y) } : void 0 }, [a(\"div\", { staticClass: \"v-popper__arrow-outer\" }), a(\"div\", { staticClass: \"v-popper__arrow-inner\" })])])]);\n}, j4 = [];\nfunction Na(e, t, a, n, s, r, o, i) {\n var u = typeof e == \"function\" ? e.options : e;\n t && (u.render = t, u.staticRenderFns = a, u._compiled = !0), n && (u.functional = !0), r && (u._scopeId = \"data-v-\" + r);\n var l;\n if (o ? (l = function(m) {\n m = m || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !m && typeof __VUE_SSR_CONTEXT__ < \"u\" && (m = __VUE_SSR_CONTEXT__), s && s.call(this, m), m && m._registeredComponents && m._registeredComponents.add(o);\n }, u._ssrRegister = l) : s && (l = i ? function() {\n s.call(this, (u.functional ? this.parent : this).$root.$options.shadowRoot);\n } : s), l)\n if (u.functional) {\n u._injectStyles = l;\n var c = u.render;\n u.render = function(m, p) {\n return l.call(p), c(m, p);\n };\n } else {\n var d = u.beforeCreate;\n u.beforeCreate = d ? [].concat(d, l) : [l];\n }\n return { exports: e, options: u };\n}\nconst Wu = {};\nvar L4 = Na(N4, O4, j4, !1, z4, null, null, null);\nfunction z4(e) {\n for (let t in Wu)\n this[t] = Wu[t];\n}\nvar Gr = function() {\n return L4.exports;\n}(), Ns = { methods: { show(...e) {\n return this.$refs.popper.show(...e);\n}, hide(...e) {\n return this.$refs.popper.hide(...e);\n}, dispose(...e) {\n return this.$refs.popper.dispose(...e);\n}, onResize(...e) {\n return this.$refs.popper.onResize(...e);\n} } }, U4 = { name: \"VPopperWrapper\", components: { Popper: $r(), PopperContent: Gr }, mixins: [Ns, Ir], inheritAttrs: !1, props: { theme: { type: String, default() {\n return this.$options.vPopperTheme;\n} } }, methods: { getTargetNodes() {\n return Array.from(this.$refs.reference.children).filter((e) => e !== this.$refs.popperContent.$el);\n} } }, M4 = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"Popper\", e._g(e._b({ ref: \"popper\", attrs: { theme: e.theme, \"target-nodes\": e.getTargetNodes, \"reference-node\": function() {\n return e.$refs.reference;\n }, \"popper-node\": function() {\n return e.$refs.popperContent.$el;\n } }, scopedSlots: e._u([{ key: \"default\", fn: function(n) {\n var s = n.popperId, r = n.isShown, o = n.shouldMountContent, i = n.skipTransition, u = n.autoHide, l = n.show, c = n.hide, d = n.handleResize, m = n.onResize, p = n.classes, h = n.result;\n return [a(\"div\", { ref: \"reference\", staticClass: \"v-popper\", class: [e.themeClass, { \"v-popper--shown\": r }] }, [e._t(\"default\", null, { shown: r, show: l, hide: c }), a(\"PopperContent\", { ref: \"popperContent\", attrs: { \"popper-id\": s, theme: e.theme, shown: r, mounted: o, \"skip-transition\": i, \"auto-hide\": u, \"handle-resize\": d, classes: p, result: h }, on: { hide: c, resize: m } }, [e._t(\"popper\", null, { shown: r, hide: c })], 2)], 2)];\n } }], null, !0) }, \"Popper\", e.$attrs, !1), e.$listeners));\n}, R4 = [];\nconst Zu = {};\nvar $4 = Na(U4, M4, R4, !1, I4, null, null, null);\nfunction I4(e) {\n for (let t in Zu)\n this[t] = Zu[t];\n}\nvar Os = function() {\n return $4.exports;\n}(), G4 = _s(Nt({}, Os), { name: \"VDropdown\", vPopperTheme: \"dropdown\" });\nlet H4, q4;\nconst Ku = {};\nvar V4 = Na(G4, H4, q4, !1, W4, null, null, null);\nfunction W4(e) {\n for (let t in Ku)\n this[t] = Ku[t];\n}\nvar ir = function() {\n return V4.exports;\n}(), Z4 = _s(Nt({}, Os), { name: \"VMenu\", vPopperTheme: \"menu\" });\nlet K4, J4;\nconst Ju = {};\nvar Y4 = Na(Z4, K4, J4, !1, X4, null, null, null);\nfunction X4(e) {\n for (let t in Ju)\n this[t] = Ju[t];\n}\nvar ur = function() {\n return Y4.exports;\n}(), Q4 = _s(Nt({}, Os), { name: \"VTooltip\", vPopperTheme: \"tooltip\" });\nlet ev, tv;\nconst Yu = {};\nvar av = Na(Q4, ev, tv, !1, nv, null, null, null);\nfunction nv(e) {\n for (let t in Yu)\n this[t] = Yu[t];\n}\nvar lr = function() {\n return av.exports;\n}(), sv = { name: \"VTooltipDirective\", components: { Popper: $r(), PopperContent: Gr }, mixins: [Ns], inheritAttrs: !1, props: { theme: { type: String, default: \"tooltip\" }, html: { type: Boolean, default() {\n return Sa(this.theme, \"html\");\n} }, content: { type: [String, Number, Function], default: null }, loadingContent: { type: String, default() {\n return Sa(this.theme, \"loadingContent\");\n} } }, data() {\n return { asyncContent: null };\n}, computed: { isContentAsync() {\n return typeof this.content == \"function\";\n}, loading() {\n return this.isContentAsync && this.asyncContent == null;\n}, finalContent() {\n return this.isContentAsync ? this.loading ? this.loadingContent : this.asyncContent : this.content;\n} }, watch: { content: { handler() {\n this.fetchContent(!0);\n}, immediate: !0 }, async finalContent(e) {\n await this.$nextTick(), this.$refs.popper.onResize();\n} }, created() {\n this.$_fetchId = 0;\n}, methods: { fetchContent(e) {\n if (typeof this.content == \"function\" && this.$_isShown && (e || !this.$_loading && this.asyncContent == null)) {\n this.asyncContent = null, this.$_loading = !0;\n const t = ++this.$_fetchId, a = this.content(this);\n a.then ? a.then((n) => this.onResult(t, n)) : this.onResult(t, a);\n }\n}, onResult(e, t) {\n e === this.$_fetchId && (this.$_loading = !1, this.asyncContent = t);\n}, onShow() {\n this.$_isShown = !0, this.fetchContent();\n}, onHide() {\n this.$_isShown = !1;\n} } }, ov = function() {\n var e = this, t = e.$createElement, a = e._self._c || t;\n return a(\"Popper\", e._g(e._b({ ref: \"popper\", attrs: { theme: e.theme, \"popper-node\": function() {\n return e.$refs.popperContent.$el;\n } }, on: { \"apply-show\": e.onShow, \"apply-hide\": e.onHide }, scopedSlots: e._u([{ key: \"default\", fn: function(n) {\n var s = n.popperId, r = n.isShown, o = n.shouldMountContent, i = n.skipTransition, u = n.autoHide, l = n.hide, c = n.handleResize, d = n.onResize, m = n.classes, p = n.result;\n return [a(\"PopperContent\", { ref: \"popperContent\", class: { \"v-popper--tooltip-loading\": e.loading }, attrs: { \"popper-id\": s, theme: e.theme, shown: r, mounted: o, \"skip-transition\": i, \"auto-hide\": u, \"handle-resize\": c, classes: m, result: p }, on: { hide: l, resize: d } }, [e.html ? a(\"div\", { domProps: { innerHTML: e._s(e.finalContent) } }) : a(\"div\", { domProps: { textContent: e._s(e.finalContent) } })])];\n } }]) }, \"Popper\", e.$attrs, !1), e.$listeners));\n}, rv = [];\nconst Xu = {};\nvar iv = Na(sv, ov, rv, !1, uv, null, null, null);\nfunction uv(e) {\n for (let t in Xu)\n this[t] = Xu[t];\n}\nvar cm = function() {\n return iv.exports;\n}();\nconst mm = \"v-popper--has-tooltip\";\nfunction lv(e, t) {\n let a = e.placement;\n if (!a && t)\n for (const n of Rr)\n t[n] && (a = n);\n return a || (a = Sa(e.theme || \"tooltip\", \"placement\")), a;\n}\nfunction dm(e, t, a) {\n let n;\n const s = typeof t;\n return s === \"string\" ? n = { content: t } : t && s === \"object\" ? n = t : n = { content: !1 }, n.placement = lv(n, a), n.targetNodes = () => [e], n.referenceNode = () => e, n;\n}\nfunction pm(e, t, a) {\n const n = dm(e, t, a), s = e.$_popper = new Ne({ mixins: [Ns], data() {\n return { options: n };\n }, render(o) {\n const i = this.options, { theme: u, html: l, content: c, loadingContent: d } = i, m = g4(i, [\"theme\", \"html\", \"content\", \"loadingContent\"]);\n return o(cm, { props: { theme: u, html: l, content: c, loadingContent: d }, attrs: m, ref: \"popper\" });\n }, devtools: { hide: !0 } }), r = document.createElement(\"div\");\n return document.body.appendChild(r), s.$mount(r), e.classList && e.classList.add(mm), s;\n}\nfunction Hr(e) {\n e.$_popper && (e.$_popper.$destroy(), delete e.$_popper, delete e.$_popperOldShown), e.classList && e.classList.remove(mm);\n}\nfunction Qu(e, { value: t, oldValue: a, modifiers: n }) {\n const s = dm(e, t, n);\n if (!s.content || Sa(s.theme || \"tooltip\", \"disabled\"))\n Hr(e);\n else {\n let r;\n e.$_popper ? (r = e.$_popper, r.options = s) : r = pm(e, t, n), typeof t.shown < \"u\" && t.shown !== e.$_popperOldShown && (e.$_popperOldShown = t.shown, t.shown ? r.show() : r.hide());\n }\n}\nvar gm = { bind: Qu, update: Qu, unbind(e) {\n Hr(e);\n} };\nfunction el(e) {\n e.addEventListener(\"click\", hm), e.addEventListener(\"touchstart\", fm, sa ? { passive: !0 } : !1);\n}\nfunction tl(e) {\n e.removeEventListener(\"click\", hm), e.removeEventListener(\"touchstart\", fm), e.removeEventListener(\"touchend\", vm), e.removeEventListener(\"touchcancel\", Cm);\n}\nfunction hm(e) {\n const t = e.currentTarget;\n e.closePopover = !t.$_vclosepopover_touch, e.closeAllPopover = t.$_closePopoverModifiers && !!t.$_closePopoverModifiers.all;\n}\nfunction fm(e) {\n if (e.changedTouches.length === 1) {\n const t = e.currentTarget;\n t.$_vclosepopover_touch = !0;\n const a = e.changedTouches[0];\n t.$_vclosepopover_touchPoint = a, t.addEventListener(\"touchend\", vm), t.addEventListener(\"touchcancel\", Cm);\n }\n}\nfunction vm(e) {\n const t = e.currentTarget;\n if (t.$_vclosepopover_touch = !1, e.changedTouches.length === 1) {\n const a = e.changedTouches[0], n = t.$_vclosepopover_touchPoint;\n e.closePopover = Math.abs(a.screenY - n.screenY) < 20 && Math.abs(a.screenX - n.screenX) < 20, e.closeAllPopover = t.$_closePopoverModifiers && !!t.$_closePopoverModifiers.all;\n }\n}\nfunction Cm(e) {\n const t = e.currentTarget;\n t.$_vclosepopover_touch = !1;\n}\nvar ym = { bind(e, { value: t, modifiers: a }) {\n e.$_closePopoverModifiers = a, (typeof t > \"u\" || t) && el(e);\n}, update(e, { value: t, oldValue: a, modifiers: n }) {\n e.$_closePopoverModifiers = n, t !== a && (typeof t > \"u\" || t ? el(e) : tl(e));\n}, unbind(e) {\n tl(e);\n} };\nconst cv = ht, mv = gm, dv = ym, pv = ir, gv = ur, hv = $r, fv = Gr, vv = Ns, Cv = Os, yv = Ir, Av = lr, wv = cm;\nfunction Am(e, t = {}) {\n e.$_vTooltipInstalled || (e.$_vTooltipInstalled = !0, rm(ht, t), e.directive(\"tooltip\", gm), e.directive(\"close-popper\", ym), e.component(\"v-tooltip\", lr), e.component(\"VTooltip\", lr), e.component(\"v-dropdown\", ir), e.component(\"VDropdown\", ir), e.component(\"v-menu\", ur), e.component(\"VMenu\", ur));\n}\nconst wm = { version: \"1.0.0-beta.19\", install: Am, options: ht };\nlet Bn = null;\ntypeof window < \"u\" ? Bn = window.Vue : typeof global < \"u\" && (Bn = global.Vue), Bn && Bn.use(wm);\nconst bv = Object.freeze(Object.defineProperty({ __proto__: null, Dropdown: pv, HIDE_EVENT_MAP: nr, Menu: gv, Popper: hv, PopperContent: fv, PopperMethods: vv, PopperWrapper: Cv, SHOW_EVENT_MAP: ar, ThemeClass: yv, Tooltip: Av, TooltipDirective: wv, VClosePopper: dv, VTooltip: mv, createTooltip: pm, default: wm, destroyTooltip: Hr, hideAllPoppers: w4, install: Am, options: cv, placements: Rr }, Symbol.toStringTag, { value: \"Module\" })), xv = Ps(bv);\nvar bm = [\"input:not([inert])\", \"select:not([inert])\", \"textarea:not([inert])\", \"a[href]:not([inert])\", \"button:not([inert])\", \"[tabindex]:not(slot):not([inert])\", \"audio[controls]:not([inert])\", \"video[controls]:not([inert])\", '[contenteditable]:not([contenteditable=\"false\"]):not([inert])', \"details>summary:first-of-type:not([inert])\", \"details:not([inert])\"], ds = bm.join(\",\"), xm = typeof Element > \"u\", oa = xm ? function() {\n} : Element.prototype.matches || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector, ps = !xm && Element.prototype.getRootNode ? function(e) {\n var t;\n return e == null || (t = e.getRootNode) === null || t === void 0 ? void 0 : t.call(e);\n} : function(e) {\n return e?.ownerDocument;\n}, gs = function e(t, a) {\n var n;\n a === void 0 && (a = !0);\n var s = t == null || (n = t.getAttribute) === null || n === void 0 ? void 0 : n.call(t, \"inert\"), r = s === \"\" || s === \"true\", o = r || a && t && e(t.parentNode);\n return o;\n}, kv = function(e) {\n var t, a = e == null || (t = e.getAttribute) === null || t === void 0 ? void 0 : t.call(e, \"contenteditable\");\n return a === \"\" || a === \"true\";\n}, km = function(e, t, a) {\n if (gs(e))\n return [];\n var n = Array.prototype.slice.apply(e.querySelectorAll(ds));\n return t && oa.call(e, ds) && n.unshift(e), n = n.filter(a), n;\n}, Em = function e(t, a, n) {\n for (var s = [], r = Array.from(t); r.length; ) {\n var o = r.shift();\n if (!gs(o, !1))\n if (o.tagName === \"SLOT\") {\n var i = o.assignedElements(), u = i.length ? i : o.children, l = e(u, !0, n);\n n.flatten ? s.push.apply(s, l) : s.push({ scopeParent: o, candidates: l });\n } else {\n var c = oa.call(o, ds);\n c && n.filter(o) && (a || !t.includes(o)) && s.push(o);\n var d = o.shadowRoot || typeof n.getShadowRoot == \"function\" && n.getShadowRoot(o), m = !gs(d, !1) && (!n.shadowRootFilter || n.shadowRootFilter(o));\n if (d && m) {\n var p = e(d === !0 ? o.children : d.children, !0, n);\n n.flatten ? s.push.apply(s, p) : s.push({ scopeParent: o, candidates: p });\n } else\n r.unshift.apply(r, o.children);\n }\n }\n return s;\n}, Pm = function(e) {\n return !isNaN(parseInt(e.getAttribute(\"tabindex\"), 10));\n}, Jt = function(e) {\n if (!e)\n throw new Error(\"No node provided\");\n return e.tabIndex < 0 && (/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName) || kv(e)) && !Pm(e) ? 0 : e.tabIndex;\n}, Ev = function(e, t) {\n var a = Jt(e);\n return a < 0 && t && !Pm(e) ? 0 : a;\n}, Pv = function(e, t) {\n return e.tabIndex === t.tabIndex ? e.documentOrder - t.documentOrder : e.tabIndex - t.tabIndex;\n}, Sm = function(e) {\n return e.tagName === \"INPUT\";\n}, Sv = function(e) {\n return Sm(e) && e.type === \"hidden\";\n}, Tv = function(e) {\n var t = e.tagName === \"DETAILS\" && Array.prototype.slice.apply(e.children).some(function(a) {\n return a.tagName === \"SUMMARY\";\n });\n return t;\n}, Fv = function(e, t) {\n for (var a = 0; a < e.length; a++)\n if (e[a].checked && e[a].form === t)\n return e[a];\n}, Dv = function(e) {\n if (!e.name)\n return !0;\n var t = e.form || ps(e), a = function(r) {\n return t.querySelectorAll('input[type=\"radio\"][name=\"' + r + '\"]');\n }, n;\n if (typeof window < \"u\" && typeof window.CSS < \"u\" && typeof window.CSS.escape == \"function\")\n n = a(window.CSS.escape(e.name));\n else\n try {\n n = a(e.name);\n } catch (r) {\n return console.error(\"Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s\", r.message), !1;\n }\n var s = Fv(n, e.form);\n return !s || s === e;\n}, Bv = function(e) {\n return Sm(e) && e.type === \"radio\";\n}, _v = function(e) {\n return Bv(e) && !Dv(e);\n}, Nv = function(e) {\n var t, a = e && ps(e), n = (t = a) === null || t === void 0 ? void 0 : t.host, s = !1;\n if (a && a !== e) {\n var r, o, i;\n for (s = !!((r = n) !== null && r !== void 0 && (o = r.ownerDocument) !== null && o !== void 0 && o.contains(n) || e != null && (i = e.ownerDocument) !== null && i !== void 0 && i.contains(e)); !s && n; ) {\n var u, l, c;\n a = ps(n), n = (u = a) === null || u === void 0 ? void 0 : u.host, s = !!((l = n) !== null && l !== void 0 && (c = l.ownerDocument) !== null && c !== void 0 && c.contains(n));\n }\n }\n return s;\n}, al = function(e) {\n var t = e.getBoundingClientRect(), a = t.width, n = t.height;\n return a === 0 && n === 0;\n}, Ov = function(e, t) {\n var a = t.displayCheck, n = t.getShadowRoot;\n if (getComputedStyle(e).visibility === \"hidden\")\n return !0;\n var s = oa.call(e, \"details>summary:first-of-type\"), r = s ? e.parentElement : e;\n if (oa.call(r, \"details:not([open]) *\"))\n return !0;\n if (!a || a === \"full\" || a === \"legacy-full\") {\n if (typeof n == \"function\") {\n for (var o = e; e; ) {\n var i = e.parentElement, u = ps(e);\n if (i && !i.shadowRoot && n(i) === !0)\n return al(e);\n e.assignedSlot ? e = e.assignedSlot : !i && u !== e.ownerDocument ? e = u.host : e = i;\n }\n e = o;\n }\n if (Nv(e))\n return !e.getClientRects().length;\n if (a !== \"legacy-full\")\n return !0;\n } else if (a === \"non-zero-area\")\n return al(e);\n return !1;\n}, jv = function(e) {\n if (/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))\n for (var t = e.parentElement; t; ) {\n if (t.tagName === \"FIELDSET\" && t.disabled) {\n for (var a = 0; a < t.children.length; a++) {\n var n = t.children.item(a);\n if (n.tagName === \"LEGEND\")\n return oa.call(t, \"fieldset[disabled] *\") ? !0 : !n.contains(e);\n }\n return !0;\n }\n t = t.parentElement;\n }\n return !1;\n}, hs = function(e, t) {\n return !(t.disabled || gs(t) || Sv(t) || Ov(t, e) || Tv(t) || jv(t));\n}, cr = function(e, t) {\n return !(_v(t) || Jt(t) < 0 || !hs(e, t));\n}, Lv = function(e) {\n var t = parseInt(e.getAttribute(\"tabindex\"), 10);\n return !!(isNaN(t) || t >= 0);\n}, zv = function e(t) {\n var a = [], n = [];\n return t.forEach(function(s, r) {\n var o = !!s.scopeParent, i = o ? s.scopeParent : s, u = Ev(i, o), l = o ? e(s.candidates) : i;\n u === 0 ? o ? a.push.apply(a, l) : a.push(i) : n.push({ documentOrder: r, tabIndex: u, item: s, isScope: o, content: l });\n }), n.sort(Pv).reduce(function(s, r) {\n return r.isScope ? s.push.apply(s, r.content) : s.push(r.content), s;\n }, []).concat(a);\n}, Uv = function(e, t) {\n t = t || {};\n var a;\n return t.getShadowRoot ? a = Em([e], t.includeContainer, { filter: cr.bind(null, t), flatten: !1, getShadowRoot: t.getShadowRoot, shadowRootFilter: Lv }) : a = km(e, t.includeContainer, cr.bind(null, t)), zv(a);\n}, Mv = function(e, t) {\n t = t || {};\n var a;\n return t.getShadowRoot ? a = Em([e], t.includeContainer, { filter: hs.bind(null, t), flatten: !0, getShadowRoot: t.getShadowRoot }) : a = km(e, t.includeContainer, hs.bind(null, t)), a;\n}, fa = function(e, t) {\n if (t = t || {}, !e)\n throw new Error(\"No node provided\");\n return oa.call(e, ds) === !1 ? !1 : cr(t, e);\n}, Rv = bm.concat(\"iframe\").join(\",\"), go = function(e, t) {\n if (t = t || {}, !e)\n throw new Error(\"No node provided\");\n return oa.call(e, Rv) === !1 ? !1 : hs(t, e);\n};\nfunction nl(e, t) {\n var a = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var n = Object.getOwnPropertySymbols(e);\n t && (n = n.filter(function(s) {\n return Object.getOwnPropertyDescriptor(e, s).enumerable;\n })), a.push.apply(a, n);\n }\n return a;\n}\nfunction sl(e) {\n for (var t = 1; t < arguments.length; t++) {\n var a = arguments[t] != null ? arguments[t] : {};\n t % 2 ? nl(Object(a), !0).forEach(function(n) {\n $v(e, n, a[n]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(a)) : nl(Object(a)).forEach(function(n) {\n Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(a, n));\n });\n }\n return e;\n}\nfunction $v(e, t, a) {\n return t = Gv(t), t in e ? Object.defineProperty(e, t, { value: a, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = a, e;\n}\nfunction Iv(e, t) {\n if (typeof e != \"object\" || e === null)\n return e;\n var a = e[Symbol.toPrimitive];\n if (a !== void 0) {\n var n = a.call(e, t || \"default\");\n if (typeof n != \"object\")\n return n;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (t === \"string\" ? String : Number)(e);\n}\nfunction Gv(e) {\n var t = Iv(e, \"string\");\n return typeof t == \"symbol\" ? t : String(t);\n}\nvar ol = { activateTrap: function(e, t) {\n if (e.length > 0) {\n var a = e[e.length - 1];\n a !== t && a.pause();\n }\n var n = e.indexOf(t);\n n === -1 || e.splice(n, 1), e.push(t);\n}, deactivateTrap: function(e, t) {\n var a = e.indexOf(t);\n a !== -1 && e.splice(a, 1), e.length > 0 && e[e.length - 1].unpause();\n} }, Hv = function(e) {\n return e.tagName && e.tagName.toLowerCase() === \"input\" && typeof e.select == \"function\";\n}, qv = function(e) {\n return e?.key === \"Escape\" || e?.key === \"Esc\" || e?.keyCode === 27;\n}, Za = function(e) {\n return e?.key === \"Tab\" || e?.keyCode === 9;\n}, Vv = function(e) {\n return Za(e) && !e.shiftKey;\n}, Wv = function(e) {\n return Za(e) && e.shiftKey;\n}, rl = function(e) {\n return setTimeout(e, 0);\n}, il = function(e, t) {\n var a = -1;\n return e.every(function(n, s) {\n return t(n) ? (a = s, !1) : !0;\n }), a;\n}, Ra = function(e) {\n for (var t = arguments.length, a = new Array(t > 1 ? t - 1 : 0), n = 1; n < t; n++)\n a[n - 1] = arguments[n];\n return typeof e == \"function\" ? e.apply(void 0, a) : e;\n}, _n = function(e) {\n return e.target.shadowRoot && typeof e.composedPath == \"function\" ? e.composedPath()[0] : e.target;\n}, Zv = [], Kv = function(e, t) {\n var a = t?.document || document, n = t?.trapStack || Zv, s = sl({ returnFocusOnDeactivate: !0, escapeDeactivates: !0, delayInitialFocus: !0, isKeyForward: Vv, isKeyBackward: Wv }, t), r = { containers: [], containerGroups: [], tabbableGroups: [], nodeFocusedBeforeActivation: null, mostRecentlyFocusedNode: null, active: !1, paused: !1, delayInitialFocusTimer: void 0, recentNavEvent: void 0 }, o, i = function(C, E, T) {\n return C && C[E] !== void 0 ? C[E] : s[T || E];\n }, u = function(C, E) {\n var T = typeof E?.composedPath == \"function\" ? E.composedPath() : void 0;\n return r.containerGroups.findIndex(function(f) {\n var A = f.container, S = f.tabbableNodes;\n return A.contains(C) || T?.includes(A) || S.find(function(D) {\n return D === C;\n });\n });\n }, l = function(C) {\n var E = s[C];\n if (typeof E == \"function\") {\n for (var T = arguments.length, f = new Array(T > 1 ? T - 1 : 0), A = 1; A < T; A++)\n f[A - 1] = arguments[A];\n E = E.apply(void 0, f);\n }\n if (E === !0 && (E = void 0), !E) {\n if (E === void 0 || E === !1)\n return E;\n throw new Error(\"`\".concat(C, \"` was specified but was not a node, or did not return a node\"));\n }\n var S = E;\n if (typeof E == \"string\" && (S = a.querySelector(E), !S))\n throw new Error(\"`\".concat(C, \"` as selector refers to no known node\"));\n return S;\n }, c = function() {\n var C = l(\"initialFocus\");\n if (C === !1)\n return !1;\n if (C === void 0 || !go(C, s.tabbableOptions))\n if (u(a.activeElement) >= 0)\n C = a.activeElement;\n else {\n var E = r.tabbableGroups[0], T = E && E.firstTabbableNode;\n C = T || l(\"fallbackFocus\");\n }\n if (!C)\n throw new Error(\"Your focus-trap needs to have at least one focusable element\");\n return C;\n }, d = function() {\n if (r.containerGroups = r.containers.map(function(C) {\n var E = Uv(C, s.tabbableOptions), T = Mv(C, s.tabbableOptions), f = E.length > 0 ? E[0] : void 0, A = E.length > 0 ? E[E.length - 1] : void 0, S = T.find(function(B) {\n return fa(B);\n }), D = T.slice().reverse().find(function(B) {\n return fa(B);\n }), R = !!E.find(function(B) {\n return Jt(B) > 0;\n });\n return { container: C, tabbableNodes: E, focusableNodes: T, posTabIndexesFound: R, firstTabbableNode: f, lastTabbableNode: A, firstDomTabbableNode: S, lastDomTabbableNode: D, nextTabbableNode: function(B) {\n var F = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0, W = E.indexOf(B);\n return W < 0 ? F ? T.slice(T.indexOf(B) + 1).find(function(U) {\n return fa(U);\n }) : T.slice(0, T.indexOf(B)).reverse().find(function(U) {\n return fa(U);\n }) : E[W + (F ? 1 : -1)];\n } };\n }), r.tabbableGroups = r.containerGroups.filter(function(C) {\n return C.tabbableNodes.length > 0;\n }), r.tabbableGroups.length <= 0 && !l(\"fallbackFocus\"))\n throw new Error(\"Your focus-trap must have at least one container with at least one tabbable node in it at all times\");\n if (r.containerGroups.find(function(C) {\n return C.posTabIndexesFound;\n }) && r.containerGroups.length > 1)\n throw new Error(\"At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.\");\n }, m = function C(E) {\n if (E !== !1 && E !== a.activeElement) {\n if (!E || !E.focus) {\n C(c());\n return;\n }\n E.focus({ preventScroll: !!s.preventScroll }), r.mostRecentlyFocusedNode = E, Hv(E) && E.select();\n }\n }, p = function(C) {\n var E = l(\"setReturnFocus\", C);\n return E || (E === !1 ? !1 : C);\n }, h = function(C) {\n var E = C.target, T = C.event, f = C.isBackward, A = f === void 0 ? !1 : f;\n E = E || _n(T), d();\n var S = null;\n if (r.tabbableGroups.length > 0) {\n var D = u(E, T), R = D >= 0 ? r.containerGroups[D] : void 0;\n if (D < 0)\n A ? S = r.tabbableGroups[r.tabbableGroups.length - 1].lastTabbableNode : S = r.tabbableGroups[0].firstTabbableNode;\n else if (A) {\n var B = il(r.tabbableGroups, function(J) {\n var le = J.firstTabbableNode;\n return E === le;\n });\n if (B < 0 && (R.container === E || go(E, s.tabbableOptions) && !fa(E, s.tabbableOptions) && !R.nextTabbableNode(E, !1)) && (B = D), B >= 0) {\n var F = B === 0 ? r.tabbableGroups.length - 1 : B - 1, W = r.tabbableGroups[F];\n S = Jt(E) >= 0 ? W.lastTabbableNode : W.lastDomTabbableNode;\n } else\n Za(T) || (S = R.nextTabbableNode(E, !1));\n } else {\n var U = il(r.tabbableGroups, function(J) {\n var le = J.lastTabbableNode;\n return E === le;\n });\n if (U < 0 && (R.container === E || go(E, s.tabbableOptions) && !fa(E, s.tabbableOptions) && !R.nextTabbableNode(E)) && (U = D), U >= 0) {\n var j = U === r.tabbableGroups.length - 1 ? 0 : U + 1, ee = r.tabbableGroups[j];\n S = Jt(E) >= 0 ? ee.firstTabbableNode : ee.firstDomTabbableNode;\n } else\n Za(T) || (S = R.nextTabbableNode(E));\n }\n } else\n S = l(\"fallbackFocus\");\n return S;\n }, y = function(C) {\n var E = _n(C);\n if (!(u(E, C) >= 0)) {\n if (Ra(s.clickOutsideDeactivates, C)) {\n o.deactivate({ returnFocus: s.returnFocusOnDeactivate });\n return;\n }\n Ra(s.allowOutsideClick, C) || C.preventDefault();\n }\n }, P = function(C) {\n var E = _n(C), T = u(E, C) >= 0;\n if (T || E instanceof Document)\n T && (r.mostRecentlyFocusedNode = E);\n else {\n C.stopImmediatePropagation();\n var f, A = !0;\n if (r.mostRecentlyFocusedNode)\n if (Jt(r.mostRecentlyFocusedNode) > 0) {\n var S = u(r.mostRecentlyFocusedNode), D = r.containerGroups[S].tabbableNodes;\n if (D.length > 0) {\n var R = D.findIndex(function(B) {\n return B === r.mostRecentlyFocusedNode;\n });\n R >= 0 && (s.isKeyForward(r.recentNavEvent) ? R + 1 < D.length && (f = D[R + 1], A = !1) : R - 1 >= 0 && (f = D[R - 1], A = !1));\n }\n } else\n r.containerGroups.some(function(B) {\n return B.tabbableNodes.some(function(F) {\n return Jt(F) > 0;\n });\n }) || (A = !1);\n else\n A = !1;\n A && (f = h({ target: r.mostRecentlyFocusedNode, isBackward: s.isKeyBackward(r.recentNavEvent) })), m(f || r.mostRecentlyFocusedNode || c());\n }\n r.recentNavEvent = void 0;\n }, v = function(C) {\n var E = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;\n r.recentNavEvent = C;\n var T = h({ event: C, isBackward: E });\n T && (Za(C) && C.preventDefault(), m(T));\n }, g = function(C) {\n if (qv(C) && Ra(s.escapeDeactivates, C) !== !1) {\n C.preventDefault(), o.deactivate();\n return;\n }\n (s.isKeyForward(C) || s.isKeyBackward(C)) && v(C, s.isKeyBackward(C));\n }, b = function(C) {\n var E = _n(C);\n u(E, C) >= 0 || Ra(s.clickOutsideDeactivates, C) || Ra(s.allowOutsideClick, C) || (C.preventDefault(), C.stopImmediatePropagation());\n }, x = function() {\n if (r.active)\n return ol.activateTrap(n, o), r.delayInitialFocusTimer = s.delayInitialFocus ? rl(function() {\n m(c());\n }) : m(c()), a.addEventListener(\"focusin\", P, !0), a.addEventListener(\"mousedown\", y, { capture: !0, passive: !1 }), a.addEventListener(\"touchstart\", y, { capture: !0, passive: !1 }), a.addEventListener(\"click\", b, { capture: !0, passive: !1 }), a.addEventListener(\"keydown\", g, { capture: !0, passive: !1 }), o;\n }, _ = function() {\n if (r.active)\n return a.removeEventListener(\"focusin\", P, !0), a.removeEventListener(\"mousedown\", y, !0), a.removeEventListener(\"touchstart\", y, !0), a.removeEventListener(\"click\", b, !0), a.removeEventListener(\"keydown\", g, !0), o;\n }, w = function(C) {\n var E = C.some(function(T) {\n var f = Array.from(T.removedNodes);\n return f.some(function(A) {\n return A === r.mostRecentlyFocusedNode;\n });\n });\n E && m(c());\n }, L = typeof window < \"u\" && \"MutationObserver\" in window ? new MutationObserver(w) : void 0, H = function() {\n L && (L.disconnect(), r.active && !r.paused && r.containers.map(function(C) {\n L.observe(C, { subtree: !0, childList: !0 });\n }));\n };\n return o = { get active() {\n return r.active;\n }, get paused() {\n return r.paused;\n }, activate: function(C) {\n if (r.active)\n return this;\n var E = i(C, \"onActivate\"), T = i(C, \"onPostActivate\"), f = i(C, \"checkCanFocusTrap\");\n f || d(), r.active = !0, r.paused = !1, r.nodeFocusedBeforeActivation = a.activeElement, E?.();\n var A = function() {\n f && d(), x(), H(), T?.();\n };\n return f ? (f(r.containers.concat()).then(A, A), this) : (A(), this);\n }, deactivate: function(C) {\n if (!r.active)\n return this;\n var E = sl({ onDeactivate: s.onDeactivate, onPostDeactivate: s.onPostDeactivate, checkCanReturnFocus: s.checkCanReturnFocus }, C);\n clearTimeout(r.delayInitialFocusTimer), r.delayInitialFocusTimer = void 0, _(), r.active = !1, r.paused = !1, H(), ol.deactivateTrap(n, o);\n var T = i(E, \"onDeactivate\"), f = i(E, \"onPostDeactivate\"), A = i(E, \"checkCanReturnFocus\"), S = i(E, \"returnFocus\", \"returnFocusOnDeactivate\");\n T?.();\n var D = function() {\n rl(function() {\n S && m(p(r.nodeFocusedBeforeActivation)), f?.();\n });\n };\n return S && A ? (A(p(r.nodeFocusedBeforeActivation)).then(D, D), this) : (D(), this);\n }, pause: function(C) {\n if (r.paused || !r.active)\n return this;\n var E = i(C, \"onPause\"), T = i(C, \"onPostPause\");\n return r.paused = !0, E?.(), _(), H(), T?.(), this;\n }, unpause: function(C) {\n if (!r.paused || !r.active)\n return this;\n var E = i(C, \"onUnpause\"), T = i(C, \"onPostUnpause\");\n return r.paused = !1, E?.(), d(), x(), H(), T?.(), this;\n }, updateContainerElements: function(C) {\n var E = [].concat(C).filter(Boolean);\n return r.containers = E.map(function(T) {\n return typeof T == \"string\" ? a.querySelector(T) : T;\n }), r.active && d(), H(), this;\n } }, o.updateContainerElements(e), o;\n};\nconst Jv = Object.freeze(Object.defineProperty({ __proto__: null, createFocusTrap: Kv }, Symbol.toStringTag, { value: \"Module\" })), Yv = Ps(Jv);\nfunction pn(e, t, a, n, s, r, o, i) {\n var u = typeof e == \"function\" ? e.options : e;\n t && (u.render = t, u.staticRenderFns = a, u._compiled = !0), n && (u.functional = !0), r && (u._scopeId = \"data-v-\" + r);\n var l;\n if (o ? (l = function(m) {\n m = m || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !m && typeof __VUE_SSR_CONTEXT__ < \"u\" && (m = __VUE_SSR_CONTEXT__), s && s.call(this, m), m && m._registeredComponents && m._registeredComponents.add(o);\n }, u._ssrRegister = l) : s && (l = i ? function() {\n s.call(this, (u.functional ? this.parent : this).$root.$options.shadowRoot);\n } : s), l)\n if (u.functional) {\n u._injectStyles = l;\n var c = u.render;\n u.render = function(m, p) {\n return l.call(p), c(m, p);\n };\n } else {\n var d = u.beforeCreate;\n u.beforeCreate = d ? [].concat(d, l) : [l];\n }\n return { exports: e, options: u };\n}\nconst Xv = { name: \"DotsHorizontalIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar Qv = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon dots-horizontal-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, e1 = [], t1 = pn(Xv, Qv, e1, !1, null, null, null, null);\nconst a1 = t1.exports, n1 = Object.freeze(Object.defineProperty({ __proto__: null, default: a1 }, Symbol.toStringTag, { value: \"Module\" })), s1 = Ps(n1);\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 3089: (o, i, u) => {\n function l(B) {\n return l = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(F) {\n return typeof F;\n } : function(F) {\n return F && typeof Symbol == \"function\" && F.constructor === Symbol && F !== Symbol.prototype ? \"symbol\" : typeof F;\n }, l(B);\n }\n function c(B, F) {\n var W = Object.keys(B);\n if (Object.getOwnPropertySymbols) {\n var U = Object.getOwnPropertySymbols(B);\n F && (U = U.filter(function(j) {\n return Object.getOwnPropertyDescriptor(B, j).enumerable;\n })), W.push.apply(W, U);\n }\n return W;\n }\n function d(B) {\n for (var F = 1; F < arguments.length; F++) {\n var W = arguments[F] != null ? arguments[F] : {};\n F % 2 ? c(Object(W), !0).forEach(function(U) {\n m(B, U, W[U]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(B, Object.getOwnPropertyDescriptors(W)) : c(Object(W)).forEach(function(U) {\n Object.defineProperty(B, U, Object.getOwnPropertyDescriptor(W, U));\n });\n }\n return B;\n }\n function m(B, F, W) {\n return (F = function(U) {\n var j = function(ee, J) {\n if (l(ee) !== \"object\" || ee === null)\n return ee;\n var le = ee[Symbol.toPrimitive];\n if (le !== void 0) {\n var ge = le.call(ee, J || \"default\");\n if (l(ge) !== \"object\")\n return ge;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (J === \"string\" ? String : Number)(ee);\n }(U, \"string\");\n return l(j) === \"symbol\" ? j : String(j);\n }(F)) in B ? Object.defineProperty(B, F, { value: W, enumerable: !0, configurable: !0, writable: !0 }) : B[F] = W, B;\n }\n u.d(i, { default: () => R });\n const p = { name: \"NcButton\", props: { alignment: { type: String, default: \"center\", validator: function(B) {\n return [\"start\", \"start-reverse\", \"center\", \"center-reverse\", \"end\", \"end-reverse\"].includes(B);\n } }, disabled: { type: Boolean, default: !1 }, type: { type: String, validator: function(B) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf(B) !== -1;\n }, default: \"secondary\" }, nativeType: { type: String, validator: function(B) {\n return [\"submit\", \"reset\", \"button\"].indexOf(B) !== -1;\n }, default: \"button\" }, wide: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: null }, href: { type: String, default: null }, download: { type: String, default: null }, to: { type: [String, Object], default: null }, exact: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null }, pressed: { type: Boolean, default: null } }, emits: [\"update:pressed\", \"click\"], computed: { realType: function() {\n return this.pressed ? \"primary\" : this.pressed === !1 && this.type === \"primary\" ? \"secondary\" : this.type;\n }, flexAlignment: function() {\n return this.alignment.split(\"-\")[0];\n }, isReverseAligned: function() {\n return this.alignment.includes(\"-\");\n } }, render: function(B) {\n var F, W, U, j = this, ee = (F = this.$slots.default) === null || F === void 0 || (F = F[0]) === null || F === void 0 || (F = F.text) === null || F === void 0 || (W = F.trim) === null || W === void 0 ? void 0 : W.call(F), J = !!ee, le = (U = this.$slots) === null || U === void 0 ? void 0 : U.icon;\n ee || this.ariaLabel || console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\", { text: ee, ariaLabel: this.ariaLabel }, this);\n var ge = function() {\n var fe, $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.navigate, te = $.isActive, he = $.isExactActive;\n return B(j.to || !j.href ? \"button\" : \"a\", { class: [\"button-vue\", (fe = { \"button-vue--icon-only\": le && !J, \"button-vue--text-only\": J && !le, \"button-vue--icon-and-text\": le && J }, m(fe, \"button-vue--vue-\".concat(j.realType), j.realType), m(fe, \"button-vue--wide\", j.wide), m(fe, \"button-vue--\".concat(j.flexAlignment), j.flexAlignment !== \"center\"), m(fe, \"button-vue--reverse\", j.isReverseAligned), m(fe, \"active\", te), m(fe, \"router-link-exact-active\", he), fe)], attrs: d({ \"aria-label\": j.ariaLabel, \"aria-pressed\": j.pressed, disabled: j.disabled, type: j.href ? null : j.nativeType, role: j.href ? \"button\" : null, href: !j.to && j.href ? j.href : null, target: !j.to && j.href ? \"_self\" : null, rel: !j.to && j.href ? \"nofollow noreferrer noopener\" : null, download: !j.to && j.href && j.download ? j.download : null }, j.$attrs), on: d(d({}, j.$listeners), {}, { click: function(ye) {\n typeof j.pressed == \"boolean\" && j.$emit(\"update:pressed\", !j.pressed), j.$emit(\"click\", ye), z?.(ye);\n } }) }, [B(\"span\", { class: \"button-vue__wrapper\" }, [le ? B(\"span\", { class: \"button-vue__icon\", attrs: { \"aria-hidden\": j.ariaHidden } }, [j.$slots.icon]) : null, J ? B(\"span\", { class: \"button-vue__text\" }, [ee]) : null])]);\n };\n return this.to ? B(\"router-link\", { props: { custom: !0, to: this.to, exact: this.exact }, scopedSlots: { default: ge } }) : ge();\n } };\n var h = u(3379), y = u.n(h), P = u(7795), v = u.n(P), g = u(569), b = u.n(g), x = u(3565), _ = u.n(x), w = u(9216), L = u.n(w), H = u(4589), C = u.n(H), E = u(7294), T = {};\n T.styleTagTransform = C(), T.setAttributes = _(), T.insert = b().bind(null, \"head\"), T.domAPI = v(), T.insertStyleElement = L(), y()(E.Z, T), E.Z && E.Z.locals && E.Z.locals;\n var f = u(1900), A = u(2102), S = u.n(A), D = (0, f.Z)(p, void 0, void 0, !1, null, \"7aad13a0\", null);\n typeof S() == \"function\" && S()(D);\n const R = D.exports;\n }, 2297: (o, i, u) => {\n u.d(i, { default: () => W });\n var l = u(9454), c = u(4505), d = u(1206);\n function m(U) {\n return m = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(j) {\n return typeof j;\n } : function(j) {\n return j && typeof Symbol == \"function\" && j.constructor === Symbol && j !== Symbol.prototype ? \"symbol\" : typeof j;\n }, m(U);\n }\n function p() {\n p = function() {\n return U;\n };\n var U = {}, j = Object.prototype, ee = j.hasOwnProperty, J = Object.defineProperty || function(M, I, Z) {\n M[I] = Z.value;\n }, le = typeof Symbol == \"function\" ? Symbol : {}, ge = le.iterator || \"@@iterator\", fe = le.asyncIterator || \"@@asyncIterator\", $ = le.toStringTag || \"@@toStringTag\";\n function z(M, I, Z) {\n return Object.defineProperty(M, I, { value: Z, enumerable: !0, configurable: !0, writable: !0 }), M[I];\n }\n try {\n z({}, \"\");\n } catch {\n z = function(M, I, Z) {\n return M[I] = Z;\n };\n }\n function te(M, I, Z, ie) {\n var se = I && I.prototype instanceof Be ? I : Be, Ce = Object.create(se.prototype), Ae = new X(ie || []);\n return J(Ce, \"_invoke\", { value: xe(M, Z, Ae) }), Ce;\n }\n function he(M, I, Z) {\n try {\n return { type: \"normal\", arg: M.call(I, Z) };\n } catch (ie) {\n return { type: \"throw\", arg: ie };\n }\n }\n U.wrap = te;\n var ye = {};\n function Be() {\n }\n function je() {\n }\n function Re() {\n }\n var Oe = {};\n z(Oe, ge, function() {\n return this;\n });\n var me = Object.getPrototypeOf, oe = me && me(me(ce([])));\n oe && oe !== j && ee.call(oe, ge) && (Oe = oe);\n var Y = Re.prototype = Be.prototype = Object.create(Oe);\n function de(M) {\n [\"next\", \"throw\", \"return\"].forEach(function(I) {\n z(M, I, function(Z) {\n return this._invoke(I, Z);\n });\n });\n }\n function re(M, I) {\n function Z(se, Ce, Ae, Le) {\n var ke = he(M[se], M, Ce);\n if (ke.type !== \"throw\") {\n var N = ke.arg, K = N.value;\n return K && m(K) == \"object\" && ee.call(K, \"__await\") ? I.resolve(K.__await).then(function(ue) {\n Z(\"next\", ue, Ae, Le);\n }, function(ue) {\n Z(\"throw\", ue, Ae, Le);\n }) : I.resolve(K).then(function(ue) {\n N.value = ue, Ae(N);\n }, function(ue) {\n return Z(\"throw\", ue, Ae, Le);\n });\n }\n Le(ke.arg);\n }\n var ie;\n J(this, \"_invoke\", { value: function(se, Ce) {\n function Ae() {\n return new I(function(Le, ke) {\n Z(se, Ce, Le, ke);\n });\n }\n return ie = ie ? ie.then(Ae, Ae) : Ae();\n } });\n }\n function xe(M, I, Z) {\n var ie = \"suspendedStart\";\n return function(se, Ce) {\n if (ie === \"executing\")\n throw new Error(\"Generator is already running\");\n if (ie === \"completed\") {\n if (se === \"throw\")\n throw Ce;\n return ne();\n }\n for (Z.method = se, Z.arg = Ce; ; ) {\n var Ae = Z.delegate;\n if (Ae) {\n var Le = Se(Ae, Z);\n if (Le) {\n if (Le === ye)\n continue;\n return Le;\n }\n }\n if (Z.method === \"next\")\n Z.sent = Z._sent = Z.arg;\n else if (Z.method === \"throw\") {\n if (ie === \"suspendedStart\")\n throw ie = \"completed\", Z.arg;\n Z.dispatchException(Z.arg);\n } else\n Z.method === \"return\" && Z.abrupt(\"return\", Z.arg);\n ie = \"executing\";\n var ke = he(M, I, Z);\n if (ke.type === \"normal\") {\n if (ie = Z.done ? \"completed\" : \"suspendedYield\", ke.arg === ye)\n continue;\n return { value: ke.arg, done: Z.done };\n }\n ke.type === \"throw\" && (ie = \"completed\", Z.method = \"throw\", Z.arg = ke.arg);\n }\n };\n }\n function Se(M, I) {\n var Z = I.method, ie = M.iterator[Z];\n if (ie === void 0)\n return I.delegate = null, Z === \"throw\" && M.iterator.return && (I.method = \"return\", I.arg = void 0, Se(M, I), I.method === \"throw\") || Z !== \"return\" && (I.method = \"throw\", I.arg = new TypeError(\"The iterator does not provide a '\" + Z + \"' method\")), ye;\n var se = he(ie, M.iterator, I.arg);\n if (se.type === \"throw\")\n return I.method = \"throw\", I.arg = se.arg, I.delegate = null, ye;\n var Ce = se.arg;\n return Ce ? Ce.done ? (I[M.resultName] = Ce.value, I.next = M.nextLoc, I.method !== \"return\" && (I.method = \"next\", I.arg = void 0), I.delegate = null, ye) : Ce : (I.method = \"throw\", I.arg = new TypeError(\"iterator result is not an object\"), I.delegate = null, ye);\n }\n function V(M) {\n var I = { tryLoc: M[0] };\n 1 in M && (I.catchLoc = M[1]), 2 in M && (I.finallyLoc = M[2], I.afterLoc = M[3]), this.tryEntries.push(I);\n }\n function q(M) {\n var I = M.completion || {};\n I.type = \"normal\", delete I.arg, M.completion = I;\n }\n function X(M) {\n this.tryEntries = [{ tryLoc: \"root\" }], M.forEach(V, this), this.reset(!0);\n }\n function ce(M) {\n if (M) {\n var I = M[ge];\n if (I)\n return I.call(M);\n if (typeof M.next == \"function\")\n return M;\n if (!isNaN(M.length)) {\n var Z = -1, ie = function se() {\n for (; ++Z < M.length; )\n if (ee.call(M, Z))\n return se.value = M[Z], se.done = !1, se;\n return se.value = void 0, se.done = !0, se;\n };\n return ie.next = ie;\n }\n }\n return { next: ne };\n }\n function ne() {\n return { value: void 0, done: !0 };\n }\n return je.prototype = Re, J(Y, \"constructor\", { value: Re, configurable: !0 }), J(Re, \"constructor\", { value: je, configurable: !0 }), je.displayName = z(Re, $, \"GeneratorFunction\"), U.isGeneratorFunction = function(M) {\n var I = typeof M == \"function\" && M.constructor;\n return !!I && (I === je || (I.displayName || I.name) === \"GeneratorFunction\");\n }, U.mark = function(M) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(M, Re) : (M.__proto__ = Re, z(M, $, \"GeneratorFunction\")), M.prototype = Object.create(Y), M;\n }, U.awrap = function(M) {\n return { __await: M };\n }, de(re.prototype), z(re.prototype, fe, function() {\n return this;\n }), U.AsyncIterator = re, U.async = function(M, I, Z, ie, se) {\n se === void 0 && (se = Promise);\n var Ce = new re(te(M, I, Z, ie), se);\n return U.isGeneratorFunction(I) ? Ce : Ce.next().then(function(Ae) {\n return Ae.done ? Ae.value : Ce.next();\n });\n }, de(Y), z(Y, $, \"Generator\"), z(Y, ge, function() {\n return this;\n }), z(Y, \"toString\", function() {\n return \"[object Generator]\";\n }), U.keys = function(M) {\n var I = Object(M), Z = [];\n for (var ie in I)\n Z.push(ie);\n return Z.reverse(), function se() {\n for (; Z.length; ) {\n var Ce = Z.pop();\n if (Ce in I)\n return se.value = Ce, se.done = !1, se;\n }\n return se.done = !0, se;\n };\n }, U.values = ce, X.prototype = { constructor: X, reset: function(M) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = void 0, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = void 0, this.tryEntries.forEach(q), !M)\n for (var I in this)\n I.charAt(0) === \"t\" && ee.call(this, I) && !isNaN(+I.slice(1)) && (this[I] = void 0);\n }, stop: function() {\n this.done = !0;\n var M = this.tryEntries[0].completion;\n if (M.type === \"throw\")\n throw M.arg;\n return this.rval;\n }, dispatchException: function(M) {\n if (this.done)\n throw M;\n var I = this;\n function Z(ke, N) {\n return Ce.type = \"throw\", Ce.arg = M, I.next = ke, N && (I.method = \"next\", I.arg = void 0), !!N;\n }\n for (var ie = this.tryEntries.length - 1; ie >= 0; --ie) {\n var se = this.tryEntries[ie], Ce = se.completion;\n if (se.tryLoc === \"root\")\n return Z(\"end\");\n if (se.tryLoc <= this.prev) {\n var Ae = ee.call(se, \"catchLoc\"), Le = ee.call(se, \"finallyLoc\");\n if (Ae && Le) {\n if (this.prev < se.catchLoc)\n return Z(se.catchLoc, !0);\n if (this.prev < se.finallyLoc)\n return Z(se.finallyLoc);\n } else if (Ae) {\n if (this.prev < se.catchLoc)\n return Z(se.catchLoc, !0);\n } else {\n if (!Le)\n throw new Error(\"try statement without catch or finally\");\n if (this.prev < se.finallyLoc)\n return Z(se.finallyLoc);\n }\n }\n }\n }, abrupt: function(M, I) {\n for (var Z = this.tryEntries.length - 1; Z >= 0; --Z) {\n var ie = this.tryEntries[Z];\n if (ie.tryLoc <= this.prev && ee.call(ie, \"finallyLoc\") && this.prev < ie.finallyLoc) {\n var se = ie;\n break;\n }\n }\n se && (M === \"break\" || M === \"continue\") && se.tryLoc <= I && I <= se.finallyLoc && (se = null);\n var Ce = se ? se.completion : {};\n return Ce.type = M, Ce.arg = I, se ? (this.method = \"next\", this.next = se.finallyLoc, ye) : this.complete(Ce);\n }, complete: function(M, I) {\n if (M.type === \"throw\")\n throw M.arg;\n return M.type === \"break\" || M.type === \"continue\" ? this.next = M.arg : M.type === \"return\" ? (this.rval = this.arg = M.arg, this.method = \"return\", this.next = \"end\") : M.type === \"normal\" && I && (this.next = I), ye;\n }, finish: function(M) {\n for (var I = this.tryEntries.length - 1; I >= 0; --I) {\n var Z = this.tryEntries[I];\n if (Z.finallyLoc === M)\n return this.complete(Z.completion, Z.afterLoc), q(Z), ye;\n }\n }, catch: function(M) {\n for (var I = this.tryEntries.length - 1; I >= 0; --I) {\n var Z = this.tryEntries[I];\n if (Z.tryLoc === M) {\n var ie = Z.completion;\n if (ie.type === \"throw\") {\n var se = ie.arg;\n q(Z);\n }\n return se;\n }\n }\n throw new Error(\"illegal catch attempt\");\n }, delegateYield: function(M, I, Z) {\n return this.delegate = { iterator: ce(M), resultName: I, nextLoc: Z }, this.method === \"next\" && (this.arg = void 0), ye;\n } }, U;\n }\n function h(U, j, ee, J, le, ge, fe) {\n try {\n var $ = U[ge](fe), z = $.value;\n } catch (te) {\n return void ee(te);\n }\n $.done ? j(z) : Promise.resolve(z).then(J, le);\n }\n const y = { name: \"NcPopover\", components: { Dropdown: l.Dropdown }, inheritAttrs: !1, props: { popoverBaseClass: { type: String, default: \"\" }, focusTrap: { type: Boolean, default: !0 }, setReturnFocus: { default: void 0, type: [HTMLElement, SVGElement, String, Boolean] } }, emits: [\"after-show\", \"after-hide\"], beforeDestroy: function() {\n this.clearFocusTrap();\n }, methods: { useFocusTrap: function() {\n var U, j = this;\n return (U = p().mark(function ee() {\n var J, le;\n return p().wrap(function(ge) {\n for (; ; )\n switch (ge.prev = ge.next) {\n case 0:\n return ge.next = 2, j.$nextTick();\n case 2:\n if (j.focusTrap) {\n ge.next = 4;\n break;\n }\n return ge.abrupt(\"return\");\n case 4:\n if (le = (J = j.$refs.popover) === null || J === void 0 || (J = J.$refs.popperContent) === null || J === void 0 ? void 0 : J.$el) {\n ge.next = 7;\n break;\n }\n return ge.abrupt(\"return\");\n case 7:\n j.$focusTrap = (0, c.createFocusTrap)(le, { escapeDeactivates: !1, allowOutsideClick: !0, setReturnFocus: j.setReturnFocus, trapStack: (0, d.L)() }), j.$focusTrap.activate();\n case 9:\n case \"end\":\n return ge.stop();\n }\n }, ee);\n }), function() {\n var ee = this, J = arguments;\n return new Promise(function(le, ge) {\n var fe = U.apply(ee, J);\n function $(te) {\n h(fe, le, ge, $, z, \"next\", te);\n }\n function z(te) {\n h(fe, le, ge, $, z, \"throw\", te);\n }\n $(void 0);\n });\n })();\n }, clearFocusTrap: function() {\n var U = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};\n try {\n var j;\n (j = this.$focusTrap) === null || j === void 0 || j.deactivate(U), this.$focusTrap = null;\n } catch (ee) {\n console.warn(ee);\n }\n }, afterShow: function() {\n var U = this;\n this.$nextTick(function() {\n U.$emit(\"after-show\"), U.useFocusTrap();\n });\n }, afterHide: function() {\n this.$emit(\"after-hide\"), this.clearFocusTrap();\n } } }, P = y;\n var v = u(3379), g = u.n(v), b = u(7795), x = u.n(b), _ = u(569), w = u.n(_), L = u(3565), H = u.n(L), C = u(9216), E = u.n(C), T = u(4589), f = u.n(T), A = u(1625), S = {};\n S.styleTagTransform = f(), S.setAttributes = H(), S.insert = w().bind(null, \"head\"), S.domAPI = x(), S.insertStyleElement = E(), g()(A.Z, S), A.Z && A.Z.locals && A.Z.locals;\n var D = u(1900), R = u(2405), B = u.n(R), F = (0, D.Z)(P, function() {\n var U = this;\n return (0, U._self._c)(\"Dropdown\", U._g(U._b({ ref: \"popover\", attrs: { distance: 10, \"arrow-padding\": 10, \"no-auto-focus\": !0, \"popper-class\": U.popoverBaseClass }, on: { \"apply-show\": U.afterShow, \"apply-hide\": U.afterHide }, scopedSlots: U._u([{ key: \"popper\", fn: function() {\n return [U._t(\"default\")];\n }, proxy: !0 }], null, !0) }, \"Dropdown\", U.$attrs, !1), U.$listeners), [U._t(\"trigger\")], 2);\n }, [], !1, null, null, null);\n typeof B() == \"function\" && B()(F);\n const W = F.exports;\n }, 932: (o, i, u) => {\n u.d(i, { t: () => m });\n var l = u(7931), c = (0, l.getGettextBuilder)().detectLocale();\n [{ locale: \"af\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ar\", translations: { \"{tag} (invisible)\": \"{tag} (غير مرئي)\", \"{tag} (restricted)\": \"{tag} (مقيد)\", \"a few seconds ago\": \"منذ عدة ثوانٍ مضت\", Actions: \"الإجراءات\", 'Actions for item with name \"{name}\"': 'إجراءات على العنصر المُسمَّى \"{name}\"', Activities: \"الحركات\", \"Animals & Nature\": \"الحيوانات والطبيعة\", \"Any link\": \"أيَّ رابطٍ\", \"Anything shared with the same group of people will show up here\": \"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\", \"Avatar of {displayName}\": \"الرمز التجسيدي avatar ـ {displayName} \", \"Avatar of {displayName}, {status}\": \"الرمز التجسيدي لـ {displayName}، {status}\", Back: \"عودة\", \"Back to provider selection\": \"عودة إلى اختيار المُزوِّد\", \"Cancel changes\": \"إلغاء التغييرات\", \"Change name\": \"تغيير الاسم\", Choose: \"إختَر\", \"Clear search\": \"محو البحث\", \"Clear text\": \"محو النص\", Close: \"أغلِق\", \"Close modal\": \"أغلِق النافذة الصُّورِية\", \"Close navigation\": \"أغلِق المُتصفِّح\", \"Close sidebar\": \"قفل الشريط الجانبي\", \"Close Smart Picker\": \"أغلِق اللاقط الذكي Smart Picker\", \"Collapse menu\": \"طَيّ القائمة\", \"Confirm changes\": \"تأكيد التغييرات\", Custom: \"مُخصَّص\", \"Edit item\": \"تعديل عنصر\", \"Enter link\": \"أدخِل الرابط\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\", \"External documentation for {name}\": \"التوثيق الخارجي لـ {name}\", Favorite: \"المُفضَّلة\", Flags: \"الأعلام\", \"Food & Drink\": \"الطعام والشراب\", \"Frequently used\": \"شائعة الاستعمال\", Global: \"شامل\", \"Go back to the list\": \"عودة إلى القائمة\", \"Hide password\": \"إخفاء كلمة المرور\", 'Load more \"{options}\"\"': 'حمّل \"{options}\"\" أكثر', \"Message limit of {count} characters reached\": \"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\", \"More items …\": \"عناصر أخرى ...\", \"More options\": \"خيارات أخرى ...\", Next: \"التالي\", \"No emoji found\": \"لم يتم العثور على أي إيموجي emoji\", \"No link provider found\": \"لا يوجد أيّ مزود روابط link provider\", \"No results\": \"ليس هناك أية نتيجة\", Objects: \"أشياء\", \"Open contact menu\": \"إفتَح قائمة جهات الاتصال\", 'Open link to \"{resourceName}\"': 'إفتَح الرابط إلى \"{resourceName}\"', \"Open menu\": \"إفتَح القائمة\", \"Open navigation\": \"إفتَح المتصفح\", \"Open settings menu\": \"إفتَح قائمة الإعدادات\", \"Password is secure\": \"كلمة المرور مُؤمّنة\", \"Pause slideshow\": \"تجميد عرض الشرائح\", \"People & Body\": \"ناس و أجسام\", \"Pick a date\": \"إختَر التاريخ\", \"Pick a date and a time\": \"إختَر التاريخ و الوقت\", \"Pick a month\": \"إختَر الشهر\", \"Pick a time\": \"إختَر الوقت\", \"Pick a week\": \"إختَر الأسبوع\", \"Pick a year\": \"إختَر السنة\", \"Pick an emoji\": \"إختَر رمز إيموجي emoji\", \"Please select a time zone:\": \"الرجاء تحديد المنطقة الزمنية:\", Previous: \"السابق\", \"Provider icon\": \"أيقونة المُزوِّد\", \"Raw link {options}\": \" الرابط الخام raw link ـ {options}\", \"Related resources\": \"مصادر ذات صلة\", Search: \"بحث\", \"Search emoji\": \"بحث عن إيموجي emoji\", \"Search results\": \"نتائج البحث\", \"sec. ago\": \"ثانية مضت\", \"seconds ago\": \"ثوان مضت\", \"Select a tag\": \"إختَر سِمَةً tag\", \"Select provider\": \"إختَر مٌزوِّداً\", Settings: \"الإعدادات\", \"Settings navigation\": \"إعدادات التّصفُّح\", \"Show password\": \"أظهِر كلمة المرور\", \"Smart Picker\": \"اللاقط الذكي smart picker\", \"Smileys & Emotion\": \"وجوهٌ ضاحكة و مشاعر\", \"Start slideshow\": \"إبدإ العرض\", \"Start typing to search\": \"إبدإ كتابة مفردات البحث\", Submit: \"إرسال\", Symbols: \"رموز\", \"Travel & Places\": \"سفر و أماكن\", \"Type to search time zone\": \"أكتُب للبحث عن منطقة زمنية\", \"Unable to search the group\": \"تعذّر البحث في المجموعة\", \"Undo changes\": \"تراجع عن التغييرات\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...' } }, { locale: \"ast\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"az\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"be\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bg\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bn_BD\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"br\", translations: { \"{tag} (invisible)\": \"{tag} (diwelus)\", \"{tag} (restricted)\": \"{tag} (bevennet)\", \"a few seconds ago\": \"\", Actions: \"Oberioù\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Oberiantizoù\", \"Animals & Nature\": \"Loened & Natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Dibab\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Serriñ\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Personelañ\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Bannieloù\", \"Food & Drink\": \"Boued & Evajoù\", \"Frequently used\": \"Implijet alies\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Da heul\", \"No emoji found\": \"Emoji ebet kavet\", \"No link provider found\": \"\", \"No results\": \"Disoc'h ebet\", Objects: \"Traoù\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Arsav an diaporama\", \"People & Body\": \"Tud & Korf\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Choaz un emoji\", \"Please select a time zone:\": \"\", Previous: \"A-raok\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Klask\", \"Search emoji\": \"\", \"Search results\": \"Disoc'hoù an enklask\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Choaz ur c'hlav\", \"Select provider\": \"\", Settings: \"Arventennoù\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileyioù & Fromoù\", \"Start slideshow\": \"Kregiñ an diaporama\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Arouezioù\", \"Travel & Places\": \"Beaj & Lec'hioù\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Dibosupl eo klask ar strollad\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"bs\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ca\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restringit)\", \"a few seconds ago\": \"\", Actions: \"Accions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activitats\", \"Animals & Nature\": \"Animals i natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancel·la els canvis\", \"Change name\": \"\", Choose: \"Tria\", \"Clear search\": \"\", \"Clear text\": \"Netejar text\", Close: \"Tanca\", \"Close modal\": \"Tancar el mode\", \"Close navigation\": \"Tanca la navegació\", \"Close sidebar\": \"Tancar la barra lateral\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmeu els canvis\", Custom: \"Personalitzat\", \"Edit item\": \"Edita l'element\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Preferit\", Flags: \"Marques\", \"Food & Drink\": \"Menjar i begudes\", \"Frequently used\": \"Utilitzats recentment\", Global: \"Global\", \"Go back to the list\": \"Torna a la llista\", \"Hide password\": \"Amagar contrasenya\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"S'ha arribat al límit de {count} caràcters per missatge\", \"More items …\": \"Més artícles...\", \"More options\": \"\", Next: \"Següent\", \"No emoji found\": \"No s'ha trobat cap emoji\", \"No link provider found\": \"\", \"No results\": \"Sense resultats\", Objects: \"Objectes\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Obre la navegació\", \"Open settings menu\": \"\", \"Password is secure\": \"Contrasenya segura
\", \"Pause slideshow\": \"Atura la presentació\", \"People & Body\": \"Persones i cos\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Trieu un emoji\", \"Please select a time zone:\": \"Seleccioneu una zona horària:\", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Recursos relacionats\", Search: \"Cerca\", \"Search emoji\": \"\", \"Search results\": \"Resultats de cerca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccioneu una etiqueta\", \"Select provider\": \"\", Settings: \"Paràmetres\", \"Settings navigation\": \"Navegació d'opcions\", \"Show password\": \"Mostrar contrasenya\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Cares i emocions\", \"Start slideshow\": \"Inicia la presentació\", \"Start typing to search\": \"\", Submit: \"Envia\", Symbols: \"Símbols\", \"Travel & Places\": \"Viatges i llocs\", \"Type to search time zone\": \"Escriviu per cercar la zona horària\", \"Unable to search the group\": \"No es pot cercar el grup\", \"Undo changes\": \"Desfés els canvis\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...' } }, { locale: \"cs\", translations: { \"{tag} (invisible)\": \"{tag} (neviditelné)\", \"{tag} (restricted)\": \"{tag} (omezené)\", \"a few seconds ago\": \"před několika sekundami\", Actions: \"Akce\", 'Actions for item with name \"{name}\"': \"Akce pro položku s názvem „{name}“\", Activities: \"Aktivity\", \"Animals & Nature\": \"Zvířata a příroda\", \"Any link\": \"Jakýkoli odkaz\", \"Anything shared with the same group of people will show up here\": \"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\", \"Avatar of {displayName}\": \"Zástupný obrázek uživatele {displayName}\", \"Avatar of {displayName}, {status}\": \"Zástupný obrázek uživatele {displayName}, {status}\", Back: \"Zpět\", \"Back to provider selection\": \"Zpět na výběr poskytovatele\", \"Cancel changes\": \"Zrušit změny\", \"Change name\": \"Změnit název\", Choose: \"Zvolit\", \"Clear search\": \"Vyčistit vyhledávání\", \"Clear text\": \"Čitelný text\", Close: \"Zavřít\", \"Close modal\": \"Zavřít dialogové okno\", \"Close navigation\": \"Zavřít navigaci\", \"Close sidebar\": \"Zavřít postranní panel\", \"Close Smart Picker\": \"Zavřít inteligentní výběr\", \"Collapse menu\": \"Sbalit nabídku\", \"Confirm changes\": \"Potvrdit změny\", Custom: \"Uživatelsky určené\", \"Edit item\": \"Upravit položku\", \"Enter link\": \"Zadat odkaz\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\", \"External documentation for {name}\": \"Externí dokumentace pro {name}\", Favorite: \"Oblíbené\", Flags: \"Příznaky\", \"Food & Drink\": \"Jídlo a pití\", \"Frequently used\": \"Často používané\", Global: \"Globální\", \"Go back to the list\": \"Jít zpět na seznam\", \"Hide password\": \"Skrýt heslo\", 'Load more \"{options}\"\"': \"Načíst více „{options}“\", \"Message limit of {count} characters reached\": \"Dosaženo limitu počtu ({count}) znaků zprávy\", \"More items …\": \"Další položky…\", \"More options\": \"Další volby\", Next: \"Následující\", \"No emoji found\": \"Nenalezeno žádné emoji\", \"No link provider found\": \"Nenalezen žádný poskytovatel odkazů\", \"No results\": \"Nic nenalezeno\", Objects: \"Objekty\", \"Open contact menu\": \"Otevřít nabídku kontaktů\", 'Open link to \"{resourceName}\"': \"Otevřít odkaz na „{resourceName}“\", \"Open menu\": \"Otevřít nabídku\", \"Open navigation\": \"Otevřít navigaci\", \"Open settings menu\": \"Otevřít nabídku nastavení\", \"Password is secure\": \"Heslo je bezpečné\", \"Pause slideshow\": \"Pozastavit prezentaci\", \"People & Body\": \"Lidé a tělo\", \"Pick a date\": \"Vybrat datum\", \"Pick a date and a time\": \"Vybrat datum a čas\", \"Pick a month\": \"Vybrat měsíc\", \"Pick a time\": \"Vybrat čas\", \"Pick a week\": \"Vybrat týden\", \"Pick a year\": \"Vybrat rok\", \"Pick an emoji\": \"Vybrat emoji\", \"Please select a time zone:\": \"Vyberte časovou zónu:\", Previous: \"Předchozí\", \"Provider icon\": \"Ikona poskytovatele\", \"Raw link {options}\": \"Holý odkaz {options}\", \"Related resources\": \"Související prostředky\", Search: \"Hledat\", \"Search emoji\": \"Hledat emoji\", \"Search results\": \"Výsledky hledání\", \"sec. ago\": \"sek. před\", \"seconds ago\": \"sekund předtím\", \"Select a tag\": \"Vybrat štítek\", \"Select provider\": \"Vybrat poskytovatele\", Settings: \"Nastavení\", \"Settings navigation\": \"Pohyb po nastavení\", \"Show password\": \"Zobrazit heslo\", \"Smart Picker\": \"Inteligentní výběr\", \"Smileys & Emotion\": \"Úsměvy a emoce\", \"Start slideshow\": \"Spustit prezentaci\", \"Start typing to search\": \"Vyhledávejte psaním\", Submit: \"Odeslat\", Symbols: \"Symboly\", \"Travel & Places\": \"Cestování a místa\", \"Type to search time zone\": \"Psaním vyhledejte časovou zónu\", \"Unable to search the group\": \"Nedaří se hledat skupinu\", \"Undo changes\": \"Vzít změny zpět\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\" } }, { locale: \"cy_GB\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"da\", translations: { \"{tag} (invisible)\": \"{tag} (usynlig)\", \"{tag} (restricted)\": \"{tag} (begrænset)\", \"a few seconds ago\": \"et par sekunder siden\", Actions: \"Handlinger\", 'Actions for item with name \"{name}\"': 'Handlinger for element med navnet \"{name}\"', Activities: \"Aktiviteter\", \"Animals & Nature\": \"Dyr & Natur\", \"Any link\": \"Ethvert link\", \"Anything shared with the same group of people will show up here\": \"Alt der deles med samme gruppe af personer vil vises her\", \"Avatar of {displayName}\": \"Avatar af {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar af {displayName}, {status}\", Back: \"Tilbage\", \"Back to provider selection\": \"Tilbage til udbydervalg\", \"Cancel changes\": \"Annuller ændringer\", \"Change name\": \"Ændre navn\", Choose: \"Vælg\", \"Clear search\": \"Ryd søgning\", \"Clear text\": \"Ryd tekst\", Close: \"Luk\", \"Close modal\": \"Luk vindue\", \"Close navigation\": \"Luk navigation\", \"Close sidebar\": \"Luk sidepanel\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Bekræft ændringer\", Custom: \"Brugerdefineret\", \"Edit item\": \"Rediger emne\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Flag\", \"Food & Drink\": \"Mad & Drikke\", \"Frequently used\": \"Ofte brugt\", Global: \"Global\", \"Go back to the list\": \"Tilbage til listen\", \"Hide password\": \"Skjul kodeord\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Begrænsning på {count} tegn er nået\", \"More items …\": \"Mere ...\", \"More options\": \"\", Next: \"Videre\", \"No emoji found\": \"Ingen emoji fundet\", \"No link provider found\": \"\", \"No results\": \"Ingen resultater\", Objects: \"Objekter\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Åbn navigation\", \"Open settings menu\": \"\", \"Password is secure\": \"Kodeordet er sikkert\", \"Pause slideshow\": \"Suspender fremvisning\", \"People & Body\": \"Mennesker & Menneskekroppen\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Vælg en emoji\", \"Please select a time zone:\": \"Vælg venligst en tidszone:\", Previous: \"Forrige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Relaterede emner\", Search: \"Søg\", \"Search emoji\": \"\", \"Search results\": \"Søgeresultater\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Vælg et mærke\", \"Select provider\": \"\", Settings: \"Indstillinger\", \"Settings navigation\": \"Naviger i indstillinger\", \"Show password\": \"Vis kodeord\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotion\", \"Start slideshow\": \"Start fremvisning\", \"Start typing to search\": \"\", Submit: \"Send\", Symbols: \"Symboler\", \"Travel & Places\": \"Rejser & Rejsemål\", \"Type to search time zone\": \"Indtast for at søge efter tidszone\", \"Unable to search the group\": \"Kan ikke søge på denne gruppe\", \"Undo changes\": \"Fortryd ændringer\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...' } }, { locale: \"de\", translations: { \"{tag} (invisible)\": \"{tag} (unsichtbar)\", \"{tag} (restricted)\": \"{tag} (eingeschränkt)\", \"a few seconds ago\": \"\", Actions: \"Aktionen\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivitäten\", \"Animals & Nature\": \"Tiere & Natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\", \"Avatar of {displayName}\": \"Avatar von {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar von {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Änderungen verwerfen\", \"Change name\": \"\", Choose: \"Auswählen\", \"Clear search\": \"\", \"Clear text\": \"Klartext\", Close: \"Schließen\", \"Close modal\": \"Modal schließen\", \"Close navigation\": \"Navigation schließen\", \"Close sidebar\": \"Seitenleiste schließen\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Änderungen bestätigen\", Custom: \"Benutzerdefiniert\", \"Edit item\": \"Objekt bearbeiten\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Flaggen\", \"Food & Drink\": \"Essen & Trinken\", \"Frequently used\": \"Häufig verwendet\", Global: \"Global\", \"Go back to the list\": \"Zurück zur Liste\", \"Hide password\": \"Passwort verbergen\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Nachrichtenlimit von {count} Zeichen erreicht\", \"More items …\": \"Weitere Elemente …\", \"More options\": \"\", Next: \"Weiter\", \"No emoji found\": \"Kein Emoji gefunden\", \"No link provider found\": \"\", \"No results\": \"Keine Ergebnisse\", Objects: \"Gegenstände\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigation öffnen\", \"Open settings menu\": \"\", \"Password is secure\": \"Passwort ist sicher\", \"Pause slideshow\": \"Diashow pausieren\", \"People & Body\": \"Menschen & Körper\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Ein Emoji auswählen\", \"Please select a time zone:\": \"Bitte wählen Sie eine Zeitzone:\", Previous: \"Vorherige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Verwandte Ressourcen\", Search: \"Suche\", \"Search emoji\": \"\", \"Search results\": \"Suchergebnisse\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Schlagwort auswählen\", \"Select provider\": \"\", Settings: \"Einstellungen\", \"Settings navigation\": \"Einstellungen für die Navigation\", \"Show password\": \"Passwort anzeigen\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotionen\", \"Start slideshow\": \"Diashow starten\", \"Start typing to search\": \"\", Submit: \"Einreichen\", Symbols: \"Symbole\", \"Travel & Places\": \"Reisen & Orte\", \"Type to search time zone\": \"Tippen, um Zeitzone zu suchen\", \"Unable to search the group\": \"Die Gruppe konnte nicht durchsucht werden\", \"Undo changes\": \"Änderungen rückgängig machen\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …' } }, { locale: \"de_DE\", translations: { \"{tag} (invisible)\": \"{tag} (unsichtbar)\", \"{tag} (restricted)\": \"{tag} (eingeschränkt)\", \"a few seconds ago\": \"vor ein paar Sekunden\", Actions: \"Aktionen\", 'Actions for item with name \"{name}\"': 'Aktionen für Element mit dem Namen \"{name}“', Activities: \"Aktivitäten\", \"Animals & Nature\": \"Tiere & Natur\", \"Any link\": \"Irgendein Link\", \"Anything shared with the same group of people will show up here\": \"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\", \"Avatar of {displayName}\": \"Avatar von {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar von {displayName}, {status}\", Back: \"Zurück\", \"Back to provider selection\": \"Zurück zur Anbieterauswahl\", \"Cancel changes\": \"Änderungen verwerfen\", \"Change name\": \"Namen ändern\", Choose: \"Auswählen\", \"Clear search\": \"Suche leeren\", \"Clear text\": \"Klartext\", Close: \"Schließen\", \"Close modal\": \"Modal schließen\", \"Close navigation\": \"Navigation schließen\", \"Close sidebar\": \"Seitenleiste schließen\", \"Close Smart Picker\": \"Intelligente Auswahl schließen\", \"Collapse menu\": \"Menü einklappen\", \"Confirm changes\": \"Änderungen bestätigen\", Custom: \"Benutzerdefiniert\", \"Edit item\": \"Objekt bearbeiten\", \"Enter link\": \"Link eingeben\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\", \"External documentation for {name}\": \"Externe Dokumentation für {name}\", Favorite: \"Favorit\", Flags: \"Flaggen\", \"Food & Drink\": \"Essen & Trinken\", \"Frequently used\": \"Häufig verwendet\", Global: \"Global\", \"Go back to the list\": \"Zurück zur Liste\", \"Hide password\": \"Passwort verbergen\", 'Load more \"{options}\"\"': 'Weitere \"{options}“ laden', \"Message limit of {count} characters reached\": \"Nachrichtenlimit von {count} Zeichen erreicht\", \"More items …\": \"Weitere Elemente …\", \"More options\": \"Mehr Optionen\", Next: \"Weiter\", \"No emoji found\": \"Kein Emoji gefunden\", \"No link provider found\": \"Kein Linkanbieter gefunden\", \"No results\": \"Keine Ergebnisse\", Objects: \"Objekte\", \"Open contact menu\": \"Kontaktmenü öffnen\", 'Open link to \"{resourceName}\"': 'Link zu \"{resourceName}“ öffnen', \"Open menu\": \"Menü öffnen\", \"Open navigation\": \"Navigation öffnen\", \"Open settings menu\": \"Einstellungsmenü öffnen\", \"Password is secure\": \"Passwort ist sicher\", \"Pause slideshow\": \"Diashow pausieren\", \"People & Body\": \"Menschen & Körper\", \"Pick a date\": \"Ein Datum auswählen\", \"Pick a date and a time\": \"Datum und Uhrzeit auswählen\", \"Pick a month\": \"Einen Monat auswählen\", \"Pick a time\": \"Eine Uhrzeit auswählen\", \"Pick a week\": \"Eine Woche auswählen\", \"Pick a year\": \"Ein Jahr auswählen\", \"Pick an emoji\": \"Ein Emoji auswählen\", \"Please select a time zone:\": \"Bitte eine Zeitzone auswählen:\", Previous: \"Vorherige\", \"Provider icon\": \"Anbietersymbol\", \"Raw link {options}\": \"Unverarbeiteter Link {Optionen}\", \"Related resources\": \"Verwandte Ressourcen\", Search: \"Suche\", \"Search emoji\": \"Emoji suchen\", \"Search results\": \"Suchergebnisse\", \"sec. ago\": \"Sek. zuvor\", \"seconds ago\": \"Sekunden zuvor\", \"Select a tag\": \"Schlagwort auswählen\", \"Select provider\": \"Anbieter auswählen\", Settings: \"Einstellungen\", \"Settings navigation\": \"Einstellungen für die Navigation\", \"Show password\": \"Passwort anzeigen\", \"Smart Picker\": \"Intelligente Auswahl\", \"Smileys & Emotion\": \"Smileys & Emotionen\", \"Start slideshow\": \"Diashow starten\", \"Start typing to search\": \"Mit der Eingabe beginnen, um zu suchen\", Submit: \"Einreichen\", Symbols: \"Symbole\", \"Travel & Places\": \"Reisen & Orte\", \"Type to search time zone\": \"Tippen, um eine Zeitzone zu suchen\", \"Unable to search the group\": \"Die Gruppe kann nicht durchsucht werden\", \"Undo changes\": \"Änderungen rückgängig machen\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …' } }, { locale: \"el\", translations: { \"{tag} (invisible)\": \"{tag} (αόρατο)\", \"{tag} (restricted)\": \"{tag} (περιορισμένο)\", \"a few seconds ago\": \"\", Actions: \"Ενέργειες\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Δραστηριότητες\", \"Animals & Nature\": \"Ζώα & Φύση\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\", \"Avatar of {displayName}\": \"Άβαταρ του {displayName}\", \"Avatar of {displayName}, {status}\": \"Άβαταρ του {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Ακύρωση αλλαγών\", \"Change name\": \"\", Choose: \"Επιλογή\", \"Clear search\": \"\", \"Clear text\": \"Εκκαθάριση κειμένου\", Close: \"Κλείσιμο\", \"Close modal\": \"Βοηθητικό κλείσιμο\", \"Close navigation\": \"Κλείσιμο πλοήγησης\", \"Close sidebar\": \"Κλείσιμο πλευρικής μπάρας\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Επιβεβαίωση αλλαγών\", Custom: \"Προσαρμογή\", \"Edit item\": \"Επεξεργασία\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Αγαπημένα\", Flags: \"Σημαίες\", \"Food & Drink\": \"Φαγητό & Ποτό\", \"Frequently used\": \"Συχνά χρησιμοποιούμενο\", Global: \"Καθολικό\", \"Go back to the list\": \"Επιστροφή στην αρχική λίστα \", \"Hide password\": \"Απόκρυψη κωδικού πρόσβασης\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\", \"More items …\": \"Περισσότερα στοιχεία …\", \"More options\": \"\", Next: \"Επόμενο\", \"No emoji found\": \"Δεν βρέθηκε emoji\", \"No link provider found\": \"\", \"No results\": \"Κανένα αποτέλεσμα\", Objects: \"Αντικείμενα\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Άνοιγμα πλοήγησης\", \"Open settings menu\": \"\", \"Password is secure\": \"Ο κωδικός πρόσβασης είναι ασφαλής\", \"Pause slideshow\": \"Παύση προβολής διαφανειών\", \"People & Body\": \"Άνθρωποι & Σώμα\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Επιλέξτε ένα emoji\", \"Please select a time zone:\": \"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\", Previous: \"Προηγούμενο\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Σχετικοί πόροι\", Search: \"Αναζήτηση\", \"Search emoji\": \"\", \"Search results\": \"Αποτελέσματα αναζήτησης\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Επιλογή ετικέτας\", \"Select provider\": \"\", Settings: \"Ρυθμίσεις\", \"Settings navigation\": \"Πλοήγηση ρυθμίσεων\", \"Show password\": \"Εμφάνιση κωδικού πρόσβασης\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Φατσούλες & Συναίσθημα\", \"Start slideshow\": \"Έναρξη προβολής διαφανειών\", \"Start typing to search\": \"\", Submit: \"Υποβολή\", Symbols: \"Σύμβολα\", \"Travel & Places\": \"Ταξίδια & Τοποθεσίες\", \"Type to search time zone\": \"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\", \"Unable to search the group\": \"Δεν είναι δυνατή η αναζήτηση της ομάδας\", \"Undo changes\": \"Αναίρεση Αλλαγών\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …' } }, { locale: \"en_GB\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restricted)\", \"a few seconds ago\": \"a few seconds ago\", Actions: \"Actions\", 'Actions for item with name \"{name}\"': 'Actions for item with name \"{name}\"', Activities: \"Activities\", \"Animals & Nature\": \"Animals & Nature\", \"Any link\": \"Any link\", \"Anything shared with the same group of people will show up here\": \"Anything shared with the same group of people will show up here\", \"Avatar of {displayName}\": \"Avatar of {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar of {displayName}, {status}\", Back: \"Back\", \"Back to provider selection\": \"Back to provider selection\", \"Cancel changes\": \"Cancel changes\", \"Change name\": \"Change name\", Choose: \"Choose\", \"Clear search\": \"Clear search\", \"Clear text\": \"Clear text\", Close: \"Close\", \"Close modal\": \"Close modal\", \"Close navigation\": \"Close navigation\", \"Close sidebar\": \"Close sidebar\", \"Close Smart Picker\": \"Close Smart Picker\", \"Collapse menu\": \"Collapse menu\", \"Confirm changes\": \"Confirm changes\", Custom: \"Custom\", \"Edit item\": \"Edit item\", \"Enter link\": \"Enter link\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error getting related resources. Please contact your system administrator if you have any questions.\", \"External documentation for {name}\": \"External documentation for {name}\", Favorite: \"Favourite\", Flags: \"Flags\", \"Food & Drink\": \"Food & Drink\", \"Frequently used\": \"Frequently used\", Global: \"Global\", \"Go back to the list\": \"Go back to the list\", \"Hide password\": \"Hide password\", 'Load more \"{options}\"\"': 'Load more \"{options}\"\"', \"Message limit of {count} characters reached\": \"Message limit of {count} characters reached\", \"More items …\": \"More items …\", \"More options\": \"More options\", Next: \"Next\", \"No emoji found\": \"No emoji found\", \"No link provider found\": \"No link provider found\", \"No results\": \"No results\", Objects: \"Objects\", \"Open contact menu\": \"Open contact menu\", 'Open link to \"{resourceName}\"': 'Open link to \"{resourceName}\"', \"Open menu\": \"Open menu\", \"Open navigation\": \"Open navigation\", \"Open settings menu\": \"Open settings menu\", \"Password is secure\": \"Password is secure\", \"Pause slideshow\": \"Pause slideshow\", \"People & Body\": \"People & Body\", \"Pick a date\": \"Pick a date\", \"Pick a date and a time\": \"Pick a date and a time\", \"Pick a month\": \"Pick a month\", \"Pick a time\": \"Pick a time\", \"Pick a week\": \"Pick a week\", \"Pick a year\": \"Pick a year\", \"Pick an emoji\": \"Pick an emoji\", \"Please select a time zone:\": \"Please select a time zone:\", Previous: \"Previous\", \"Provider icon\": \"Provider icon\", \"Raw link {options}\": \"Raw link {options}\", \"Related resources\": \"Related resources\", Search: \"Search\", \"Search emoji\": \"Search emoji\", \"Search results\": \"Search results\", \"sec. ago\": \"sec. ago\", \"seconds ago\": \"seconds ago\", \"Select a tag\": \"Select a tag\", \"Select provider\": \"Select provider\", Settings: \"Settings\", \"Settings navigation\": \"Settings navigation\", \"Show password\": \"Show password\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Smileys & Emotion\", \"Start slideshow\": \"Start slideshow\", \"Start typing to search\": \"Start typing to search\", Submit: \"Submit\", Symbols: \"Symbols\", \"Travel & Places\": \"Travel & Places\", \"Type to search time zone\": \"Type to search time zone\", \"Unable to search the group\": \"Unable to search the group\", \"Undo changes\": \"Undo changes\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …' } }, { locale: \"eo\", translations: { \"{tag} (invisible)\": \"{tag} (kaŝita)\", \"{tag} (restricted)\": \"{tag} (limigita)\", \"a few seconds ago\": \"\", Actions: \"Agoj\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiveco\", \"Animals & Nature\": \"Bestoj & Naturo\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Elektu\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Fermu\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Propra\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Flagoj\", \"Food & Drink\": \"Manĝaĵo & Trinkaĵo\", \"Frequently used\": \"Ofte uzataj\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"La limo je {count} da literoj atingita\", \"More items …\": \"\", \"More options\": \"\", Next: \"Sekva\", \"No emoji found\": \"La emoĝio forestas\", \"No link provider found\": \"\", \"No results\": \"La rezulto forestas\", Objects: \"Objektoj\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Payzi bildprezenton\", \"People & Body\": \"Homoj & Korpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Elekti emoĝion \", \"Please select a time zone:\": \"\", Previous: \"Antaŭa\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Serĉi\", \"Search emoji\": \"\", \"Search results\": \"Serĉrezultoj\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Elektu etikedon\", \"Select provider\": \"\", Settings: \"Agordo\", \"Settings navigation\": \"Agorda navigado\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Ridoj kaj Emocioj\", \"Start slideshow\": \"Komenci bildprezenton\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Signoj\", \"Travel & Places\": \"Vojaĵoj & Lokoj\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Ne eblas serĉi en la grupo\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restringido)\", \"a few seconds ago\": \"hace unos pocos segundos\", Actions: \"Acciones\", 'Actions for item with name \"{name}\"': 'Acciones para el elemento con nombre \"{name}\"', Activities: \"Actividades\", \"Animals & Nature\": \"Animales y naturaleza\", \"Any link\": \"Cualquier enlace\", \"Anything shared with the same group of people will show up here\": \"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Atrás\", \"Back to provider selection\": \"Volver a la selección de proveedor\", \"Cancel changes\": \"Cancelar cambios\", \"Change name\": \"Cambiar nombre\", Choose: \"Elegir\", \"Clear search\": \"Limpiar búsqueda\", \"Clear text\": \"Limpiar texto\", Close: \"Cerrar\", \"Close modal\": \"Cerrar modal\", \"Close navigation\": \"Cerrar navegación\", \"Close sidebar\": \"Cerrar barra lateral\", \"Close Smart Picker\": \"Cerrar selector inteligente\", \"Collapse menu\": \"Ocultar menú\", \"Confirm changes\": \"Confirmar cambios\", Custom: \"Personalizado\", \"Edit item\": \"Editar elemento\", \"Enter link\": \"Ingrese enlace\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\", \"External documentation for {name}\": \"Documentación externa para {name}\", Favorite: \"Favorito\", Flags: \"Banderas\", \"Food & Drink\": \"Comida y bebida\", \"Frequently used\": \"Usado con frecuenca\", Global: \"Global\", \"Go back to the list\": \"Volver a la lista\", \"Hide password\": \"Ocultar contraseña\", 'Load more \"{options}\"\"': 'Cargar más \"{options}\"', \"Message limit of {count} characters reached\": \"El mensaje ha alcanzado el límite de {count} caracteres\", \"More items …\": \"Más ítems...\", \"More options\": \"Más opciones\", Next: \"Siguiente\", \"No emoji found\": \"No hay ningún emoji\", \"No link provider found\": \"No se encontró ningún proveedor de enlaces\", \"No results\": \" Ningún resultado\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir menú de contactos\", 'Open link to \"{resourceName}\"': 'Abrir enlace a \"{resourceName}\"', \"Open menu\": \"Abrir menú\", \"Open navigation\": \"Abrir navegación\", \"Open settings menu\": \"Abrir menú de ajustes\", \"Password is secure\": \"La contraseña es segura\", \"Pause slideshow\": \"Pausar la presentación \", \"People & Body\": \"Personas y cuerpos\", \"Pick a date\": \"Seleccione una fecha\", \"Pick a date and a time\": \"Seleccione una fecha y hora\", \"Pick a month\": \"Seleccione un mes\", \"Pick a time\": \"Seleccione una hora\", \"Pick a week\": \"Seleccione una semana\", \"Pick a year\": \"Seleccione un año\", \"Pick an emoji\": \"Elegir un emoji\", \"Please select a time zone:\": \"Por favor elige un huso de horario:\", Previous: \"Anterior\", \"Provider icon\": \"Ícono del proveedor\", \"Raw link {options}\": \"Enlace directo {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Buscar\", \"Search emoji\": \"Buscar emoji\", \"Search results\": \"Resultados de la búsqueda\", \"sec. ago\": \"hace segundos\", \"seconds ago\": \"segundos atrás\", \"Select a tag\": \"Seleccione una etiqueta\", \"Select provider\": \"Seleccione proveedor\", Settings: \"Ajustes\", \"Settings navigation\": \"Navegación por ajustes\", \"Show password\": \"Mostrar contraseña\", \"Smart Picker\": \"Selector inteligente\", \"Smileys & Emotion\": \"Smileys y emoticonos\", \"Start slideshow\": \"Iniciar la presentación\", \"Start typing to search\": \"Comience a escribir para buscar\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viajes y lugares\", \"Type to search time zone\": \"Escribe para buscar un huso de horario\", \"Unable to search the group\": \"No es posible buscar en el grupo\", \"Undo changes\": \"Deshacer cambios\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...' } }, { locale: \"es_419\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_AR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CL\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_CR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_DO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_EC\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restricted)\", \"a few seconds ago\": \"hace unos segundos\", Actions: \"Acciones\", 'Actions for item with name \"{name}\"': 'Acciones para el elemento con nombre \"{name}\"', Activities: \"Actividades\", \"Animals & Nature\": \"Animales y Naturaleza\", \"Any link\": \"Cualquier enlace\", \"Anything shared with the same group of people will show up here\": \"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Atrás\", \"Back to provider selection\": \"Volver a la selección de proveedor\", \"Cancel changes\": \"Cancelar cambios\", \"Change name\": \"Cambiar nombre\", Choose: \"Elegir\", \"Clear search\": \"Limpiar búsqueda\", \"Clear text\": \"Limpiar texto\", Close: \"Cerrar\", \"Close modal\": \"Cerrar modal\", \"Close navigation\": \"Cerrar navegación\", \"Close sidebar\": \"Cerrar barra lateral\", \"Close Smart Picker\": \"Cerrar selector inteligente\", \"Collapse menu\": \"Ocultar menú\", \"Confirm changes\": \"Confirmar cambios\", Custom: \"Personalizado\", \"Edit item\": \"Editar elemento\", \"Enter link\": \"Ingresar enlace\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\", \"External documentation for {name}\": \"Documentación externa para {name}\", Favorite: \"Favorito\", Flags: \"Marcas\", \"Food & Drink\": \"Comida y Bebida\", \"Frequently used\": \"Frecuentemente utilizado\", Global: \"Global\", \"Go back to the list\": \"Volver a la lista\", \"Hide password\": \"Ocultar contraseña\", 'Load more \"{options}\"\"': 'Cargar más \"{options}\"', \"Message limit of {count} characters reached\": \"Se ha alcanzado el límite de caracteres del mensaje {count}\", \"More items …\": \"Más elementos...\", \"More options\": \"Más opciones\", Next: \"Siguiente\", \"No emoji found\": \"No se encontró ningún emoji\", \"No link provider found\": \"No se encontró ningún proveedor de enlaces\", \"No results\": \"Sin resultados\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir menú de contactos\", 'Open link to \"{resourceName}\"': 'Abrir enlace a \"{resourceName}\"', \"Open menu\": \"Abrir menú\", \"Open navigation\": \"Abrir navegación\", \"Open settings menu\": \"Abrir menú de configuración\", \"Password is secure\": \"La contraseña es segura\", \"Pause slideshow\": \"Pausar presentación de diapositivas\", \"People & Body\": \"Personas y Cuerpo\", \"Pick a date\": \"Seleccionar una fecha\", \"Pick a date and a time\": \"Seleccionar una fecha y una hora\", \"Pick a month\": \"Seleccionar un mes\", \"Pick a time\": \"Seleccionar una semana\", \"Pick a week\": \"Seleccionar una semana\", \"Pick a year\": \"Seleccionar un año\", \"Pick an emoji\": \"Seleccionar un emoji\", \"Please select a time zone:\": \"Por favor, selecciona una zona horaria:\", Previous: \"Anterior\", \"Provider icon\": \"Ícono del proveedor\", \"Raw link {options}\": \"Enlace directo {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Buscar\", \"Search emoji\": \"Buscar emoji\", \"Search results\": \"Resultados de búsqueda\", \"sec. ago\": \"hace segundos\", \"seconds ago\": \"Segundos atrás\", \"Select a tag\": \"Seleccionar una etiqueta\", \"Select provider\": \"Seleccionar proveedor\", Settings: \"Configuraciones\", \"Settings navigation\": \"Navegación de configuraciones\", \"Show password\": \"Mostrar contraseña\", \"Smart Picker\": \"Selector inteligente\", \"Smileys & Emotion\": \"Caritas y Emociones\", \"Start slideshow\": \"Iniciar presentación de diapositivas\", \"Start typing to search\": \"Comienza a escribir para buscar\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viajes y Lugares\", \"Type to search time zone\": \"Escribe para buscar la zona horaria\", \"Unable to search the group\": \"No se puede buscar en el grupo\", \"Undo changes\": \"Deshacer cambios\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...' } }, { locale: \"es_GT\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_HN\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_MX\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_NI\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PA\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PR\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_PY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_SV\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"es_UY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"et_EE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"eu\", translations: { \"{tag} (invisible)\": \"{tag} (ikusezina)\", \"{tag} (restricted)\": \"{tag} (mugatua)\", \"a few seconds ago\": \"\", Actions: \"Ekintzak\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Jarduerak\", \"Animals & Nature\": \"Animaliak eta Natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\", \"Avatar of {displayName}\": \"{displayName}-(e)n irudia\", \"Avatar of {displayName}, {status}\": \"{displayName} -(e)n irudia, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Ezeztatu aldaketak\", \"Change name\": \"\", Choose: \"Aukeratu\", \"Clear search\": \"\", \"Clear text\": \"Garbitu testua\", Close: \"Itxi\", \"Close modal\": \"Itxi modala\", \"Close navigation\": \"Itxi nabigazioa\", \"Close sidebar\": \"Itxi albo-barra\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Baieztatu aldaketak\", Custom: \"Pertsonalizatua\", \"Edit item\": \"Editatu elementua\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Gogokoa\", Flags: \"Banderak\", \"Food & Drink\": \"Janaria eta edariak\", \"Frequently used\": \"Askotan erabilia\", Global: \"Globala\", \"Go back to the list\": \"Bueltatu zerrendara\", \"Hide password\": \"Ezkutatu pasahitza\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Mezuaren {count} karaketere-limitera heldu zara\", \"More items …\": \"Elementu gehiago …\", \"More options\": \"\", Next: \"Hurrengoa\", \"No emoji found\": \"Ez da emojirik aurkitu\", \"No link provider found\": \"\", \"No results\": \"Emaitzarik ez\", Objects: \"Objektuak\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Ireki nabigazioa\", \"Open settings menu\": \"\", \"Password is secure\": \"Pasahitza segurua da\", \"Pause slideshow\": \"Pausatu diaporama\", \"People & Body\": \"Jendea eta gorputza\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Hautatu emoji bat\", \"Please select a time zone:\": \"Mesedez hautatu ordu-zona bat:\", Previous: \"Aurrekoa\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Erlazionatutako baliabideak\", Search: \"Bilatu\", \"Search emoji\": \"\", \"Search results\": \"Bilaketa emaitzak\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Hautatu etiketa bat\", \"Select provider\": \"\", Settings: \"Ezarpenak\", \"Settings navigation\": \"Nabigazio ezarpenak\", \"Show password\": \"Erakutsi pasahitza\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileyak eta emozioa\", \"Start slideshow\": \"Hasi diaporama\", \"Start typing to search\": \"\", Submit: \"Bidali\", Symbols: \"Sinboloak\", \"Travel & Places\": \"Bidaiak eta lekuak\", \"Type to search time zone\": \"Idatzi ordu-zona bat bilatzeko\", \"Unable to search the group\": \"Ezin izan da taldea bilatu\", \"Undo changes\": \"Aldaketak desegin\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...' } }, { locale: \"fa\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fi\", translations: { \"{tag} (invisible)\": \"{tag} (näkymätön)\", \"{tag} (restricted)\": \"{tag} (rajoitettu)\", \"a few seconds ago\": \"\", Actions: \"Toiminnot\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiviteetit\", \"Animals & Nature\": \"Eläimet & luonto\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Käyttäjän {displayName} avatar\", \"Avatar of {displayName}, {status}\": \"Käyttäjän {displayName} avatar, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Peruuta muutokset\", \"Change name\": \"\", Choose: \"Valitse\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Sulje\", \"Close modal\": \"\", \"Close navigation\": \"Sulje navigaatio\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Vahvista muutokset\", Custom: \"Mukautettu\", \"Edit item\": \"Muokkaa kohdetta\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Liput\", \"Food & Drink\": \"Ruoka & juoma\", \"Frequently used\": \"Usein käytetyt\", Global: \"Yleinen\", \"Go back to the list\": \"Siirry takaisin listaan\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Viestin merkken enimmäisimäärä {count} täynnä \", \"More items …\": \"\", \"More options\": \"\", Next: \"Seuraava\", \"No emoji found\": \"Emojia ei löytynyt\", \"No link provider found\": \"\", \"No results\": \"Ei tuloksia\", Objects: \"Esineet & asiat\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Avaa navigaatio\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Keskeytä diaesitys\", \"People & Body\": \"Ihmiset & keho\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Valitse emoji\", \"Please select a time zone:\": \"Valitse aikavyöhyke:\", Previous: \"Edellinen\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Etsi\", \"Search emoji\": \"\", \"Search results\": \"Hakutulokset\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Valitse tagi\", \"Select provider\": \"\", Settings: \"Asetukset\", \"Settings navigation\": \"Asetusnavigaatio\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Hymiöt & tunteet\", \"Start slideshow\": \"Aloita diaesitys\", \"Start typing to search\": \"\", Submit: \"Lähetä\", Symbols: \"Symbolit\", \"Travel & Places\": \"Matkustus & kohteet\", \"Type to search time zone\": \"Kirjoita etsiäksesi aikavyöhyke\", \"Unable to search the group\": \"Ryhmää ei voi hakea\", \"Undo changes\": \"Kumoa muutokset\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fo\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"fr\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (restreint)\", \"a few seconds ago\": \"il y a quelques instants\", Actions: \"Actions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activités\", \"Animals & Nature\": \"Animaux & Nature\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Retour\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Annuler les modifications\", \"Change name\": \"Modifier le nom\", Choose: \"Choisir\", \"Clear search\": \"Effacer la recherche\", \"Clear text\": \"Effacer le texte\", Close: \"Fermer\", \"Close modal\": \"Fermer la fenêtre\", \"Close navigation\": \"Fermer la navigation\", \"Close sidebar\": \"Fermer la barre latérale\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"Réduire le menu\", \"Confirm changes\": \"Confirmer les modifications\", Custom: \"Personnalisé\", \"Edit item\": \"Éditer l'élément\", \"Enter link\": \"Saisissez le lien\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"Documentation externe pour {name}\", Favorite: \"Favori\", Flags: \"Drapeaux\", \"Food & Drink\": \"Nourriture & Boissons\", \"Frequently used\": \"Utilisés fréquemment\", Global: \"Global\", \"Go back to the list\": \"Retourner à la liste\", \"Hide password\": \"Cacher le mot de passe\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite de messages de {count} caractères atteinte\", \"More items …\": \"Plus d'éléments...\", \"More options\": \"Plus d'options\", Next: \"Suivant\", \"No emoji found\": \"Pas d’émoji trouvé\", \"No link provider found\": \"\", \"No results\": \"Aucun résultat\", Objects: \"Objets\", \"Open contact menu\": \"Ouvrir le menu Contact\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"Ouvrir le menu\", \"Open navigation\": \"Ouvrir la navigation\", \"Open settings menu\": \"Ouvrir le menu Paramètres\", \"Password is secure\": \"Le mot de passe est sécurisé\", \"Pause slideshow\": \"Mettre le diaporama en pause\", \"People & Body\": \"Personnes & Corps\", \"Pick a date\": \"Sélectionner une date\", \"Pick a date and a time\": \"Sélectionner une date et une heure\", \"Pick a month\": \"Sélectionner un mois\", \"Pick a time\": \"Sélectionner une heure\", \"Pick a week\": \"Sélectionner une semaine\", \"Pick a year\": \"Sélectionner une année\", \"Pick an emoji\": \"Choisissez un émoji\", \"Please select a time zone:\": \"Sélectionnez un fuseau horaire : \", Previous: \"Précédent\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Ressources liées\", Search: \"Chercher\", \"Search emoji\": \"Rechercher un emoji\", \"Search results\": \"Résultats de recherche\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Sélectionnez une balise\", \"Select provider\": \"\", Settings: \"Paramètres\", \"Settings navigation\": \"Navigation dans les paramètres\", \"Show password\": \"Afficher le mot de passe\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Émotions\", \"Start slideshow\": \"Démarrer le diaporama\", \"Start typing to search\": \"\", Submit: \"Valider\", Symbols: \"Symboles\", \"Travel & Places\": \"Voyage & Lieux\", \"Type to search time zone\": \"Saisissez les premiers lettres pour rechercher un fuseau horaire\", \"Unable to search the group\": \"Impossible de chercher le groupe\", \"Undo changes\": \"Annuler les changements\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': `Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l'autocomplétion des émojis...` } }, { locale: \"gd\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"gl\", translations: { \"{tag} (invisible)\": \"{tag} (invisíbel)\", \"{tag} (restricted)\": \"{tag} (restrinxido)\", \"a few seconds ago\": \"\", Actions: \"Accións\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Actividades\", \"Animals & Nature\": \"Animais e natureza\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancelar os cambios\", \"Change name\": \"\", Choose: \"Escoller\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Pechar\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirma os cambios\", Custom: \"Personalizado\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida e bebida\", \"Frequently used\": \"Usado con frecuencia\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Acadouse o límite de {count} caracteres por mensaxe\", \"More items …\": \"\", \"More options\": \"\", Next: \"Seguinte\", \"No emoji found\": \"Non se atopou ningún «emoji»\", \"No link provider found\": \"\", \"No results\": \"Sen resultados\", Objects: \"Obxectos\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pausar o diaporama\", \"People & Body\": \"Persoas e corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Escolla un «emoji»\", \"Please select a time zone:\": \"\", Previous: \"Anterir\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Buscar\", \"Search emoji\": \"\", \"Search results\": \"Resultados da busca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccione unha etiqueta\", \"Select provider\": \"\", Settings: \"Axustes\", \"Settings navigation\": \"Navegación polos axustes\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Sorrisos e emocións\", \"Start slideshow\": \"Iniciar o diaporama\", \"Start typing to search\": \"\", Submit: \"Enviar\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viaxes e lugares\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Non foi posíbel buscar o grupo\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"he\", translations: { \"{tag} (invisible)\": \"{tag} (נסתר)\", \"{tag} (restricted)\": \"{tag} (מוגבל)\", \"a few seconds ago\": \"לפני מספר שניות\", Actions: \"פעולות\", 'Actions for item with name \"{name}\"': \"פעולות לפריט בשם „{name}”\", Activities: \"פעילויות\", \"Animals & Nature\": \"חיות וטבע\", \"Any link\": \"קישור כלשהו\", \"Anything shared with the same group of people will show up here\": \"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\", \"Avatar of {displayName}\": \"תמונה ייצוגית של {displayName}\", \"Avatar of {displayName}, {status}\": \"תמונה ייצוגית של {displayName}, {status}\", Back: \"חזרה\", \"Back to provider selection\": \"חזרה לבחירת ספק\", \"Cancel changes\": \"ביטול שינויים\", \"Change name\": \"החלפת שם\", Choose: \"בחירה\", \"Clear search\": \"פינוי חיפוש\", \"Clear text\": \"פינוי טקסט\", Close: \"סגירה\", \"Close modal\": \"סגירת החלונית\", \"Close navigation\": \"סגירת הניווט\", \"Close sidebar\": \"סגירת סרגל הצד\", \"Close Smart Picker\": \"סגירת הבורר החכם\", \"Collapse menu\": \"צמצום התפריט\", \"Confirm changes\": \"אישור השינויים\", Custom: \"בהתאמה אישית\", \"Edit item\": \"עריכת פריט\", \"Enter link\": \"מילוי קישור\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\", \"External documentation for {name}\": \"תיעוד חיצוני עבור {name}\", Favorite: \"למועדפים\", Flags: \"דגלים\", \"Food & Drink\": \"מזון ומשקאות\", \"Frequently used\": \"בשימוש תדיר\", Global: \"כללי\", \"Go back to the list\": \"חזרה לרשימה\", \"Hide password\": \"הסתרת סיסמה\", 'Load more \"{options}\"\"': \"טעינת „{options}” נוספות\", \"Message limit of {count} characters reached\": \"הגעת למגבלה של {count} תווים\", \"More items …\": \"פריטים נוספים…\", \"More options\": \"אפשרויות נוספות\", Next: \"הבא\", \"No emoji found\": \"לא נמצא אמוג׳י\", \"No link provider found\": \"לא נמצא ספק קישורים\", \"No results\": \"אין תוצאות\", Objects: \"חפצים\", \"Open contact menu\": \"פתיחת תפריט קשר\", 'Open link to \"{resourceName}\"': \"פתיחת קישור אל „{resourceName}”\", \"Open menu\": \"פתיחת תפריט\", \"Open navigation\": \"פתיחת ניווט\", \"Open settings menu\": \"פתיחת תפריט הגדרות\", \"Password is secure\": \"הסיסמה מאובטחת\", \"Pause slideshow\": \"השהיית מצגת\", \"People & Body\": \"אנשים וגוף\", \"Pick a date\": \"נא לבחור תאריך\", \"Pick a date and a time\": \"נא לבחור תאריך ושעה\", \"Pick a month\": \"נא לבחור חודש\", \"Pick a time\": \"נא לבחור שעה\", \"Pick a week\": \"נא לבחור שבוע\", \"Pick a year\": \"נא לבחור שנה\", \"Pick an emoji\": \"נא לבחור אמוג׳י\", \"Please select a time zone:\": \"נא לבחור אזור זמן:\", Previous: \"הקודם\", \"Provider icon\": \"סמל ספק\", \"Raw link {options}\": \"קישור גולמי {options}\", \"Related resources\": \"משאבים קשורים\", Search: \"חיפוש\", \"Search emoji\": \"חיפוש אמוג׳י\", \"Search results\": \"תוצאות חיפוש\", \"sec. ago\": \"לפני מספר שניות\", \"seconds ago\": \"לפני מס׳ שניות\", \"Select a tag\": \"בחירת תגית\", \"Select provider\": \"בחירת ספק\", Settings: \"הגדרות\", \"Settings navigation\": \"ניווט בהגדרות\", \"Show password\": \"הצגת סיסמה\", \"Smart Picker\": \"בורר חכם\", \"Smileys & Emotion\": \"חייכנים ורגשונים\", \"Start slideshow\": \"התחלת המצגת\", \"Start typing to search\": \"התחלת הקלדה מחפשת\", Submit: \"הגשה\", Symbols: \"סמלים\", \"Travel & Places\": \"טיולים ומקומות\", \"Type to search time zone\": \"יש להקליד כדי לחפש אזור זמן\", \"Unable to search the group\": \"לא ניתן לחפש בקבוצה\", \"Undo changes\": \"ביטול שינויים\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\" } }, { locale: \"hi_IN\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hr\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hsb\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"hu\", translations: { \"{tag} (invisible)\": \"{tag} (láthatatlan)\", \"{tag} (restricted)\": \"{tag} (korlátozott)\", \"a few seconds ago\": \"\", Actions: \"Műveletek\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Tevékenységek\", \"Animals & Nature\": \"Állatok és természet\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\", \"Avatar of {displayName}\": \"{displayName} profilképe\", \"Avatar of {displayName}, {status}\": \"{displayName} profilképe, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Változtatások elvetése\", \"Change name\": \"\", Choose: \"Válassszon\", \"Clear search\": \"\", \"Clear text\": \"Szöveg törlése\", Close: \"Bezárás\", \"Close modal\": \"Ablak bezárása\", \"Close navigation\": \"Navigáció bezárása\", \"Close sidebar\": \"Oldalsáv bezárása\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Változtatások megerősítése\", Custom: \"Egyéni\", \"Edit item\": \"Elem szerkesztése\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Kedvenc\", Flags: \"Zászlók\", \"Food & Drink\": \"Étel és ital\", \"Frequently used\": \"Gyakran használt\", Global: \"Globális\", \"Go back to the list\": \"Ugrás vissza a listához\", \"Hide password\": \"Jelszó elrejtése\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"{count} karakteres üzenetkorlát elérve\", \"More items …\": \"További elemek...\", \"More options\": \"\", Next: \"Következő\", \"No emoji found\": \"Nem található emodzsi\", \"No link provider found\": \"\", \"No results\": \"Nincs találat\", Objects: \"Tárgyak\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigáció megnyitása\", \"Open settings menu\": \"\", \"Password is secure\": \"A jelszó biztonságos\", \"Pause slideshow\": \"Diavetítés szüneteltetése\", \"People & Body\": \"Emberek és test\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Válasszon egy emodzsit\", \"Please select a time zone:\": \"Válasszon időzónát:\", Previous: \"Előző\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Kapcsolódó erőforrások\", Search: \"Keresés\", \"Search emoji\": \"\", \"Search results\": \"Találatok\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Válasszon címkét\", \"Select provider\": \"\", Settings: \"Beállítások\", \"Settings navigation\": \"Navigáció a beállításokban\", \"Show password\": \"Jelszó megjelenítése\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Mosolyok és érzelmek\", \"Start slideshow\": \"Diavetítés indítása\", \"Start typing to search\": \"\", Submit: \"Beküldés\", Symbols: \"Szimbólumok\", \"Travel & Places\": \"Utazás és helyek\", \"Type to search time zone\": \"Gépeljen az időzóna kereséséhez\", \"Unable to search the group\": \"A csoport nem kereshető\", \"Undo changes\": \"Változtatások visszavonása\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\" } }, { locale: \"hy\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ia\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"id\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ig\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"is\", translations: { \"{tag} (invisible)\": \"{tag} (ósýnilegt)\", \"{tag} (restricted)\": \"{tag} (takmarkað)\", \"a few seconds ago\": \"\", Actions: \"Aðgerðir\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aðgerðir\", \"Animals & Nature\": \"Dýr og náttúra\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Velja\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Loka\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Sérsniðið\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Flögg\", \"Food & Drink\": \"Matur og drykkur\", \"Frequently used\": \"Oftast notað\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Næsta\", \"No emoji found\": \"Ekkert tjáningartákn fannst\", \"No link provider found\": \"\", \"No results\": \"Engar niðurstöður\", Objects: \"Hlutir\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Gera hlé á skyggnusýningu\", \"People & Body\": \"Fólk og líkami\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Veldu tjáningartákn\", \"Please select a time zone:\": \"\", Previous: \"Fyrri\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Leita\", \"Search emoji\": \"\", \"Search results\": \"Leitarniðurstöður\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Veldu merki\", \"Select provider\": \"\", Settings: \"Stillingar\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Broskallar og tilfinningar\", \"Start slideshow\": \"Byrja skyggnusýningu\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"Tákn\", \"Travel & Places\": \"Staðir og ferðalög\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Get ekki leitað í hópnum\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"it\", translations: { \"{tag} (invisible)\": \"{tag} (invisibile)\", \"{tag} (restricted)\": \"{tag} (limitato)\", \"a few seconds ago\": \"\", Actions: \"Azioni\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Attività\", \"Animals & Nature\": \"Animali e natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\", \"Avatar of {displayName}\": \"Avatar di {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar di {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Annulla modifiche\", \"Change name\": \"\", Choose: \"Scegli\", \"Clear search\": \"\", \"Clear text\": \"Cancella il testo\", Close: \"Chiudi\", \"Close modal\": \"Chiudi il messaggio modale\", \"Close navigation\": \"Chiudi la navigazione\", \"Close sidebar\": \"Chiudi la barra laterale\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Conferma modifiche\", Custom: \"Personalizzato\", \"Edit item\": \"Modifica l'elemento\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Preferito\", Flags: \"Bandiere\", \"Food & Drink\": \"Cibo e bevande\", \"Frequently used\": \"Usati di frequente\", Global: \"Globale\", \"Go back to the list\": \"Torna all'elenco\", \"Hide password\": \"Nascondi la password\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite dei messaggi di {count} caratteri raggiunto\", \"More items …\": \"Più elementi ...\", \"More options\": \"\", Next: \"Successivo\", \"No emoji found\": \"Nessun emoji trovato\", \"No link provider found\": \"\", \"No results\": \"Nessun risultato\", Objects: \"Oggetti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Apri la navigazione\", \"Open settings menu\": \"\", \"Password is secure\": \"La password è sicura\", \"Pause slideshow\": \"Presentazione in pausa\", \"People & Body\": \"Persone e corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Scegli un emoji\", \"Please select a time zone:\": \"Si prega di selezionare un fuso orario:\", Previous: \"Precedente\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Risorse correlate\", Search: \"Cerca\", \"Search emoji\": \"\", \"Search results\": \"Risultati di ricerca\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleziona un'etichetta\", \"Select provider\": \"\", Settings: \"Impostazioni\", \"Settings navigation\": \"Navigazione delle impostazioni\", \"Show password\": \"Mostra la password\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Faccine ed emozioni\", \"Start slideshow\": \"Avvia presentazione\", \"Start typing to search\": \"\", Submit: \"Invia\", Symbols: \"Simboli\", \"Travel & Places\": \"Viaggi e luoghi\", \"Type to search time zone\": \"Digita per cercare un fuso orario\", \"Unable to search the group\": \"Impossibile cercare il gruppo\", \"Undo changes\": \"Cancella i cambiamenti\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...' } }, { locale: \"ja\", translations: { \"{tag} (invisible)\": \"{タグ} (不可視)\", \"{tag} (restricted)\": \"{タグ} (制限付)\", \"a few seconds ago\": \"\", Actions: \"操作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"アクティビティ\", \"Animals & Nature\": \"動物と自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"同じグループで共有しているものは、全てここに表示されます\", \"Avatar of {displayName}\": \"{displayName} のアバター\", \"Avatar of {displayName}, {status}\": \"{displayName}, {status} のアバター\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"変更をキャンセル\", \"Change name\": \"\", Choose: \"選択\", \"Clear search\": \"\", \"Clear text\": \"テキストをクリア\", Close: \"閉じる\", \"Close modal\": \"モーダルを閉じる\", \"Close navigation\": \"ナビゲーションを閉じる\", \"Close sidebar\": \"サイドバーを閉じる\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"変更を承認\", Custom: \"カスタム\", \"Edit item\": \"編集\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"お気に入り\", Flags: \"国旗\", \"Food & Drink\": \"食べ物と飲み物\", \"Frequently used\": \"よく使うもの\", Global: \"全体\", \"Go back to the list\": \"リストに戻る\", \"Hide password\": \"パスワードを非表示\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"{count} 文字のメッセージ上限に達しています\", \"More items …\": \"他のアイテム\", \"More options\": \"\", Next: \"次\", \"No emoji found\": \"絵文字が見つかりません\", \"No link provider found\": \"\", \"No results\": \"なし\", Objects: \"物\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"ナビゲーションを開く\", \"Open settings menu\": \"\", \"Password is secure\": \"パスワードは保護されています\", \"Pause slideshow\": \"スライドショーを一時停止\", \"People & Body\": \"様々な人と体の部位\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"絵文字を選択\", \"Please select a time zone:\": \"タイムゾーンを選んで下さい:\", Previous: \"前\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"関連リソース\", Search: \"検索\", \"Search emoji\": \"\", \"Search results\": \"検索結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"タグを選択\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"ナビゲーション設定\", \"Show password\": \"パスワードを表示\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"感情表現\", \"Start slideshow\": \"スライドショーを開始\", \"Start typing to search\": \"\", Submit: \"提出\", Symbols: \"記号\", \"Travel & Places\": \"旅行と場所\", \"Type to search time zone\": \"タイムゾーン検索のため入力してください\", \"Unable to search the group\": \"グループを検索できません\", \"Undo changes\": \"変更を取り消し\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...' } }, { locale: \"ka\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ka_GE\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kab\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kk\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"km\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"kn\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ko\", translations: { \"{tag} (invisible)\": \"{tag}(숨김)\", \"{tag} (restricted)\": \"{tag}(제한)\", \"a few seconds ago\": \"방금 전\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"활동\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"la\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lb\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lo\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lt_LT\", translations: { \"{tag} (invisible)\": \"{tag} (nematoma)\", \"{tag} (restricted)\": \"{tag} (apribota)\", \"a few seconds ago\": \"\", Actions: \"Veiksmai\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Veiklos\", \"Animals & Nature\": \"Gyvūnai ir gamta\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Pasirinkti\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Užverti\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"Tinkinti\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vėliavos\", \"Food & Drink\": \"Maistas ir gėrimai\", \"Frequently used\": \"Dažniausiai naudoti\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Pasiekta {count} simbolių žinutės riba\", \"More items …\": \"\", \"More options\": \"\", Next: \"Kitas\", \"No emoji found\": \"Nerasta jaustukų\", \"No link provider found\": \"\", \"No results\": \"Nėra rezultatų\", Objects: \"Objektai\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pristabdyti skaidrių rodymą\", \"People & Body\": \"Žmonės ir kūnas\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Pasirinkti jaustuką\", \"Please select a time zone:\": \"\", Previous: \"Ankstesnis\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Ieškoti\", \"Search emoji\": \"\", \"Search results\": \"Paieškos rezultatai\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Pasirinkti žymę\", \"Select provider\": \"\", Settings: \"Nustatymai\", \"Settings navigation\": \"Naršymas nustatymuose\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Šypsenos ir emocijos\", \"Start slideshow\": \"Pradėti skaidrių rodymą\", \"Start typing to search\": \"\", Submit: \"Pateikti\", Symbols: \"Simboliai\", \"Travel & Places\": \"Kelionės ir vietos\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"Nepavyko atlikti paiešką grupėje\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"lv\", translations: { \"{tag} (invisible)\": \"{tag} (neredzams)\", \"{tag} (restricted)\": \"{tag} (ierobežots)\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Izvēlēties\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Aizvērt\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Nākamais\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"Nav rezultātu\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pauzēt slaidrādi\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"Iepriekšējais\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Izvēlēties birku\", \"Select provider\": \"\", Settings: \"Iestatījumi\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"Sākt slaidrādi\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mk\", translations: { \"{tag} (invisible)\": \"{tag} (невидливо)\", \"{tag} (restricted)\": \"{tag} (ограничено)\", \"a few seconds ago\": \"\", Actions: \"Акции\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Активности\", \"Animals & Nature\": \"Животни & Природа\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Аватар на {displayName}\", \"Avatar of {displayName}, {status}\": \"Аватар на {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Откажи ги промените\", \"Change name\": \"\", Choose: \"Избери\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Затвори\", \"Close modal\": \"Затвори модал\", \"Close navigation\": \"Затвори навигација\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Потврди ги промените\", Custom: \"Прилагодени\", \"Edit item\": \"Уреди\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Фаворити\", Flags: \"Знамиња\", \"Food & Drink\": \"Храна & Пијалоци\", \"Frequently used\": \"Најчесто користени\", Global: \"Глобално\", \"Go back to the list\": \"Врати се на листата\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Ограничувањето на должината на пораката од {count} карактери е надминато\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следно\", \"No emoji found\": \"Не се пронајдени емотикони\", \"No link provider found\": \"\", \"No results\": \"Нема резултати\", Objects: \"Објекти\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Отвори навигација\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Пузирај слајдшоу\", \"People & Body\": \"Луѓе & Тело\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Избери емотикон\", \"Please select a time zone:\": \"Изберете временска зона:\", Previous: \"Предходно\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Барај\", \"Search emoji\": \"\", \"Search results\": \"Резултати од барувањето\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Избери ознака\", \"Select provider\": \"\", Settings: \"Параметри\", \"Settings navigation\": \"Параметри за навигација\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Смешковци & Емотикони\", \"Start slideshow\": \"Стартувај слајдшоу\", \"Start typing to search\": \"\", Submit: \"Испрати\", Symbols: \"Симболи\", \"Travel & Places\": \"Патувања & Места\", \"Type to search time zone\": \"Напишете за да пребарате временска зона\", \"Unable to search the group\": \"Неможе да се принајде групата\", \"Undo changes\": \"Врати ги промените\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mn\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"mr\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ms_MY\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"my\", translations: { \"{tag} (invisible)\": \"{tag} (ကွယ်ဝှက်ထား)\", \"{tag} (restricted)\": \"{tag} (ကန့်သတ်)\", \"a few seconds ago\": \"\", Actions: \"လုပ်ဆောင်ချက်များ\", 'Actions for item with name \"{name}\"': \"\", Activities: \"ပြုလုပ်ဆောင်တာများ\", \"Animals & Nature\": \"တိရစ္ဆာန်များနှင့် သဘာဝ\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"{displayName} ၏ ကိုယ်ပွား\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\", \"Change name\": \"\", Choose: \"ရွေးချယ်ရန်\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"ပိတ်ရန်\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"ပြောင်းလဲမှုများ အတည်ပြုရန်\", Custom: \"အလိုကျချိန်ညှိမှု\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"အလံများ\", \"Food & Drink\": \"အစားအသောက်\", \"Frequently used\": \"မကြာခဏအသုံးပြုသော\", Global: \"ကမ္ဘာလုံးဆိုင်ရာ\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\", \"More items …\": \"\", \"More options\": \"\", Next: \"နောက်သို့ဆက်ရန်\", \"No emoji found\": \"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\", \"No link provider found\": \"\", \"No results\": \"ရလဒ်မရှိပါ\", Objects: \"အရာဝတ္ထုများ\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"စလိုက်ရှိုး ခေတ္တရပ်ရန်\", \"People & Body\": \"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"အီမိုဂျီရွေးရန်\", \"Please select a time zone:\": \"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\", Previous: \"ယခင်\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"ရှာဖွေရန်\", \"Search emoji\": \"\", \"Search results\": \"ရှာဖွေမှု ရလဒ်များ\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"tag ရွေးချယ်ရန်\", \"Select provider\": \"\", Settings: \"ချိန်ညှိချက်များ\", \"Settings navigation\": \"ချိန်ညှိချက်အညွှန်း\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"စမိုင်လီများနှင့် အီမိုရှင်း\", \"Start slideshow\": \"စလိုက်ရှိုးအား စတင်ရန်\", \"Start typing to search\": \"\", Submit: \"တင်သွင်းရန်\", Symbols: \"သင်္ကေတများ\", \"Travel & Places\": \"ခရီးသွားလာခြင်းနှင့် နေရာများ\", \"Type to search time zone\": \"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\", \"Unable to search the group\": \"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nb\", translations: { \"{tag} (invisible)\": \"{tag} (usynlig)\", \"{tag} (restricted)\": \"{tag} (beskyttet)\", \"a few seconds ago\": \"\", Actions: \"Handlinger\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktiviteter\", \"Animals & Nature\": \"Dyr og natur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Alt som er delt med den samme gruppen vil vises her\", \"Avatar of {displayName}\": \"Avataren til {displayName}\", \"Avatar of {displayName}, {status}\": \"{displayName}'s avatar, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Avbryt endringer\", \"Change name\": \"\", Choose: \"Velg\", \"Clear search\": \"\", \"Clear text\": \"Fjern tekst\", Close: \"Lukk\", \"Close modal\": \"Lukk modal\", \"Close navigation\": \"Lukk navigasjon\", \"Close sidebar\": \"Lukk sidepanel\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Bekreft endringer\", Custom: \"Tilpasset\", \"Edit item\": \"Rediger\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favoritt\", Flags: \"Flagg\", \"Food & Drink\": \"Mat og drikke\", \"Frequently used\": \"Ofte brukt\", Global: \"Global\", \"Go back to the list\": \"Gå tilbake til listen\", \"Hide password\": \"Skjul passord\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Karakter begrensing {count} nådd i melding\", \"More items …\": \"Flere gjenstander...\", \"More options\": \"\", Next: \"Neste\", \"No emoji found\": \"Fant ingen emoji\", \"No link provider found\": \"\", \"No results\": \"Ingen resultater\", Objects: \"Objekter\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Åpne navigasjon\", \"Open settings menu\": \"\", \"Password is secure\": \"Passordet er sikkert\", \"Pause slideshow\": \"Pause lysbildefremvisning\", \"People & Body\": \"Mennesker og kropp\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Velg en emoji\", \"Please select a time zone:\": \"Vennligst velg tidssone\", Previous: \"Forrige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Relaterte ressurser\", Search: \"Søk\", \"Search emoji\": \"\", \"Search results\": \"Søkeresultater\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Velg en merkelapp\", \"Select provider\": \"\", Settings: \"Innstillinger\", \"Settings navigation\": \"Navigasjonsinstillinger\", \"Show password\": \"Vis passord\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smilefjes og følelser\", \"Start slideshow\": \"Start lysbildefremvisning\", \"Start typing to search\": \"\", Submit: \"Send\", Symbols: \"Symboler\", \"Travel & Places\": \"Reise og steder\", \"Type to search time zone\": \"Tast for å søke etter tidssone\", \"Unable to search the group\": \"Kunne ikke søke i gruppen\", \"Undo changes\": \"Tilbakestill endringer\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...' } }, { locale: \"ne\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nl\", translations: { \"{tag} (invisible)\": \"{tag} (onzichtbaar)\", \"{tag} (restricted)\": \"{tag} (beperkt)\", \"a few seconds ago\": \"\", Actions: \"Acties\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activiteiten\", \"Animals & Nature\": \"Dieren & Natuur\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar van {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar van {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Wijzigingen annuleren\", \"Change name\": \"\", Choose: \"Kies\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Sluiten\", \"Close modal\": \"\", \"Close navigation\": \"Navigatie sluiten\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Wijzigingen bevestigen\", Custom: \"Aangepast\", \"Edit item\": \"Item bewerken\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vlaggen\", \"Food & Drink\": \"Eten & Drinken\", \"Frequently used\": \"Vaak gebruikt\", Global: \"Globaal\", \"Go back to the list\": \"Ga terug naar de lijst\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Berichtlimiet van {count} karakters bereikt\", \"More items …\": \"\", \"More options\": \"\", Next: \"Volgende\", \"No emoji found\": \"Geen emoji gevonden\", \"No link provider found\": \"\", \"No results\": \"Geen resultaten\", Objects: \"Objecten\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Navigatie openen\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pauzeer diavoorstelling\", \"People & Body\": \"Mensen & Lichaam\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Kies een emoji\", \"Please select a time zone:\": \"Selecteer een tijdzone:\", Previous: \"Vorige\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Zoeken\", \"Search emoji\": \"\", \"Search results\": \"Zoekresultaten\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selecteer een label\", \"Select provider\": \"\", Settings: \"Instellingen\", \"Settings navigation\": \"Instellingen navigatie\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smileys & Emotie\", \"Start slideshow\": \"Start diavoorstelling\", \"Start typing to search\": \"\", Submit: \"Verwerken\", Symbols: \"Symbolen\", \"Travel & Places\": \"Reizen & Plaatsen\", \"Type to search time zone\": \"Type om de tijdzone te zoeken\", \"Unable to search the group\": \"Kan niet in de groep zoeken\", \"Undo changes\": \"Wijzigingen ongedaan maken\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"nn_NO\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"oc\", translations: { \"{tag} (invisible)\": \"{tag} (invisible)\", \"{tag} (restricted)\": \"{tag} (limit)\", \"a few seconds ago\": \"\", Actions: \"Accions\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"Causir\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Tampar\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"Seguent\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"Cap de resultat\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Metre en pausa lo diaporama\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"Precedent\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Seleccionar una etiqueta\", \"Select provider\": \"\", Settings: \"Paramètres\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"Lançar lo diaporama\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"pl\", translations: { \"{tag} (invisible)\": \"{tag} (niewidoczna)\", \"{tag} (restricted)\": \"{tag} (ograniczona)\", \"a few seconds ago\": \"\", Actions: \"Działania\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktywność\", \"Animals & Nature\": \"Zwierzęta i natura\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\", \"Avatar of {displayName}\": \"Awatar {displayName}\", \"Avatar of {displayName}, {status}\": \"Awatar {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Anuluj zmiany\", \"Change name\": \"\", Choose: \"Wybierz\", \"Clear search\": \"\", \"Clear text\": \"Wyczyść tekst\", Close: \"Zamknij\", \"Close modal\": \"Zamknij modal\", \"Close navigation\": \"Zamknij nawigację\", \"Close sidebar\": \"Zamknij pasek boczny\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potwierdź zmiany\", Custom: \"Zwyczajne\", \"Edit item\": \"Edytuj element\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Ulubiony\", Flags: \"Flagi\", \"Food & Drink\": \"Jedzenie i picie\", \"Frequently used\": \"Często używane\", Global: \"Globalnie\", \"Go back to the list\": \"Powrót do listy\", \"Hide password\": \"Ukryj hasło\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Przekroczono limit wiadomości wynoszący {count} znaków\", \"More items …\": \"Więcej pozycji…\", \"More options\": \"\", Next: \"Następny\", \"No emoji found\": \"Nie znaleziono emoji\", \"No link provider found\": \"\", \"No results\": \"Brak wyników\", Objects: \"Obiekty\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otwórz nawigację\", \"Open settings menu\": \"\", \"Password is secure\": \"Hasło jest bezpieczne\", \"Pause slideshow\": \"Wstrzymaj pokaz slajdów\", \"People & Body\": \"Ludzie i ciało\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Wybierz emoji\", \"Please select a time zone:\": \"Wybierz strefę czasową:\", Previous: \"Poprzedni\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Powiązane zasoby\", Search: \"Szukaj\", \"Search emoji\": \"\", \"Search results\": \"Wyniki wyszukiwania\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Wybierz etykietę\", \"Select provider\": \"\", Settings: \"Ustawienia\", \"Settings navigation\": \"Ustawienia nawigacji\", \"Show password\": \"Pokaż hasło\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Buźki i emotikony\", \"Start slideshow\": \"Rozpocznij pokaz slajdów\", \"Start typing to search\": \"\", Submit: \"Wyślij\", Symbols: \"Symbole\", \"Travel & Places\": \"Podróże i miejsca\", \"Type to search time zone\": \"Wpisz, aby wyszukać strefę czasową\", \"Unable to search the group\": \"Nie można przeszukać grupy\", \"Undo changes\": \"Cofnij zmiany\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…' } }, { locale: \"ps\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"pt_BR\", translations: { \"{tag} (invisible)\": \"{tag} (invisível)\", \"{tag} (restricted)\": \"{tag} (restrito) \", \"a few seconds ago\": \"\", Actions: \"Ações\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Atividades\", \"Animals & Nature\": \"Animais & Natureza\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Cancelar alterações\", \"Change name\": \"\", Choose: \"Escolher\", \"Clear search\": \"\", \"Clear text\": \"Limpar texto\", Close: \"Fechar\", \"Close modal\": \"Fechar modal\", \"Close navigation\": \"Fechar navegação\", \"Close sidebar\": \"Fechar barra lateral\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmar alterações\", Custom: \"Personalizado\", \"Edit item\": \"Editar item\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorito\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida & Bebida\", \"Frequently used\": \"Mais usados\", Global: \"Global\", \"Go back to the list\": \"Volte para a lista\", \"Hide password\": \"Ocultar a senha\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limite de mensagem de {count} caracteres atingido\", \"More items …\": \"Mais itens …\", \"More options\": \"\", Next: \"Próximo\", \"No emoji found\": \"Nenhum emoji encontrado\", \"No link provider found\": \"\", \"No results\": \"Sem resultados\", Objects: \"Objetos\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Abrir navegação\", \"Open settings menu\": \"\", \"Password is secure\": \"A senha é segura\", \"Pause slideshow\": \"Pausar apresentação de slides\", \"People & Body\": \"Pessoas & Corpo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Escolha um emoji\", \"Please select a time zone:\": \"Selecione um fuso horário: \", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Recursos relacionados\", Search: \"Pesquisar\", \"Search emoji\": \"\", \"Search results\": \"Resultados da pesquisa\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selecionar uma tag\", \"Select provider\": \"\", Settings: \"Configurações\", \"Settings navigation\": \"Navegação de configurações\", \"Show password\": \"Mostrar senha\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smiles & Emoções\", \"Start slideshow\": \"Iniciar apresentação de slides\", \"Start typing to search\": \"\", Submit: \"Enviar\", Symbols: \"Símbolo\", \"Travel & Places\": \"Viagem & Lugares\", \"Type to search time zone\": \"Digite para pesquisar o fuso horário \", \"Unable to search the group\": \"Não foi possível pesquisar o grupo\", \"Undo changes\": \"Desfazer modificações\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …' } }, { locale: \"pt_PT\", translations: { \"{tag} (invisible)\": \"{tag} (invisivel)\", \"{tag} (restricted)\": \"{tag} (restrito)\", \"a few seconds ago\": \"alguns segundos atrás\", Actions: \"Ações\", 'Actions for item with name \"{name}\"': 'Ações para objeto com o nome \"[name]\"', Activities: \"Atividades\", \"Animals & Nature\": \"Animais e Natureza\", \"Any link\": \"Qualquer link\", \"Anything shared with the same group of people will show up here\": \"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\", \"Avatar of {displayName}\": \"Avatar de {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar de {displayName}, {status}\", Back: \"Voltar atrás\", \"Back to provider selection\": \"Voltar à seleção de fornecedor\", \"Cancel changes\": \"Cancelar alterações\", \"Change name\": \"Alterar nome\", Choose: \"Escolher\", \"Clear search\": \"Limpar a pesquisa\", \"Clear text\": \"Limpar texto\", Close: \"Fechar\", \"Close modal\": \"Fechar modal\", \"Close navigation\": \"Fechar navegação\", \"Close sidebar\": \"Fechar barra lateral\", \"Close Smart Picker\": 'Fechar \"Smart Picker\"', \"Collapse menu\": \"Comprimir menu\", \"Confirm changes\": \"Confirmar alterações\", Custom: \"Personalizado\", \"Edit item\": \"Editar item\", \"Enter link\": \"Introduzir link\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\", \"External documentation for {name}\": \"Documentação externa para {name}\", Favorite: \"Favorito\", Flags: \"Bandeiras\", \"Food & Drink\": \"Comida e Bebida\", \"Frequently used\": \"Mais utilizados\", Global: \"Global\", \"Go back to the list\": \"Voltar para a lista\", \"Hide password\": \"Ocultar a senha\", 'Load more \"{options}\"\"': 'Obter mais \"{options}\"\"', \"Message limit of {count} characters reached\": \"Atingido o limite de {count} carateres da mensagem.\", \"More items …\": \"Mais itens …\", \"More options\": \"Mais opções\", Next: \"Seguinte\", \"No emoji found\": \"Nenhum emoji encontrado\", \"No link provider found\": \"Nenhum fornecedor de link encontrado\", \"No results\": \"Sem resultados\", Objects: \"Objetos\", \"Open contact menu\": \"Abrir o menu de contato\", 'Open link to \"{resourceName}\"': 'Abrir link para \"{resourceName}\"', \"Open menu\": \"Abrir menu\", \"Open navigation\": \"Abrir navegação\", \"Open settings menu\": \"Abrir menu de configurações\", \"Password is secure\": \"A senha é segura\", \"Pause slideshow\": \"Pausar diaporama\", \"People & Body\": \"Pessoas e Corpo\", \"Pick a date\": \"Escolha uma data\", \"Pick a date and a time\": \"Escolha uma data e um horário\", \"Pick a month\": \"Escolha um mês\", \"Pick a time\": \"Escolha um horário\", \"Pick a week\": \"Escolha uma semana\", \"Pick a year\": \"Escolha um ano\", \"Pick an emoji\": \"Escolha um emoji\", \"Please select a time zone:\": \"Por favor, selecione um fuso horário: \", Previous: \"Anterior\", \"Provider icon\": \"Icon do fornecedor\", \"Raw link {options}\": \"Link inicial {options}\", \"Related resources\": \"Recursos relacionados\", Search: \"Pesquisar\", \"Search emoji\": \"Pesquisar emoji\", \"Search results\": \"Resultados da pesquisa\", \"sec. ago\": \"seg. atrás\", \"seconds ago\": \"segundos atrás\", \"Select a tag\": \"Selecionar uma etiqueta\", \"Select provider\": \"Escolha de fornecedor\", Settings: \"Definições\", \"Settings navigation\": \"Navegação de configurações\", \"Show password\": \"Mostrar senha\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Sorrisos e Emoções\", \"Start slideshow\": \"Iniciar diaporama\", \"Start typing to search\": \"Comece a digitar para pesquisar\", Submit: \"Submeter\", Symbols: \"Símbolos\", \"Travel & Places\": \"Viagem e Lugares\", \"Type to search time zone\": \"Digite para pesquisar o fuso horário \", \"Unable to search the group\": \"Não é possível pesquisar o grupo\", \"Undo changes\": \"Anular alterações\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …' } }, { locale: \"ro\", translations: { \"{tag} (invisible)\": \"{tag} (invizibil)\", \"{tag} (restricted)\": \"{tag} (restricționat)\", \"a few seconds ago\": \"\", Actions: \"Acțiuni\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Activități\", \"Animals & Nature\": \"Animale și natură\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\", \"Avatar of {displayName}\": \"Avatarul lui {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatarul lui {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Anulează modificările\", \"Change name\": \"\", Choose: \"Alegeți\", \"Clear search\": \"\", \"Clear text\": \"Șterge textul\", Close: \"Închideți\", \"Close modal\": \"Închideți modulul\", \"Close navigation\": \"Închideți navigarea\", \"Close sidebar\": \"Închide bara laterală\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Confirmați modificările\", Custom: \"Personalizat\", \"Edit item\": \"Editați elementul\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Favorit\", Flags: \"Marcaje\", \"Food & Drink\": \"Alimente și băuturi\", \"Frequently used\": \"Utilizate frecvent\", Global: \"Global\", \"Go back to the list\": \"Întoarceți-vă la listă\", \"Hide password\": \"Ascunde parola\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limita mesajului de {count} caractere a fost atinsă\", \"More items …\": \"Mai multe articole ...\", \"More options\": \"\", Next: \"Următorul\", \"No emoji found\": \"Nu s-a găsit niciun emoji\", \"No link provider found\": \"\", \"No results\": \"Nu există rezultate\", Objects: \"Obiecte\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Deschideți navigația\", \"Open settings menu\": \"\", \"Password is secure\": \"Parola este sigură\", \"Pause slideshow\": \"Pauză prezentare de diapozitive\", \"People & Body\": \"Oameni și corp\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Alege un emoji\", \"Please select a time zone:\": \"Vă rugăm să selectați un fus orar:\", Previous: \"Anterior\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Resurse legate\", Search: \"Căutare\", \"Search emoji\": \"\", \"Search results\": \"Rezultatele căutării\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Selectați o etichetă\", \"Select provider\": \"\", Settings: \"Setări\", \"Settings navigation\": \"Navigare setări\", \"Show password\": \"Arată parola\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Zâmbete și emoții\", \"Start slideshow\": \"Începeți prezentarea de diapozitive\", \"Start typing to search\": \"\", Submit: \"Trimiteți\", Symbols: \"Simboluri\", \"Travel & Places\": \"Călătorii și locuri\", \"Type to search time zone\": \"Tastați pentru a căuta fusul orar\", \"Unable to search the group\": \"Imposibilitatea de a căuta în grup\", \"Undo changes\": \"Anularea modificărilor\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...' } }, { locale: \"ru\", translations: { \"{tag} (invisible)\": \"{tag} (невидимое)\", \"{tag} (restricted)\": \"{tag} (ограниченное)\", \"a few seconds ago\": \"\", Actions: \"Действия \", 'Actions for item with name \"{name}\"': \"\", Activities: \"События\", \"Animals & Nature\": \"Животные и природа \", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Аватар {displayName}\", \"Avatar of {displayName}, {status}\": \"Фотография {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Отменить изменения\", \"Change name\": \"\", Choose: \"Выберите\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Закрыть\", \"Close modal\": \"Закрыть модальное окно\", \"Close navigation\": \"Закрыть навигацию\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Подтвердить изменения\", Custom: \"Пользовательское\", \"Edit item\": \"Изменить элемент\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Флаги\", \"Food & Drink\": \"Еда, напиток\", \"Frequently used\": \"Часто используемый\", Global: \"Глобальный\", \"Go back to the list\": \"Вернуться к списку\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Достигнуто ограничение на количество символов в {count}\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следующее\", \"No emoji found\": \"Эмодзи не найдено\", \"No link provider found\": \"\", \"No results\": \"Результаты отсуствуют\", Objects: \"Объекты\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Открыть навигацию\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Приостановить показ слйдов\", \"People & Body\": \"Люди и тело\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Выберите эмодзи\", \"Please select a time zone:\": \"Пожалуйста, выберите часовой пояс:\", Previous: \"Предыдущее\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Поиск\", \"Search emoji\": \"\", \"Search results\": \"Результаты поиска\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Выберите метку\", \"Select provider\": \"\", Settings: \"Параметры\", \"Settings navigation\": \"Навигация по настройкам\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Смайлики и эмоции\", \"Start slideshow\": \"Начать показ слайдов\", \"Start typing to search\": \"\", Submit: \"Утвердить\", Symbols: \"Символы\", \"Travel & Places\": \"Путешествия и места\", \"Type to search time zone\": \"Введите для поиска часового пояса\", \"Unable to search the group\": \"Невозможно найти группу\", \"Undo changes\": \"Отменить изменения\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sc\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"si\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sk\", translations: { \"{tag} (invisible)\": \"{tag} (neviditeľný)\", \"{tag} (restricted)\": \"{tag} (obmedzený)\", \"a few seconds ago\": \"\", Actions: \"Akcie\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivity\", \"Animals & Nature\": \"Zvieratá a príroda\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Zrušiť zmeny\", \"Change name\": \"\", Choose: \"Vybrať\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Zatvoriť\", \"Close modal\": \"\", \"Close navigation\": \"Zavrieť navigáciu\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potvrdiť zmeny\", Custom: \"Zvyk\", \"Edit item\": \"Upraviť položku\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"Vlajky\", \"Food & Drink\": \"Jedlo a nápoje\", \"Frequently used\": \"Často používané\", Global: \"Globálne\", \"Go back to the list\": \"Naspäť na zoznam\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Limit správy na {count} znakov dosiahnutý\", \"More items …\": \"\", \"More options\": \"\", Next: \"Ďalší\", \"No emoji found\": \"Nenašli sa žiadne emodži\", \"No link provider found\": \"\", \"No results\": \"Žiadne výsledky\", Objects: \"Objekty\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otvoriť navigáciu\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Pozastaviť prezentáciu\", \"People & Body\": \"Ľudia a telo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Vyberte si emodži\", \"Please select a time zone:\": \"Prosím vyberte časovú zónu:\", Previous: \"Predchádzajúci\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Hľadať\", \"Search emoji\": \"\", \"Search results\": \"Výsledky vyhľadávania\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Vybrať štítok\", \"Select provider\": \"\", Settings: \"Nastavenia\", \"Settings navigation\": \"Navigácia v nastaveniach\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smajlíky a emócie\", \"Start slideshow\": \"Začať prezentáciu\", \"Start typing to search\": \"\", Submit: \"Odoslať\", Symbols: \"Symboly\", \"Travel & Places\": \"Cestovanie a miesta\", \"Type to search time zone\": \"Začníte písať pre vyhľadávanie časovej zóny\", \"Unable to search the group\": \"Skupinu sa nepodarilo nájsť\", \"Undo changes\": \"Vrátiť zmeny\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sl\", translations: { \"{tag} (invisible)\": \"{tag} (nevidno)\", \"{tag} (restricted)\": \"{tag} (omejeno)\", \"a few seconds ago\": \"\", Actions: \"Dejanja\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Dejavnosti\", \"Animals & Nature\": \"Živali in Narava\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Podoba {displayName}\", \"Avatar of {displayName}, {status}\": \"Prikazna slika {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Prekliči spremembe\", \"Change name\": \"\", Choose: \"Izbor\", \"Clear search\": \"\", \"Clear text\": \"Počisti besedilo\", Close: \"Zapri\", \"Close modal\": \"Zapri pojavno okno\", \"Close navigation\": \"Zapri krmarjenje\", \"Close sidebar\": \"Zapri stransko vrstico\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potrdi spremembe\", Custom: \"Po meri\", \"Edit item\": \"Uredi predmet\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Priljubljeno\", Flags: \"Zastavice\", \"Food & Drink\": \"Hrana in Pijača\", \"Frequently used\": \"Pogostost uporabe\", Global: \"Splošno\", \"Go back to the list\": \"Vrni se na seznam\", \"Hide password\": \"Skrij geslo\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Dosežena omejitev {count} znakov na sporočilo.\", \"More items …\": \"Več predmetov ...\", \"More options\": \"\", Next: \"Naslednji\", \"No emoji found\": \"Ni najdenih izraznih ikon\", \"No link provider found\": \"\", \"No results\": \"Ni zadetkov\", Objects: \"Predmeti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Odpri krmarjenje\", \"Open settings menu\": \"\", \"Password is secure\": \"Geslo je varno\", \"Pause slideshow\": \"Ustavi predstavitev\", \"People & Body\": \"Ljudje in Telo\", \"Pick a date\": \"Izbor datuma\", \"Pick a date and a time\": \"Izbor datuma in časa\", \"Pick a month\": \"Izbor meseca\", \"Pick a time\": \"Izbor časa\", \"Pick a week\": \"Izbor tedna\", \"Pick a year\": \"Izbor leta\", \"Pick an emoji\": \"Izbor izrazne ikone\", \"Please select a time zone:\": \"Izbor časovnega pasu:\", Previous: \"Predhodni\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"Povezani viri\", Search: \"Iskanje\", \"Search emoji\": \"\", \"Search results\": \"Zadetki iskanja\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Izbor oznake\", \"Select provider\": \"\", Settings: \"Nastavitve\", \"Settings navigation\": \"Krmarjenje nastavitev\", \"Show password\": \"Pokaži geslo\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Izrazne ikone\", \"Start slideshow\": \"Začni predstavitev\", \"Start typing to search\": \"\", Submit: \"Pošlji\", Symbols: \"Simboli\", \"Travel & Places\": \"Potovanja in Kraji\", \"Type to search time zone\": \"Vpišite niz za iskanje časovnega pasu\", \"Unable to search the group\": \"Ni mogoče iskati po skupini\", \"Undo changes\": \"Razveljavi spremembe\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sq\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sr\", translations: { \"{tag} (invisible)\": \"{tag} (nevidljivo)\", \"{tag} (restricted)\": \"{tag} (ograničeno)\", \"a few seconds ago\": \"\", Actions: \"Radnje\", 'Actions for item with name \"{name}\"': \"\", Activities: \"Aktivnosti\", \"Animals & Nature\": \"Životinje i Priroda\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"Avatar za {displayName}\", \"Avatar of {displayName}, {status}\": \"Avatar za {displayName}, {status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"Otkaži izmene\", \"Change name\": \"\", Choose: \"Изаберите\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"Затвори\", \"Close modal\": \"Zatvori modal\", \"Close navigation\": \"Zatvori navigaciju\", \"Close sidebar\": \"Zatvori bočnu traku\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"Potvrdite promene\", Custom: \"Po meri\", \"Edit item\": \"Uredi stavku\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"Omiljeni\", Flags: \"Zastave\", \"Food & Drink\": \"Hrana i Piće\", \"Frequently used\": \"Često korišćeno\", Global: \"Globalno\", \"Go back to the list\": \"Natrag na listu\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"Dostignuto je ograničenje za poruke od {count} znakova\", \"More items …\": \"\", \"More options\": \"\", Next: \"Следеће\", \"No emoji found\": \"Nije pronađen nijedan emodži\", \"No link provider found\": \"\", \"No results\": \"Нема резултата\", Objects: \"Objekti\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"Otvori navigaciju\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"Паузирај слајд шоу\", \"People & Body\": \"Ljudi i Telo\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"Izaberi emodži\", \"Please select a time zone:\": \"Molimo izaberite vremensku zonu:\", Previous: \"Претходно\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"Pretraži\", \"Search emoji\": \"\", \"Search results\": \"Rezultati pretrage\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"Изаберите ознаку\", \"Select provider\": \"\", Settings: \"Поставке\", \"Settings navigation\": \"Navigacija u podešavanjima\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"Smajli i Emocije\", \"Start slideshow\": \"Покрени слајд шоу\", \"Start typing to search\": \"\", Submit: \"Prihvati\", Symbols: \"Simboli\", \"Travel & Places\": \"Putovanja i Mesta\", \"Type to search time zone\": \"Ukucaj da pretražiš vremenske zone\", \"Unable to search the group\": \"Nije moguće pretražiti grupu\", \"Undo changes\": \"Poništi promene\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sr@latin\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"sv\", translations: { \"{tag} (invisible)\": \"{tag} (osynlig)\", \"{tag} (restricted)\": \"{tag} (begränsad)\", \"a few seconds ago\": \"några sekunder sedan\", Actions: \"Åtgärder\", 'Actions for item with name \"{name}\"': 'Åtgärder för objekt med namn \"{name}\"', Activities: \"Aktiviteter\", \"Animals & Nature\": \"Djur & Natur\", \"Any link\": \"Vilken länk som helst\", \"Anything shared with the same group of people will show up here\": \"Något som delats med samma grupp av personer kommer att visas här\", \"Avatar of {displayName}\": \"{displayName}s avatar\", \"Avatar of {displayName}, {status}\": \"{displayName}s avatar, {status}\", Back: \"Tillbaka\", \"Back to provider selection\": \"Tillbaka till leverantörsval\", \"Cancel changes\": \"Avbryt ändringar\", \"Change name\": \"Ändra namn\", Choose: \"Välj\", \"Clear search\": \"Rensa sökning\", \"Clear text\": \"Ta bort text\", Close: \"Stäng\", \"Close modal\": \"Stäng modal\", \"Close navigation\": \"Stäng navigering\", \"Close sidebar\": \"Stäng sidopanel\", \"Close Smart Picker\": \"Stäng Smart Picker\", \"Collapse menu\": \"Komprimera menyn\", \"Confirm changes\": \"Bekräfta ändringar\", Custom: \"Anpassad\", \"Edit item\": \"Ändra\", \"Enter link\": \"Ange länk\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\", \"External documentation for {name}\": \"Extern dokumentation för {name}\", Favorite: \"Favorit\", Flags: \"Flaggor\", \"Food & Drink\": \"Mat & Dryck\", \"Frequently used\": \"Används ofta\", Global: \"Global\", \"Go back to the list\": \"Gå tillbaka till listan\", \"Hide password\": \"Göm lössenordet\", 'Load more \"{options}\"\"': 'Ladda fler \"{options}\"\"', \"Message limit of {count} characters reached\": \"Meddelandegräns {count} tecken används\", \"More items …\": \"Fler objekt\", \"More options\": \"Fler alternativ\", Next: \"Nästa\", \"No emoji found\": \"Hittade inga emojis\", \"No link provider found\": \"Ingen länkleverantör hittades\", \"No results\": \"Inga resultat\", Objects: \"Objekt\", \"Open contact menu\": \"Öppna kontaktmenyn\", 'Open link to \"{resourceName}\"': 'Öppna länken till \"{resourceName}\"', \"Open menu\": \"Öppna menyn\", \"Open navigation\": \"Öppna navigering\", \"Open settings menu\": \"Öppna inställningsmenyn\", \"Password is secure\": \"Lössenordet är säkert\", \"Pause slideshow\": \"Pausa bildspelet\", \"People & Body\": \"Kropp & Själ\", \"Pick a date\": \"Välj datum\", \"Pick a date and a time\": \"Välj datum och tid\", \"Pick a month\": \"Välj månad\", \"Pick a time\": \"Välj tid\", \"Pick a week\": \"Välj vecka\", \"Pick a year\": \"Välj år\", \"Pick an emoji\": \"Välj en emoji\", \"Please select a time zone:\": \"Välj tidszon:\", Previous: \"Föregående\", \"Provider icon\": \"Leverantörsikon\", \"Raw link {options}\": \"Oformaterad länk {options}\", \"Related resources\": \"Relaterade resurser\", Search: \"Sök\", \"Search emoji\": \"Sök emoji\", \"Search results\": \"Sökresultat\", \"sec. ago\": \"sek. sedan\", \"seconds ago\": \"sekunder sedan\", \"Select a tag\": \"Välj en tag\", \"Select provider\": \"Välj leverantör\", Settings: \"Inställningar\", \"Settings navigation\": \"Inställningsmeny\", \"Show password\": \"Visa lössenordet\", \"Smart Picker\": \"Smart Picker\", \"Smileys & Emotion\": \"Selfies & Känslor\", \"Start slideshow\": \"Starta bildspelet\", \"Start typing to search\": \"Börja skriva för att söka\", Submit: \"Skicka\", Symbols: \"Symboler\", \"Travel & Places\": \"Resor & Sevärdigheter\", \"Type to search time zone\": \"Skriv för att välja tidszon\", \"Unable to search the group\": \"Kunde inte söka i gruppen\", \"Undo changes\": \"Ångra ändringar\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...' } }, { locale: \"sw\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"ta\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"th\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"tk\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"tr\", translations: { \"{tag} (invisible)\": \"{tag} (görünmez)\", \"{tag} (restricted)\": \"{tag} (kısıtlı)\", \"a few seconds ago\": \"birkaç saniye önce\", Actions: \"İşlemler\", 'Actions for item with name \"{name}\"': \"{name} adındaki öge için işlemler\", Activities: \"Etkinlikler\", \"Animals & Nature\": \"Hayvanlar ve Doğa\", \"Any link\": \"Herhangi bir bağlantı\", \"Anything shared with the same group of people will show up here\": \"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\", \"Avatar of {displayName}\": \"{displayName} avatarı\", \"Avatar of {displayName}, {status}\": \"{displayName}, {status} avatarı\", Back: \"Geri\", \"Back to provider selection\": \"Sağlayıcı seçimine dön\", \"Cancel changes\": \"Değişiklikleri iptal et\", \"Change name\": \"Adı değiştir\", Choose: \"Seçin\", \"Clear search\": \"Aramayı temizle\", \"Clear text\": \"Metni temizle\", Close: \"Kapat\", \"Close modal\": \"Üste açılan pencereyi kapat\", \"Close navigation\": \"Gezinmeyi kapat\", \"Close sidebar\": \"Yan çubuğu kapat\", \"Close Smart Picker\": \"Akıllı seçimi kapat\", \"Collapse menu\": \"Menüyü daralt\", \"Confirm changes\": \"Değişiklikleri onayla\", Custom: \"Özel\", \"Edit item\": \"Ögeyi düzenle\", \"Enter link\": \"Bağlantıyı yazın\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \", \"External documentation for {name}\": \"{name} için dış belgeler\", Favorite: \"Sık kullanılanlara ekle\", Flags: \"Bayraklar\", \"Food & Drink\": \"Yeme ve içme\", \"Frequently used\": \"Sık kullanılanlar\", Global: \"Evrensel\", \"Go back to the list\": \"Listeye dön\", \"Hide password\": \"Parolayı gizle\", 'Load more \"{options}\"\"': 'Diğer \"{options}\"', \"Message limit of {count} characters reached\": \"{count} karakter ileti sınırına ulaşıldı\", \"More items …\": \"Diğer ögeler…\", \"More options\": \"Diğer seçenekler\", Next: \"Sonraki\", \"No emoji found\": \"Herhangi bir emoji bulunamadı\", \"No link provider found\": \"Bağlantı sağlayıcısı bulunamadı\", \"No results\": \"Herhangi bir sonuç bulunamadı\", Objects: \"Nesneler\", \"Open contact menu\": \"İletişim menüsünü aç\", 'Open link to \"{resourceName}\"': \"{resourceName} bağlantısını aç\", \"Open menu\": \"Menüyü aç\", \"Open navigation\": \"Gezinmeyi aç\", \"Open settings menu\": \"Ayarlar menüsünü aç\", \"Password is secure\": \"Parola güvenli\", \"Pause slideshow\": \"Slayt sunumunu duraklat\", \"People & Body\": \"İnsanlar ve beden\", \"Pick a date\": \"Bir tarih seçin\", \"Pick a date and a time\": \"Bir tarih ve saat seçin\", \"Pick a month\": \"Bir ay seçin\", \"Pick a time\": \"Bir saat seçin\", \"Pick a week\": \"Bir hafta seçin\", \"Pick a year\": \"Bir yıl seçin\", \"Pick an emoji\": \"Bir emoji seçin\", \"Please select a time zone:\": \"Lütfen bir saat dilimi seçin:\", Previous: \"Önceki\", \"Provider icon\": \"Sağlayıcı simgesi\", \"Raw link {options}\": \"Ham bağlantı {options}\", \"Related resources\": \"İlgili kaynaklar\", Search: \"Arama\", \"Search emoji\": \"Emoji ara\", \"Search results\": \"Arama sonuçları\", \"sec. ago\": \"sn. önce\", \"seconds ago\": \"saniye önce\", \"Select a tag\": \"Bir etiket seçin\", \"Select provider\": \"Sağlayıcı seçin\", Settings: \"Ayarlar\", \"Settings navigation\": \"Gezinme ayarları\", \"Show password\": \"Parolayı görüntüle\", \"Smart Picker\": \"Akıllı seçim\", \"Smileys & Emotion\": \"İfadeler ve duygular\", \"Start slideshow\": \"Slayt sunumunu başlat\", \"Start typing to search\": \"Aramak için yazmaya başlayın\", Submit: \"Gönder\", Symbols: \"Simgeler\", \"Travel & Places\": \"Gezi ve yerler\", \"Type to search time zone\": \"Saat dilimi aramak için yazmaya başlayın\", \"Unable to search the group\": \"Grupta arama yapılamadı\", \"Undo changes\": \"Değişiklikleri geri al\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…' } }, { locale: \"ug\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"uk\", translations: { \"{tag} (invisible)\": \"{tag} (невидимий)\", \"{tag} (restricted)\": \"{tag} (обмежений)\", \"a few seconds ago\": \"декілька секунд тому\", Actions: \"Дії\", 'Actions for item with name \"{name}\"': `Дії для об'єкту \"{name}\"`, Activities: \"Діяльність\", \"Animals & Nature\": \"Тварини та природа\", \"Any link\": \"Будь-яке посилання\", \"Anything shared with the same group of people will show up here\": \"Будь-що доступне для цієї же групи людей буде показано тут\", \"Avatar of {displayName}\": \"Аватар {displayName}\", \"Avatar of {displayName}, {status}\": \"Аватар {displayName}, {status}\", Back: \"Назад\", \"Back to provider selection\": \"Назад до вибору постачальника\", \"Cancel changes\": \"Скасувати зміни\", \"Change name\": \"Змінити назву\", Choose: \"Виберіть\", \"Clear search\": \"Очистити пошук\", \"Clear text\": \"Очистити текст\", Close: \"Закрити\", \"Close modal\": \"Закрити модаль\", \"Close navigation\": \"Закрити навігацію\", \"Close sidebar\": \"Закрити бічну панель\", \"Close Smart Picker\": \"Закрити асистент вибору\", \"Collapse menu\": \"Згорнути меню\", \"Confirm changes\": \"Підтвердити зміни\", Custom: \"Власне\", \"Edit item\": \"Редагувати елемент\", \"Enter link\": \"Зазначте посилання\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\", \"External documentation for {name}\": \"Зовнішня документація для {name}\", Favorite: \"Із зірочкою\", Flags: \"Прапори\", \"Food & Drink\": \"Їжа та напої\", \"Frequently used\": \"Найчастіші\", Global: \"Глобальний\", \"Go back to the list\": \"Повернутися до списку\", \"Hide password\": \"Приховати пароль\", 'Load more \"{options}\"\"': 'Завантажити більше \"{options}\"', \"Message limit of {count} characters reached\": \"Вичерпано ліміт у {count} символів для повідомлення\", \"More items …\": \"Більше об'єктів...\", \"More options\": \"Більше об'єктів\", Next: \"Вперед\", \"No emoji found\": \"Емоційки відсутні\", \"No link provider found\": \"Не наведено посилання\", \"No results\": \"Відсутні результати\", Objects: \"Об'єкти\", \"Open contact menu\": \"Відкрити меню контактів\", 'Open link to \"{resourceName}\"': 'Відкрити посилання на \"{resourceName}\"', \"Open menu\": \"Відкрити меню\", \"Open navigation\": \"Відкрити навігацію\", \"Open settings menu\": \"Відкрити меню налаштувань\", \"Password is secure\": \"Пароль безпечний\", \"Pause slideshow\": \"Пауза у показі слайдів\", \"People & Body\": \"Люди та жести\", \"Pick a date\": \"Вибрати дату\", \"Pick a date and a time\": \"Виберіть дату та час\", \"Pick a month\": \"Виберіть місяць\", \"Pick a time\": \"Виберіть час\", \"Pick a week\": \"Виберіть тиждень\", \"Pick a year\": \"Виберіть рік\", \"Pick an emoji\": \"Виберіть емоційку\", \"Please select a time zone:\": \"Виберіть часовий пояс:\", Previous: \"Назад\", \"Provider icon\": \"Піктограма постачальника\", \"Raw link {options}\": \"Пряме посилання {options}\", \"Related resources\": \"Пов'язані ресурси\", Search: \"Пошук\", \"Search emoji\": \"Шукати емоційки\", \"Search results\": \"Результати пошуку\", \"sec. ago\": \"с тому\", \"seconds ago\": \"с тому\", \"Select a tag\": \"Виберіть позначку\", \"Select provider\": \"Виберіть постачальника\", Settings: \"Налаштування\", \"Settings navigation\": \"Навігація у налаштуваннях\", \"Show password\": \"Показати пароль\", \"Smart Picker\": \"Асистент вибору\", \"Smileys & Emotion\": \"Смайли та емоції\", \"Start slideshow\": \"Почати показ слайдів\", \"Start typing to search\": \"Почніть вводити для пошуку\", Submit: \"Надіслати\", Symbols: \"Символи\", \"Travel & Places\": \"Поїздки та місця\", \"Type to search time zone\": \"Введіть для пошуку часовий пояс\", \"Unable to search the group\": \"Неможливо шукати в групі\", \"Undo changes\": \"Скасувати зміни\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': 'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...' } }, { locale: \"ur_PK\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"uz\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"vi\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"zh_CN\", translations: { \"{tag} (invisible)\": \"{tag} (不可见)\", \"{tag} (restricted)\": \"{tag} (受限)\", \"a few seconds ago\": \"\", Actions: \"行为\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活动\", \"Animals & Nature\": \"动物 & 自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"与同组用户分享的所有内容都会显示于此\", \"Avatar of {displayName}\": \"{displayName}的头像\", \"Avatar of {displayName}, {status}\": \"{displayName}的头像,{status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"取消更改\", \"Change name\": \"\", Choose: \"选择\", \"Clear search\": \"\", \"Clear text\": \"清除文本\", Close: \"关闭\", \"Close modal\": \"关闭窗口\", \"Close navigation\": \"关闭导航\", \"Close sidebar\": \"关闭侧边栏\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"确认更改\", Custom: \"自定义\", \"Edit item\": \"编辑项目\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"喜爱\", Flags: \"旗帜\", \"Food & Drink\": \"食物 & 饮品\", \"Frequently used\": \"经常使用\", Global: \"全局\", \"Go back to the list\": \"返回至列表\", \"Hide password\": \"隐藏密码\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已达到 {count} 个字符的消息限制\", \"More items …\": \"更多项目…\", \"More options\": \"\", Next: \"下一个\", \"No emoji found\": \"表情未找到\", \"No link provider found\": \"\", \"No results\": \"无结果\", Objects: \"物体\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"开启导航\", \"Open settings menu\": \"\", \"Password is secure\": \"密码安全\", \"Pause slideshow\": \"暂停幻灯片\", \"People & Body\": \"人 & 身体\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"选择一个表情\", \"Please select a time zone:\": \"请选择一个时区:\", Previous: \"上一个\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"相关资源\", Search: \"搜索\", \"Search emoji\": \"\", \"Search results\": \"搜索结果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"选择一个标签\", \"Select provider\": \"\", Settings: \"设置\", \"Settings navigation\": \"设置向导\", \"Show password\": \"显示密码\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"笑脸 & 情感\", \"Start slideshow\": \"开始幻灯片\", \"Start typing to search\": \"\", Submit: \"提交\", Symbols: \"符号\", \"Travel & Places\": \"旅游 & 地点\", \"Type to search time zone\": \"打字以搜索时区\", \"Unable to search the group\": \"无法搜索分组\", \"Undo changes\": \"撤销更改\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': '写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...' } }, { locale: \"zh_HK\", translations: { \"{tag} (invisible)\": \"{tag} (隱藏)\", \"{tag} (restricted)\": \"{tag} (受限)\", \"a few seconds ago\": \"\", Actions: \"動作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活動\", \"Animals & Nature\": \"動物與自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"與同一組人共享的任何內容都會顯示在此處\", \"Avatar of {displayName}\": \"{displayName} 的頭像\", \"Avatar of {displayName}, {status}\": \"{displayName} 的頭像,{status}\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"取消更改\", \"Change name\": \"\", Choose: \"選擇\", \"Clear search\": \"\", \"Clear text\": \"清除文本\", Close: \"關閉\", \"Close modal\": \"關閉模態\", \"Close navigation\": \"關閉導航\", \"Close sidebar\": \"關閉側邊欄\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"確認更改\", Custom: \"自定義\", \"Edit item\": \"編輯項目\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"喜愛\", Flags: \"旗幟\", \"Food & Drink\": \"食物與飲料\", \"Frequently used\": \"經常使用\", Global: \"全球的\", \"Go back to the list\": \"返回清單\", \"Hide password\": \"隱藏密碼\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已達到訊息最多 {count} 字元限制\", \"More items …\": \"更多項目 …\", \"More options\": \"\", Next: \"下一個\", \"No emoji found\": \"未找到表情符號\", \"No link provider found\": \"\", \"No results\": \"無結果\", Objects: \"物件\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"開啟導航\", \"Open settings menu\": \"\", \"Password is secure\": \"密碼是安全的\", \"Pause slideshow\": \"暫停幻燈片\", \"People & Body\": \"人物\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"選擇表情符號\", \"Please select a time zone:\": \"請選擇時區:\", Previous: \"上一個\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"相關資源\", Search: \"搜尋\", \"Search emoji\": \"\", \"Search results\": \"搜尋結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"選擇標籤\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"設定值導覽\", \"Show password\": \"顯示密碼\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"表情\", \"Start slideshow\": \"開始幻燈片\", \"Start typing to search\": \"\", Submit: \"提交\", Symbols: \"標誌\", \"Travel & Places\": \"旅遊與景點\", \"Type to search time zone\": \"鍵入以搜索時區\", \"Unable to search the group\": \"無法搜尋群組\", \"Undo changes\": \"取消更改\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': '寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...' } }, { locale: \"zh_TW\", translations: { \"{tag} (invisible)\": \"{tag}(隱藏)\", \"{tag} (restricted)\": \"{tag}(受限)\", \"a few seconds ago\": \"幾秒前\", Actions: \"動作\", 'Actions for item with name \"{name}\"': \"\", Activities: \"活動\", \"Animals & Nature\": \"動物與自然\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"選擇\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"關閉\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"自定義\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"旗幟\", \"Food & Drink\": \"食物與飲料\", \"Frequently used\": \"最近使用\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"已達到訊息最多 {count} 字元限制\", \"More items …\": \"\", \"More options\": \"\", Next: \"下一個\", \"No emoji found\": \"未找到表情符號\", \"No link provider found\": \"\", \"No results\": \"無結果\", Objects: \"物件\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"暫停幻燈片\", \"People & Body\": \"人物\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"選擇表情符號\", \"Please select a time zone:\": \"\", Previous: \"上一個\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"搜尋\", \"Search emoji\": \"\", \"Search results\": \"搜尋結果\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"選擇標籤\", \"Select provider\": \"\", Settings: \"設定\", \"Settings navigation\": \"設定值導覽\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"表情\", \"Start slideshow\": \"開始幻燈片\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"標誌\", \"Travel & Places\": \"旅遊與景點\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"無法搜尋群組\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }, { locale: \"zu_ZA\", translations: { \"{tag} (invisible)\": \"\", \"{tag} (restricted)\": \"\", \"a few seconds ago\": \"\", Actions: \"\", 'Actions for item with name \"{name}\"': \"\", Activities: \"\", \"Animals & Nature\": \"\", \"Any link\": \"\", \"Anything shared with the same group of people will show up here\": \"\", \"Avatar of {displayName}\": \"\", \"Avatar of {displayName}, {status}\": \"\", Back: \"\", \"Back to provider selection\": \"\", \"Cancel changes\": \"\", \"Change name\": \"\", Choose: \"\", \"Clear search\": \"\", \"Clear text\": \"\", Close: \"\", \"Close modal\": \"\", \"Close navigation\": \"\", \"Close sidebar\": \"\", \"Close Smart Picker\": \"\", \"Collapse menu\": \"\", \"Confirm changes\": \"\", Custom: \"\", \"Edit item\": \"\", \"Enter link\": \"\", \"Error getting related resources. Please contact your system administrator if you have any questions.\": \"\", \"External documentation for {name}\": \"\", Favorite: \"\", Flags: \"\", \"Food & Drink\": \"\", \"Frequently used\": \"\", Global: \"\", \"Go back to the list\": \"\", \"Hide password\": \"\", 'Load more \"{options}\"\"': \"\", \"Message limit of {count} characters reached\": \"\", \"More items …\": \"\", \"More options\": \"\", Next: \"\", \"No emoji found\": \"\", \"No link provider found\": \"\", \"No results\": \"\", Objects: \"\", \"Open contact menu\": \"\", 'Open link to \"{resourceName}\"': \"\", \"Open menu\": \"\", \"Open navigation\": \"\", \"Open settings menu\": \"\", \"Password is secure\": \"\", \"Pause slideshow\": \"\", \"People & Body\": \"\", \"Pick a date\": \"\", \"Pick a date and a time\": \"\", \"Pick a month\": \"\", \"Pick a time\": \"\", \"Pick a week\": \"\", \"Pick a year\": \"\", \"Pick an emoji\": \"\", \"Please select a time zone:\": \"\", Previous: \"\", \"Provider icon\": \"\", \"Raw link {options}\": \"\", \"Related resources\": \"\", Search: \"\", \"Search emoji\": \"\", \"Search results\": \"\", \"sec. ago\": \"\", \"seconds ago\": \"\", \"Select a tag\": \"\", \"Select provider\": \"\", Settings: \"\", \"Settings navigation\": \"\", \"Show password\": \"\", \"Smart Picker\": \"\", \"Smileys & Emotion\": \"\", \"Start slideshow\": \"\", \"Start typing to search\": \"\", Submit: \"\", Symbols: \"\", \"Travel & Places\": \"\", \"Type to search time zone\": \"\", \"Unable to search the group\": \"\", \"Undo changes\": \"\", 'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …': \"\" } }].forEach(function(p) {\n var h = {};\n for (var y in p.translations)\n p.translations[y].pluralId ? h[y] = { msgid: y, msgid_plural: p.translations[y].pluralId, msgstr: p.translations[y].msgstr } : h[y] = { msgid: y, msgstr: [p.translations[y]] };\n c.addTranslation(p.locale, { translations: { \"\": h } });\n });\n var d = c.build(), m = (d.ngettext.bind(d), d.gettext.bind(d));\n }, 1205: (o, i, u) => {\n u.d(i, { Z: () => l });\n const l = function(c) {\n return Math.random().toString(36).replace(/[^a-z]+/g, \"\").slice(0, c || 5);\n };\n }, 1206: (o, i, u) => {\n u.d(i, { L: () => l });\n var l = function() {\n return Object.assign(window, { _nc_focus_trap: window._nc_focus_trap || [] }), window._nc_focus_trap;\n };\n }, 9546: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcActions/NcActions.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 5155: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcActions/NcActions.vue\"], names: [], mappings: \"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 7294: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcButton/NcButton.vue\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 1625: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcPopover/NcPopover.vue\"], names: [], mappings: \"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 5727: () => {\n }, 2102: () => {\n }, 2405: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n }, 7931: (o) => {\n o.exports = Yc();\n }, 9454: (o) => {\n o.exports = xv;\n }, 4505: (o) => {\n o.exports = Yv;\n }, 2734: (o) => {\n o.exports = Kc;\n }, 1441: (o) => {\n o.exports = s1;\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => fe });\n var o = s(3089), i = s(2297), u = s(1205), l = s(932), c = s(2734), d = s.n(c), m = s(1441), p = s.n(m);\n function h($) {\n return h = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(z) {\n return typeof z;\n } : function(z) {\n return z && typeof Symbol == \"function\" && z.constructor === Symbol && z !== Symbol.prototype ? \"symbol\" : typeof z;\n }, h($);\n }\n function y($, z) {\n var te = Object.keys($);\n if (Object.getOwnPropertySymbols) {\n var he = Object.getOwnPropertySymbols($);\n z && (he = he.filter(function(ye) {\n return Object.getOwnPropertyDescriptor($, ye).enumerable;\n })), te.push.apply(te, he);\n }\n return te;\n }\n function P($) {\n for (var z = 1; z < arguments.length; z++) {\n var te = arguments[z] != null ? arguments[z] : {};\n z % 2 ? y(Object(te), !0).forEach(function(he) {\n v($, he, te[he]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties($, Object.getOwnPropertyDescriptors(te)) : y(Object(te)).forEach(function(he) {\n Object.defineProperty($, he, Object.getOwnPropertyDescriptor(te, he));\n });\n }\n return $;\n }\n function v($, z, te) {\n return (z = function(he) {\n var ye = function(Be, je) {\n if (h(Be) !== \"object\" || Be === null)\n return Be;\n var Re = Be[Symbol.toPrimitive];\n if (Re !== void 0) {\n var Oe = Re.call(Be, je || \"default\");\n if (h(Oe) !== \"object\")\n return Oe;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (je === \"string\" ? String : Number)(Be);\n }(he, \"string\");\n return h(ye) === \"symbol\" ? ye : String(ye);\n }(z)) in $ ? Object.defineProperty($, z, { value: te, enumerable: !0, configurable: !0, writable: !0 }) : $[z] = te, $;\n }\n function g($) {\n return function(z) {\n if (Array.isArray(z))\n return b(z);\n }($) || function(z) {\n if (typeof Symbol < \"u\" && z[Symbol.iterator] != null || z[\"@@iterator\"] != null)\n return Array.from(z);\n }($) || function(z, te) {\n if (z) {\n if (typeof z == \"string\")\n return b(z, te);\n var he = Object.prototype.toString.call(z).slice(8, -1);\n if (he === \"Object\" && z.constructor && (he = z.constructor.name), he === \"Map\" || he === \"Set\")\n return Array.from(z);\n if (he === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(he))\n return b(z, te);\n }\n }($) || function() {\n throw new TypeError(`Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n }();\n }\n function b($, z) {\n (z == null || z > $.length) && (z = $.length);\n for (var te = 0, he = new Array(z); te < z; te++)\n he[te] = $[te];\n return he;\n }\n var x = \".focusable\";\n const _ = { name: \"NcActions\", components: { NcButton: o.default, DotsHorizontal: p(), NcPopover: i.default }, props: { open: { type: Boolean, default: !1 }, manualOpen: { type: Boolean, default: !1 }, forceMenu: { type: Boolean, default: !1 }, forceName: { type: Boolean, default: !1 }, menuName: { type: String, default: null }, primary: { type: Boolean, default: !1 }, type: { type: String, validator: function($) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf($) !== -1;\n }, default: null }, defaultIcon: { type: String, default: \"\" }, ariaLabel: { type: String, default: (0, l.t)(\"Actions\") }, ariaHidden: { type: Boolean, default: null }, placement: { type: String, default: \"bottom\" }, boundariesElement: { type: Element, default: function() {\n return document.querySelector(\"body\");\n } }, container: { type: [String, Object, Element, Boolean], default: \"body\" }, disabled: { type: Boolean, default: !1 }, inline: { type: Number, default: 0 } }, emits: [\"open\", \"update:open\", \"close\", \"focus\", \"blur\"], data: function() {\n return { opened: this.open, focusIndex: 0, randomId: \"menu-\".concat((0, u.Z)()) };\n }, computed: { triggerBtnType: function() {\n return this.type || (this.primary ? \"primary\" : this.menuName ? \"secondary\" : \"tertiary\");\n } }, watch: { open: function($) {\n $ !== this.opened && (this.opened = $);\n } }, methods: { isValidSingleAction: function($) {\n var z, te, he, ye = (z = $ == null || (te = $.componentOptions) === null || te === void 0 || (te = te.Ctor) === null || te === void 0 || (te = te.extendOptions) === null || te === void 0 ? void 0 : te.name) !== null && z !== void 0 ? z : $ == null || (he = $.componentOptions) === null || he === void 0 ? void 0 : he.tag;\n return [\"NcActionButton\", \"NcActionLink\", \"NcActionRouter\"].includes(ye);\n }, openMenu: function($) {\n this.opened || (this.opened = !0, this.$emit(\"update:open\", !0), this.$emit(\"open\"));\n }, closeMenu: function() {\n var $ = !(arguments.length > 0 && arguments[0] !== void 0) || arguments[0];\n this.opened && (this.opened = !1, this.$refs.popover.clearFocusTrap({ returnFocus: $ }), this.$emit(\"update:open\", !1), this.$emit(\"close\"), this.focusIndex = 0, this.$refs.menuButton.$el.focus());\n }, onOpen: function($) {\n var z = this;\n this.$nextTick(function() {\n z.focusFirstAction($);\n });\n }, onMouseFocusAction: function($) {\n if (document.activeElement !== $.target) {\n var z = $.target.closest(\"li\");\n if (z) {\n var te = z.querySelector(x);\n if (te) {\n var he = g(this.$refs.menu.querySelectorAll(x)).indexOf(te);\n he > -1 && (this.focusIndex = he, this.focusAction());\n }\n }\n }\n }, onKeydown: function($) {\n ($.keyCode === 38 || $.keyCode === 9 && $.shiftKey) && this.focusPreviousAction($), ($.keyCode === 40 || $.keyCode === 9 && !$.shiftKey) && this.focusNextAction($), $.keyCode === 33 && this.focusFirstAction($), $.keyCode === 34 && this.focusLastAction($), $.keyCode === 27 && (this.closeMenu(), $.preventDefault());\n }, removeCurrentActive: function() {\n var $ = this.$refs.menu.querySelector(\"li.active\");\n $ && $.classList.remove(\"active\");\n }, focusAction: function() {\n var $ = this.$refs.menu.querySelectorAll(x)[this.focusIndex];\n if ($) {\n this.removeCurrentActive();\n var z = $.closest(\"li.action\");\n $.focus(), z && z.classList.add(\"active\");\n }\n }, focusPreviousAction: function($) {\n this.opened && (this.focusIndex === 0 ? this.closeMenu() : (this.preventIfEvent($), this.focusIndex = this.focusIndex - 1), this.focusAction());\n }, focusNextAction: function($) {\n if (this.opened) {\n var z = this.$refs.menu.querySelectorAll(x).length - 1;\n this.focusIndex === z ? this.closeMenu() : (this.preventIfEvent($), this.focusIndex = this.focusIndex + 1), this.focusAction();\n }\n }, focusFirstAction: function($) {\n this.opened && (this.preventIfEvent($), this.focusIndex = 0, this.focusAction());\n }, focusLastAction: function($) {\n this.opened && (this.preventIfEvent($), this.focusIndex = this.$refs.menu.querySelectorAll(x).length - 1, this.focusAction());\n }, preventIfEvent: function($) {\n $ && ($.preventDefault(), $.stopPropagation());\n }, onFocus: function($) {\n this.$emit(\"focus\", $);\n }, onBlur: function($) {\n this.$emit(\"blur\", $);\n } }, render: function($) {\n var z = this, te = (this.$slots.default || []).filter(function(me) {\n var oe, Y;\n return (me == null || (oe = me.componentOptions) === null || oe === void 0 ? void 0 : oe.tag) || (me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.Ctor) === null || Y === void 0 || (Y = Y.extendOptions) === null || Y === void 0 ? void 0 : Y.name);\n }), he = te.every(function(me) {\n var oe, Y, de, re;\n return ((oe = me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.Ctor) === null || Y === void 0 || (Y = Y.extendOptions) === null || Y === void 0 ? void 0 : Y.name) !== null && oe !== void 0 ? oe : me == null || (de = me.componentOptions) === null || de === void 0 ? void 0 : de.tag) === \"NcActionLink\" && (me == null || (re = me.componentOptions) === null || re === void 0 || (re = re.propsData) === null || re === void 0 || (re = re.href) === null || re === void 0 ? void 0 : re.startsWith(window.location.origin));\n }), ye = te.filter(this.isValidSingleAction);\n if (this.forceMenu && ye.length > 0 && this.inline > 0 && (d().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"), ye = []), te.length !== 0) {\n var Be = function(me) {\n var oe, Y, de, re, xe, Se, V, q, X, ce, ne, M, I = (me == null || (oe = me.data) === null || oe === void 0 || (oe = oe.scopedSlots) === null || oe === void 0 || (oe = oe.icon()) === null || oe === void 0 ? void 0 : oe[0]) || $(\"span\", { class: [\"icon\", me == null || (Y = me.componentOptions) === null || Y === void 0 || (Y = Y.propsData) === null || Y === void 0 ? void 0 : Y.icon] }), Z = me == null || (de = me.componentOptions) === null || de === void 0 || (de = de.listeners) === null || de === void 0 ? void 0 : de.click, ie = me == null || (re = me.componentOptions) === null || re === void 0 || (re = re.children) === null || re === void 0 || (re = re[0]) === null || re === void 0 || (re = re.text) === null || re === void 0 || (xe = re.trim) === null || xe === void 0 ? void 0 : xe.call(re), se = (me == null || (Se = me.componentOptions) === null || Se === void 0 || (Se = Se.propsData) === null || Se === void 0 ? void 0 : Se.ariaLabel) || ie, Ce = z.forceName ? ie : \"\", Ae = me == null || (V = me.componentOptions) === null || V === void 0 || (V = V.propsData) === null || V === void 0 ? void 0 : V.title;\n return z.forceName || Ae || (Ae = ie), $(\"NcButton\", { class: [\"action-item action-item--single\", me == null || (q = me.data) === null || q === void 0 ? void 0 : q.staticClass, me == null || (X = me.data) === null || X === void 0 ? void 0 : X.class], attrs: { \"aria-label\": se, title: Ae }, ref: me == null || (ce = me.data) === null || ce === void 0 ? void 0 : ce.ref, props: P({ type: z.type || (Ce ? \"secondary\" : \"tertiary\"), disabled: z.disabled || (me == null || (ne = me.componentOptions) === null || ne === void 0 || (ne = ne.propsData) === null || ne === void 0 ? void 0 : ne.disabled), ariaHidden: z.ariaHidden }, me == null || (M = me.componentOptions) === null || M === void 0 ? void 0 : M.propsData), on: P({ focus: z.onFocus, blur: z.onBlur }, !!Z && { click: function(Le) {\n Z && Z(Le);\n } }) }, [$(\"template\", { slot: \"icon\" }, [I]), Ce]);\n }, je = function(me) {\n var oe, Y, de = ((oe = z.$slots.icon) === null || oe === void 0 ? void 0 : oe[0]) || (z.defaultIcon ? $(\"span\", { class: [\"icon\", z.defaultIcon] }) : $(\"DotsHorizontal\", { props: { size: 20 } }));\n return $(\"NcPopover\", { ref: \"popover\", props: { delay: 0, handleResize: !0, shown: z.opened, placement: z.placement, boundary: z.boundariesElement, container: z.container, popoverBaseClass: \"action-item__popper\", setReturnFocus: (Y = z.$refs.menuButton) === null || Y === void 0 ? void 0 : Y.$el }, attrs: P(P({ delay: 0, handleResize: !0, shown: z.opened, placement: z.placement, boundary: z.boundariesElement, container: z.container }, z.manualOpen && { triggers: [] }), {}, { popoverBaseClass: \"action-item__popper\" }), on: { show: z.openMenu, \"after-show\": z.onOpen, hide: z.closeMenu } }, [$(\"NcButton\", { class: \"action-item__menutoggle\", props: { type: z.triggerBtnType, disabled: z.disabled, ariaHidden: z.ariaHidden }, slot: \"trigger\", ref: \"menuButton\", attrs: { \"aria-haspopup\": he ? null : \"menu\", \"aria-label\": z.menuName ? null : z.ariaLabel, \"aria-controls\": z.opened ? z.randomId : null, \"aria-expanded\": z.opened.toString() }, on: { focus: z.onFocus, blur: z.onBlur } }, [$(\"template\", { slot: \"icon\" }, [de]), z.menuName]), $(\"div\", { class: { open: z.opened }, attrs: { tabindex: \"-1\" }, on: { keydown: z.onKeydown, mousemove: z.onMouseFocusAction }, ref: \"menu\" }, [$(\"ul\", { attrs: { id: z.randomId, tabindex: \"-1\", role: he ? null : \"menu\" } }, [me])])]);\n };\n if (te.length === 1 && ye.length === 1 && !this.forceMenu)\n return Be(ye[0]);\n if (ye.length > 0 && this.inline > 0) {\n var Re = ye.slice(0, this.inline), Oe = te.filter(function(me) {\n return !Re.includes(me);\n });\n return $(\"div\", { class: [\"action-items\", \"action-item--\".concat(this.triggerBtnType)] }, [].concat(g(Re.map(Be)), [Oe.length > 0 ? $(\"div\", { class: [\"action-item\", { \"action-item--open\": this.opened }] }, [je(Oe)]) : null]));\n }\n return $(\"div\", { class: [\"action-item action-item--default-popover\", \"action-item--\".concat(this.triggerBtnType), { \"action-item--open\": this.opened }] }, [je(te)]);\n }\n } };\n var w = s(3379), L = s.n(w), H = s(7795), C = s.n(H), E = s(569), T = s.n(E), f = s(3565), A = s.n(f), S = s(9216), D = s.n(S), R = s(4589), B = s.n(R), F = s(9546), W = {};\n W.styleTagTransform = B(), W.setAttributes = A(), W.insert = T().bind(null, \"head\"), W.domAPI = C(), W.insertStyleElement = D(), L()(F.Z, W), F.Z && F.Z.locals && F.Z.locals;\n var U = s(5155), j = {};\n j.styleTagTransform = B(), j.setAttributes = A(), j.insert = T().bind(null, \"head\"), j.domAPI = C(), j.insertStyleElement = D(), L()(U.Z, j), U.Z && U.Z.locals && U.Z.locals;\n var ee = s(1900), J = s(5727), le = s.n(J), ge = (0, ee.Z)(_, void 0, void 0, !1, null, \"55038265\", null);\n typeof le() == \"function\" && le()(ge);\n const fe = ge.exports;\n })(), r;\n })());\n})(Jc);\nvar o1 = Jc.exports;\nconst r1 = mn(o1);\nvar Tm = { exports: {} };\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 7294: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcButton/NcButton.vue\", \"webpack://./src/assets/variables.scss\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n`, `/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// \\`AppNavigation\\` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 2102: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n function o(S) {\n return o = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(D) {\n return typeof D;\n } : function(D) {\n return D && typeof Symbol == \"function\" && D.constructor === Symbol && D !== Symbol.prototype ? \"symbol\" : typeof D;\n }, o(S);\n }\n function i(S, D) {\n var R = Object.keys(S);\n if (Object.getOwnPropertySymbols) {\n var B = Object.getOwnPropertySymbols(S);\n D && (B = B.filter(function(F) {\n return Object.getOwnPropertyDescriptor(S, F).enumerable;\n })), R.push.apply(R, B);\n }\n return R;\n }\n function u(S) {\n for (var D = 1; D < arguments.length; D++) {\n var R = arguments[D] != null ? arguments[D] : {};\n D % 2 ? i(Object(R), !0).forEach(function(B) {\n l(S, B, R[B]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(S, Object.getOwnPropertyDescriptors(R)) : i(Object(R)).forEach(function(B) {\n Object.defineProperty(S, B, Object.getOwnPropertyDescriptor(R, B));\n });\n }\n return S;\n }\n function l(S, D, R) {\n return (D = function(B) {\n var F = function(W, U) {\n if (o(W) !== \"object\" || W === null)\n return W;\n var j = W[Symbol.toPrimitive];\n if (j !== void 0) {\n var ee = j.call(W, U || \"default\");\n if (o(ee) !== \"object\")\n return ee;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (U === \"string\" ? String : Number)(W);\n }(B, \"string\");\n return o(F) === \"symbol\" ? F : String(F);\n }(D)) in S ? Object.defineProperty(S, D, { value: R, enumerable: !0, configurable: !0, writable: !0 }) : S[D] = R, S;\n }\n s.r(r), s.d(r, { default: () => A });\n const c = { name: \"NcButton\", props: { alignment: { type: String, default: \"center\", validator: function(S) {\n return [\"start\", \"start-reverse\", \"center\", \"center-reverse\", \"end\", \"end-reverse\"].includes(S);\n } }, disabled: { type: Boolean, default: !1 }, type: { type: String, validator: function(S) {\n return [\"primary\", \"secondary\", \"tertiary\", \"tertiary-no-background\", \"tertiary-on-primary\", \"error\", \"warning\", \"success\"].indexOf(S) !== -1;\n }, default: \"secondary\" }, nativeType: { type: String, validator: function(S) {\n return [\"submit\", \"reset\", \"button\"].indexOf(S) !== -1;\n }, default: \"button\" }, wide: { type: Boolean, default: !1 }, ariaLabel: { type: String, default: null }, href: { type: String, default: null }, download: { type: String, default: null }, to: { type: [String, Object], default: null }, exact: { type: Boolean, default: !1 }, ariaHidden: { type: Boolean, default: null }, pressed: { type: Boolean, default: null } }, emits: [\"update:pressed\", \"click\"], computed: { realType: function() {\n return this.pressed ? \"primary\" : this.pressed === !1 && this.type === \"primary\" ? \"secondary\" : this.type;\n }, flexAlignment: function() {\n return this.alignment.split(\"-\")[0];\n }, isReverseAligned: function() {\n return this.alignment.includes(\"-\");\n } }, render: function(S) {\n var D, R, B, F = this, W = (D = this.$slots.default) === null || D === void 0 || (D = D[0]) === null || D === void 0 || (D = D.text) === null || D === void 0 || (R = D.trim) === null || R === void 0 ? void 0 : R.call(D), U = !!W, j = (B = this.$slots) === null || B === void 0 ? void 0 : B.icon;\n W || this.ariaLabel || console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\", { text: W, ariaLabel: this.ariaLabel }, this);\n var ee = function() {\n var J, le = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, ge = le.navigate, fe = le.isActive, $ = le.isExactActive;\n return S(F.to || !F.href ? \"button\" : \"a\", { class: [\"button-vue\", (J = { \"button-vue--icon-only\": j && !U, \"button-vue--text-only\": U && !j, \"button-vue--icon-and-text\": j && U }, l(J, \"button-vue--vue-\".concat(F.realType), F.realType), l(J, \"button-vue--wide\", F.wide), l(J, \"button-vue--\".concat(F.flexAlignment), F.flexAlignment !== \"center\"), l(J, \"button-vue--reverse\", F.isReverseAligned), l(J, \"active\", fe), l(J, \"router-link-exact-active\", $), J)], attrs: u({ \"aria-label\": F.ariaLabel, \"aria-pressed\": F.pressed, disabled: F.disabled, type: F.href ? null : F.nativeType, role: F.href ? \"button\" : null, href: !F.to && F.href ? F.href : null, target: !F.to && F.href ? \"_self\" : null, rel: !F.to && F.href ? \"nofollow noreferrer noopener\" : null, download: !F.to && F.href && F.download ? F.download : null }, F.$attrs), on: u(u({}, F.$listeners), {}, { click: function(z) {\n typeof F.pressed == \"boolean\" && F.$emit(\"update:pressed\", !F.pressed), F.$emit(\"click\", z), ge?.(z);\n } }) }, [S(\"span\", { class: \"button-vue__wrapper\" }, [j ? S(\"span\", { class: \"button-vue__icon\", attrs: { \"aria-hidden\": F.ariaHidden } }, [F.$slots.icon]) : null, U ? S(\"span\", { class: \"button-vue__text\" }, [W]) : null])]);\n };\n return this.to ? S(\"router-link\", { props: { custom: !0, to: this.to, exact: this.exact }, scopedSlots: { default: ee } }) : ee();\n } };\n var d = s(3379), m = s.n(d), p = s(7795), h = s.n(p), y = s(569), P = s.n(y), v = s(3565), g = s.n(v), b = s(9216), x = s.n(b), _ = s(4589), w = s.n(_), L = s(7294), H = {};\n H.styleTagTransform = w(), H.setAttributes = g(), H.insert = P().bind(null, \"head\"), H.domAPI = h(), H.insertStyleElement = x(), m()(L.Z, H), L.Z && L.Z.locals && L.Z.locals;\n var C = s(1900), E = s(2102), T = s.n(E), f = (0, C.Z)(c, void 0, void 0, !1, null, \"7aad13a0\", null);\n typeof T() == \"function\" && T()(f);\n const A = f.exports;\n })(), r;\n })());\n})(Tm);\nvar i1 = Tm.exports;\nconst u1 = mn(i1);\nvar Fm = { exports: {} }, Nn = {}, On = { exports: {} }, ho = {}, ul = {}, ll;\nfunction qr() {\n return ll || (ll = 1, function(e) {\n const t = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", a = t + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", n = \"[\" + t + \"][\" + a + \"]*\", s = new RegExp(\"^\" + n + \"$\"), r = function(i, u) {\n const l = [];\n let c = u.exec(i);\n for (; c; ) {\n const d = [];\n d.startIndex = u.lastIndex - c[0].length;\n const m = c.length;\n for (let p = 0; p < m; p++)\n d.push(c[p]);\n l.push(d), c = u.exec(i);\n }\n return l;\n }, o = function(i) {\n const u = s.exec(i);\n return !(u === null || typeof u > \"u\");\n };\n e.isExist = function(i) {\n return typeof i < \"u\";\n }, e.isEmptyObject = function(i) {\n return Object.keys(i).length === 0;\n }, e.merge = function(i, u, l) {\n if (u) {\n const c = Object.keys(u), d = c.length;\n for (let m = 0; m < d; m++)\n l === \"strict\" ? i[c[m]] = [u[c[m]]] : i[c[m]] = u[c[m]];\n }\n }, e.getValue = function(i) {\n return e.isExist(i) ? i : \"\";\n }, e.isName = o, e.getAllMatches = r, e.nameRegexp = n;\n }(ul)), ul;\n}\nvar cl;\nfunction Dm() {\n if (cl)\n return ho;\n cl = 1;\n const e = qr(), t = { allowBooleanAttributes: !1, unpairedTags: [] };\n ho.validate = function(v, g) {\n g = Object.assign({}, t, g);\n const b = [];\n let x = !1, _ = !1;\n v[0] === \"\\uFEFF\" && (v = v.substr(1));\n for (let w = 0; w < v.length; w++)\n if (v[w] === \"<\" && v[w + 1] === \"?\") {\n if (w += 2, w = n(v, w), w.err)\n return w;\n } else if (v[w] === \"<\") {\n let L = w;\n if (w++, v[w] === \"!\") {\n w = s(v, w);\n continue;\n } else {\n let H = !1;\n v[w] === \"/\" && (H = !0, w++);\n let C = \"\";\n for (; w < v.length && v[w] !== \">\" && v[w] !== \" \" && v[w] !== \"\t\" && v[w] !== `\n` && v[w] !== \"\\r\"; w++)\n C += v[w];\n if (C = C.trim(), C[C.length - 1] === \"/\" && (C = C.substring(0, C.length - 1), w--), !h(C)) {\n let f;\n return C.trim().length === 0 ? f = \"Invalid space after '<'.\" : f = \"Tag '\" + C + \"' is an invalid name.\", m(\"InvalidTag\", f, y(v, w));\n }\n const E = i(v, w);\n if (E === !1)\n return m(\"InvalidAttr\", \"Attributes for '\" + C + \"' have open quote.\", y(v, w));\n let T = E.value;\n if (w = E.index, T[T.length - 1] === \"/\") {\n const f = w - T.length;\n T = T.substring(0, T.length - 1);\n const A = l(T, g);\n if (A === !0)\n x = !0;\n else\n return m(A.err.code, A.err.msg, y(v, f + A.err.line));\n } else if (H)\n if (E.tagClosed) {\n if (T.trim().length > 0)\n return m(\"InvalidTag\", \"Closing tag '\" + C + \"' can't have attributes or invalid starting.\", y(v, L));\n {\n const f = b.pop();\n if (C !== f.tagName) {\n let A = y(v, f.tagStartPos);\n return m(\"InvalidTag\", \"Expected closing tag '\" + f.tagName + \"' (opened in line \" + A.line + \", col \" + A.col + \") instead of closing tag '\" + C + \"'.\", y(v, L));\n }\n b.length == 0 && (_ = !0);\n }\n } else\n return m(\"InvalidTag\", \"Closing tag '\" + C + \"' doesn't have proper closing.\", y(v, w));\n else {\n const f = l(T, g);\n if (f !== !0)\n return m(f.err.code, f.err.msg, y(v, w - T.length + f.err.line));\n if (_ === !0)\n return m(\"InvalidXml\", \"Multiple possible root nodes found.\", y(v, w));\n g.unpairedTags.indexOf(C) !== -1 || b.push({ tagName: C, tagStartPos: L }), x = !0;\n }\n for (w++; w < v.length; w++)\n if (v[w] === \"<\")\n if (v[w + 1] === \"!\") {\n w++, w = s(v, w);\n continue;\n } else if (v[w + 1] === \"?\") {\n if (w = n(v, ++w), w.err)\n return w;\n } else\n break;\n else if (v[w] === \"&\") {\n const f = d(v, w);\n if (f == -1)\n return m(\"InvalidChar\", \"char '&' is not expected.\", y(v, w));\n w = f;\n } else if (_ === !0 && !a(v[w]))\n return m(\"InvalidXml\", \"Extra text at the end\", y(v, w));\n v[w] === \"<\" && w--;\n }\n } else {\n if (a(v[w]))\n continue;\n return m(\"InvalidChar\", \"char '\" + v[w] + \"' is not expected.\", y(v, w));\n }\n if (x) {\n if (b.length == 1)\n return m(\"InvalidTag\", \"Unclosed tag '\" + b[0].tagName + \"'.\", y(v, b[0].tagStartPos));\n if (b.length > 0)\n return m(\"InvalidXml\", \"Invalid '\" + JSON.stringify(b.map((w) => w.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return m(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n };\n function a(v) {\n return v === \" \" || v === \"\t\" || v === `\n` || v === \"\\r\";\n }\n function n(v, g) {\n const b = g;\n for (; g < v.length; g++)\n if (v[g] == \"?\" || v[g] == \" \") {\n const x = v.substr(b, g - b);\n if (g > 5 && x === \"xml\")\n return m(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", y(v, g));\n if (v[g] == \"?\" && v[g + 1] == \">\") {\n g++;\n break;\n } else\n continue;\n }\n return g;\n }\n function s(v, g) {\n if (v.length > g + 5 && v[g + 1] === \"-\" && v[g + 2] === \"-\") {\n for (g += 3; g < v.length; g++)\n if (v[g] === \"-\" && v[g + 1] === \"-\" && v[g + 2] === \">\") {\n g += 2;\n break;\n }\n } else if (v.length > g + 8 && v[g + 1] === \"D\" && v[g + 2] === \"O\" && v[g + 3] === \"C\" && v[g + 4] === \"T\" && v[g + 5] === \"Y\" && v[g + 6] === \"P\" && v[g + 7] === \"E\") {\n let b = 1;\n for (g += 8; g < v.length; g++)\n if (v[g] === \"<\")\n b++;\n else if (v[g] === \">\" && (b--, b === 0))\n break;\n } else if (v.length > g + 9 && v[g + 1] === \"[\" && v[g + 2] === \"C\" && v[g + 3] === \"D\" && v[g + 4] === \"A\" && v[g + 5] === \"T\" && v[g + 6] === \"A\" && v[g + 7] === \"[\") {\n for (g += 8; g < v.length; g++)\n if (v[g] === \"]\" && v[g + 1] === \"]\" && v[g + 2] === \">\") {\n g += 2;\n break;\n }\n }\n return g;\n }\n const r = '\"', o = \"'\";\n function i(v, g) {\n let b = \"\", x = \"\", _ = !1;\n for (; g < v.length; g++) {\n if (v[g] === r || v[g] === o)\n x === \"\" ? x = v[g] : x !== v[g] || (x = \"\");\n else if (v[g] === \">\" && x === \"\") {\n _ = !0;\n break;\n }\n b += v[g];\n }\n return x !== \"\" ? !1 : { value: b, index: g, tagClosed: _ };\n }\n const u = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\n function l(v, g) {\n const b = e.getAllMatches(v, u), x = {};\n for (let _ = 0; _ < b.length; _++) {\n if (b[_][1].length === 0)\n return m(\"InvalidAttr\", \"Attribute '\" + b[_][2] + \"' has no space in starting.\", P(b[_]));\n if (b[_][3] !== void 0 && b[_][4] === void 0)\n return m(\"InvalidAttr\", \"Attribute '\" + b[_][2] + \"' is without value.\", P(b[_]));\n if (b[_][3] === void 0 && !g.allowBooleanAttributes)\n return m(\"InvalidAttr\", \"boolean attribute '\" + b[_][2] + \"' is not allowed.\", P(b[_]));\n const w = b[_][2];\n if (!p(w))\n return m(\"InvalidAttr\", \"Attribute '\" + w + \"' is an invalid name.\", P(b[_]));\n if (!x.hasOwnProperty(w))\n x[w] = 1;\n else\n return m(\"InvalidAttr\", \"Attribute '\" + w + \"' is repeated.\", P(b[_]));\n }\n return !0;\n }\n function c(v, g) {\n let b = /\\d/;\n for (v[g] === \"x\" && (g++, b = /[\\da-fA-F]/); g < v.length; g++) {\n if (v[g] === \";\")\n return g;\n if (!v[g].match(b))\n break;\n }\n return -1;\n }\n function d(v, g) {\n if (g++, v[g] === \";\")\n return -1;\n if (v[g] === \"#\")\n return g++, c(v, g);\n let b = 0;\n for (; g < v.length; g++, b++)\n if (!(v[g].match(/\\w/) && b < 20)) {\n if (v[g] === \";\")\n break;\n return -1;\n }\n return g;\n }\n function m(v, g, b) {\n return { err: { code: v, msg: g, line: b.line || b, col: b.col } };\n }\n function p(v) {\n return e.isName(v);\n }\n function h(v) {\n return e.isName(v);\n }\n function y(v, g) {\n const b = v.substring(0, g).split(/\\r?\\n/);\n return { line: b.length, col: b[b.length - 1].length + 1 };\n }\n function P(v) {\n return v.startIndex + v[1].length;\n }\n return ho;\n}\nvar jn = {}, ml;\nfunction l1() {\n if (ml)\n return jn;\n ml = 1;\n const e = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(a, n) {\n return n;\n }, attributeValueProcessor: function(a, n) {\n return n;\n }, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(a, n, s) {\n return a;\n } }, t = function(a) {\n return Object.assign({}, e, a);\n };\n return jn.buildOptions = t, jn.defaultOptions = e, jn;\n}\nvar fo, dl;\nfunction c1() {\n if (dl)\n return fo;\n dl = 1;\n class e {\n constructor(a) {\n this.tagname = a, this.child = [], this[\":@\"] = {};\n }\n add(a, n) {\n a === \"__proto__\" && (a = \"#__proto__\"), this.child.push({ [a]: n });\n }\n addChild(a) {\n a.tagname === \"__proto__\" && (a.tagname = \"#__proto__\"), a[\":@\"] && Object.keys(a[\":@\"]).length > 0 ? this.child.push({ [a.tagname]: a.child, \":@\": a[\":@\"] }) : this.child.push({ [a.tagname]: a.child });\n }\n }\n return fo = e, fo;\n}\nvar vo, pl;\nfunction m1() {\n if (pl)\n return vo;\n pl = 1;\n const e = qr();\n function t(l, c) {\n const d = {};\n if (l[c + 3] === \"O\" && l[c + 4] === \"C\" && l[c + 5] === \"T\" && l[c + 6] === \"Y\" && l[c + 7] === \"P\" && l[c + 8] === \"E\") {\n c = c + 9;\n let m = 1, p = !1, h = !1, y = \"\";\n for (; c < l.length; c++)\n if (l[c] === \"<\" && !h) {\n if (p && s(l, c))\n c += 7, [entityName, val, c] = a(l, c + 1), val.indexOf(\"&\") === -1 && (d[u(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (p && r(l, c))\n c += 8;\n else if (p && o(l, c))\n c += 8;\n else if (p && i(l, c))\n c += 9;\n else if (n)\n h = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n m++, y = \"\";\n } else if (l[c] === \">\") {\n if (h ? l[c - 1] === \"-\" && l[c - 2] === \"-\" && (h = !1, m--) : m--, m === 0)\n break;\n } else\n l[c] === \"[\" ? p = !0 : y += l[c];\n if (m !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: d, i: c };\n }\n function a(l, c) {\n let d = \"\";\n for (; c < l.length && l[c] !== \"'\" && l[c] !== '\"'; c++)\n d += l[c];\n if (d = d.trim(), d.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const m = l[c++];\n let p = \"\";\n for (; c < l.length && l[c] !== m; c++)\n p += l[c];\n return [d, p, c];\n }\n function n(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"-\" && l[c + 3] === \"-\";\n }\n function s(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"E\" && l[c + 3] === \"N\" && l[c + 4] === \"T\" && l[c + 5] === \"I\" && l[c + 6] === \"T\" && l[c + 7] === \"Y\";\n }\n function r(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"E\" && l[c + 3] === \"L\" && l[c + 4] === \"E\" && l[c + 5] === \"M\" && l[c + 6] === \"E\" && l[c + 7] === \"N\" && l[c + 8] === \"T\";\n }\n function o(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"A\" && l[c + 3] === \"T\" && l[c + 4] === \"T\" && l[c + 5] === \"L\" && l[c + 6] === \"I\" && l[c + 7] === \"S\" && l[c + 8] === \"T\";\n }\n function i(l, c) {\n return l[c + 1] === \"!\" && l[c + 2] === \"N\" && l[c + 3] === \"O\" && l[c + 4] === \"T\" && l[c + 5] === \"A\" && l[c + 6] === \"T\" && l[c + 7] === \"I\" && l[c + 8] === \"O\" && l[c + 9] === \"N\";\n }\n function u(l) {\n if (e.isName(l))\n return l;\n throw new Error(`Invalid entity name ${l}`);\n }\n return vo = t, vo;\n}\nvar Co, gl;\nfunction d1() {\n if (gl)\n return Co;\n gl = 1;\n const e = /^[-+]?0x[a-fA-F0-9]+$/, t = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n !Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\n const a = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\n function n(r, o = {}) {\n if (o = Object.assign({}, a, o), !r || typeof r != \"string\")\n return r;\n let i = r.trim();\n if (o.skipLike !== void 0 && o.skipLike.test(i))\n return r;\n if (o.hex && e.test(i))\n return Number.parseInt(i, 16);\n {\n const u = t.exec(i);\n if (u) {\n const l = u[1], c = u[2];\n let d = s(u[3]);\n const m = u[4] || u[6];\n if (!o.leadingZeros && c.length > 0 && l && i[2] !== \".\" || !o.leadingZeros && c.length > 0 && !l && i[1] !== \".\")\n return r;\n {\n const p = Number(i), h = \"\" + p;\n return h.search(/[eE]/) !== -1 || m ? o.eNotation ? p : r : i.indexOf(\".\") !== -1 ? h === \"0\" && d === \"\" || h === d || l && h === \"-\" + d ? p : r : c ? d === h || l + d === h ? p : r : i === h || i === l + h ? p : r;\n }\n } else\n return r;\n }\n }\n function s(r) {\n return r && r.indexOf(\".\") !== -1 && (r = r.replace(/0+$/, \"\"), r === \".\" ? r = \"0\" : r[0] === \".\" ? r = \"0\" + r : r[r.length - 1] === \".\" && (r = r.substr(0, r.length - 1))), r;\n }\n return Co = n, Co;\n}\nvar yo, hl;\nfunction p1() {\n if (hl)\n return yo;\n hl = 1;\n const e = qr(), t = c1(), a = m1(), n = d1();\n \"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, e.nameRegexp);\n class s {\n constructor(_) {\n this.options = _, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = r, this.parseXml = c, this.parseTextData = o, this.resolveNameSpace = i, this.buildAttributesMap = l, this.isItStopNode = h, this.replaceEntitiesValue = m, this.readStopNodeData = g, this.saveTextToParentTag = p, this.addChild = d;\n }\n }\n function r(x) {\n const _ = Object.keys(x);\n for (let w = 0; w < _.length; w++) {\n const L = _[w];\n this.lastEntities[L] = { regex: new RegExp(\"&\" + L + \";\", \"g\"), val: x[L] };\n }\n }\n function o(x, _, w, L, H, C, E) {\n if (x !== void 0 && (this.options.trimValues && !L && (x = x.trim()), x.length > 0)) {\n E || (x = this.replaceEntitiesValue(x));\n const T = this.options.tagValueProcessor(_, x, w, H, C);\n return T == null ? x : typeof T != typeof x || T !== x ? T : this.options.trimValues ? b(x, this.options.parseTagValue, this.options.numberParseOptions) : x.trim() === x ? b(x, this.options.parseTagValue, this.options.numberParseOptions) : x;\n }\n }\n function i(x) {\n if (this.options.removeNSPrefix) {\n const _ = x.split(\":\"), w = x.charAt(0) === \"/\" ? \"/\" : \"\";\n if (_[0] === \"xmlns\")\n return \"\";\n _.length === 2 && (x = w + _[1]);\n }\n return x;\n }\n const u = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\n function l(x, _, w) {\n if (!this.options.ignoreAttributes && typeof x == \"string\") {\n const L = e.getAllMatches(x, u), H = L.length, C = {};\n for (let E = 0; E < H; E++) {\n const T = this.resolveNameSpace(L[E][1]);\n let f = L[E][4], A = this.options.attributeNamePrefix + T;\n if (T.length)\n if (this.options.transformAttributeName && (A = this.options.transformAttributeName(A)), A === \"__proto__\" && (A = \"#__proto__\"), f !== void 0) {\n this.options.trimValues && (f = f.trim()), f = this.replaceEntitiesValue(f);\n const S = this.options.attributeValueProcessor(T, f, _);\n S == null ? C[A] = f : typeof S != typeof f || S !== f ? C[A] = S : C[A] = b(f, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (C[A] = !0);\n }\n if (!Object.keys(C).length)\n return;\n if (this.options.attributesGroupName) {\n const E = {};\n return E[this.options.attributesGroupName] = C, E;\n }\n return C;\n }\n }\n const c = function(x) {\n x = x.replace(/\\r\\n?/g, `\n`);\n const _ = new t(\"!xml\");\n let w = _, L = \"\", H = \"\";\n for (let C = 0; C < x.length; C++)\n if (x[C] === \"<\")\n if (x[C + 1] === \"/\") {\n const E = P(x, \">\", C, \"Closing Tag is not closed.\");\n let T = x.substring(C + 2, E).trim();\n if (this.options.removeNSPrefix) {\n const S = T.indexOf(\":\");\n S !== -1 && (T = T.substr(S + 1));\n }\n this.options.transformTagName && (T = this.options.transformTagName(T)), w && (L = this.saveTextToParentTag(L, w, H));\n const f = H.substring(H.lastIndexOf(\".\") + 1);\n if (T && this.options.unpairedTags.indexOf(T) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let A = 0;\n f && this.options.unpairedTags.indexOf(f) !== -1 ? (A = H.lastIndexOf(\".\", H.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : A = H.lastIndexOf(\".\"), H = H.substring(0, A), w = this.tagsNodeStack.pop(), L = \"\", C = E;\n } else if (x[C + 1] === \"?\") {\n let E = v(x, C, !1, \"?>\");\n if (!E)\n throw new Error(\"Pi Tag is not closed.\");\n if (L = this.saveTextToParentTag(L, w, H), !(this.options.ignoreDeclaration && E.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const T = new t(E.tagName);\n T.add(this.options.textNodeName, \"\"), E.tagName !== E.tagExp && E.attrExpPresent && (T[\":@\"] = this.buildAttributesMap(E.tagExp, H, E.tagName)), this.addChild(w, T, H);\n }\n C = E.closeIndex + 1;\n } else if (x.substr(C + 1, 3) === \"!--\") {\n const E = P(x, \"-->\", C + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const T = x.substring(C + 4, E - 2);\n L = this.saveTextToParentTag(L, w, H), w.add(this.options.commentPropName, [{ [this.options.textNodeName]: T }]);\n }\n C = E;\n } else if (x.substr(C + 1, 2) === \"!D\") {\n const E = a(x, C);\n this.docTypeEntities = E.entities, C = E.i;\n } else if (x.substr(C + 1, 2) === \"![\") {\n const E = P(x, \"]]>\", C, \"CDATA is not closed.\") - 2, T = x.substring(C + 9, E);\n if (L = this.saveTextToParentTag(L, w, H), this.options.cdataPropName)\n w.add(this.options.cdataPropName, [{ [this.options.textNodeName]: T }]);\n else {\n let f = this.parseTextData(T, w.tagname, H, !0, !1, !0);\n f == null && (f = \"\"), w.add(this.options.textNodeName, f);\n }\n C = E + 2;\n } else {\n let E = v(x, C, this.options.removeNSPrefix), T = E.tagName, f = E.tagExp, A = E.attrExpPresent, S = E.closeIndex;\n this.options.transformTagName && (T = this.options.transformTagName(T)), w && L && w.tagname !== \"!xml\" && (L = this.saveTextToParentTag(L, w, H, !1));\n const D = w;\n if (D && this.options.unpairedTags.indexOf(D.tagname) !== -1 && (w = this.tagsNodeStack.pop(), H = H.substring(0, H.lastIndexOf(\".\"))), T !== _.tagname && (H += H ? \".\" + T : T), this.isItStopNode(this.options.stopNodes, H, T)) {\n let R = \"\";\n if (f.length > 0 && f.lastIndexOf(\"/\") === f.length - 1)\n C = E.closeIndex;\n else if (this.options.unpairedTags.indexOf(T) !== -1)\n C = E.closeIndex;\n else {\n const F = this.readStopNodeData(x, T, S + 1);\n if (!F)\n throw new Error(`Unexpected end of ${T}`);\n C = F.i, R = F.tagContent;\n }\n const B = new t(T);\n T !== f && A && (B[\":@\"] = this.buildAttributesMap(f, H, T)), R && (R = this.parseTextData(R, T, H, !0, A, !0, !0)), H = H.substr(0, H.lastIndexOf(\".\")), B.add(this.options.textNodeName, R), this.addChild(w, B, H);\n } else {\n if (f.length > 0 && f.lastIndexOf(\"/\") === f.length - 1) {\n T[T.length - 1] === \"/\" ? (T = T.substr(0, T.length - 1), f = T) : f = f.substr(0, f.length - 1), this.options.transformTagName && (T = this.options.transformTagName(T));\n const R = new t(T);\n T !== f && A && (R[\":@\"] = this.buildAttributesMap(f, H, T)), this.addChild(w, R, H), H = H.substr(0, H.lastIndexOf(\".\"));\n } else {\n const R = new t(T);\n this.tagsNodeStack.push(w), T !== f && A && (R[\":@\"] = this.buildAttributesMap(f, H, T)), this.addChild(w, R, H), w = R;\n }\n L = \"\", C = S;\n }\n }\n else\n L += x[C];\n return _.child;\n };\n function d(x, _, w) {\n const L = this.options.updateTag(_.tagname, w, _[\":@\"]);\n L === !1 || (typeof L == \"string\" && (_.tagname = L), x.addChild(_));\n }\n const m = function(x) {\n if (this.options.processEntities) {\n for (let _ in this.docTypeEntities) {\n const w = this.docTypeEntities[_];\n x = x.replace(w.regx, w.val);\n }\n for (let _ in this.lastEntities) {\n const w = this.lastEntities[_];\n x = x.replace(w.regex, w.val);\n }\n if (this.options.htmlEntities)\n for (let _ in this.htmlEntities) {\n const w = this.htmlEntities[_];\n x = x.replace(w.regex, w.val);\n }\n x = x.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return x;\n };\n function p(x, _, w, L) {\n return x && (L === void 0 && (L = Object.keys(_.child).length === 0), x = this.parseTextData(x, _.tagname, w, !1, _[\":@\"] ? Object.keys(_[\":@\"]).length !== 0 : !1, L), x !== void 0 && x !== \"\" && _.add(this.options.textNodeName, x), x = \"\"), x;\n }\n function h(x, _, w) {\n const L = \"*.\" + w;\n for (const H in x) {\n const C = x[H];\n if (L === C || _ === C)\n return !0;\n }\n return !1;\n }\n function y(x, _, w = \">\") {\n let L, H = \"\";\n for (let C = _; C < x.length; C++) {\n let E = x[C];\n if (L)\n E === L && (L = \"\");\n else if (E === '\"' || E === \"'\")\n L = E;\n else if (E === w[0])\n if (w[1]) {\n if (x[C + 1] === w[1])\n return { data: H, index: C };\n } else\n return { data: H, index: C };\n else\n E === \"\t\" && (E = \" \");\n H += E;\n }\n }\n function P(x, _, w, L) {\n const H = x.indexOf(_, w);\n if (H === -1)\n throw new Error(L);\n return H + _.length - 1;\n }\n function v(x, _, w, L = \">\") {\n const H = y(x, _ + 1, L);\n if (!H)\n return;\n let C = H.data;\n const E = H.index, T = C.search(/\\s/);\n let f = C, A = !0;\n if (T !== -1 && (f = C.substr(0, T).replace(/\\s\\s*$/, \"\"), C = C.substr(T + 1)), w) {\n const S = f.indexOf(\":\");\n S !== -1 && (f = f.substr(S + 1), A = f !== H.data.substr(S + 1));\n }\n return { tagName: f, tagExp: C, closeIndex: E, attrExpPresent: A };\n }\n function g(x, _, w) {\n const L = w;\n let H = 1;\n for (; w < x.length; w++)\n if (x[w] === \"<\")\n if (x[w + 1] === \"/\") {\n const C = P(x, \">\", w, `${_} is not closed`);\n if (x.substring(w + 2, C).trim() === _ && (H--, H === 0))\n return { tagContent: x.substring(L, w), i: C };\n w = C;\n } else if (x[w + 1] === \"?\")\n w = P(x, \"?>\", w + 1, \"StopNode is not closed.\");\n else if (x.substr(w + 1, 3) === \"!--\")\n w = P(x, \"-->\", w + 3, \"StopNode is not closed.\");\n else if (x.substr(w + 1, 2) === \"![\")\n w = P(x, \"]]>\", w, \"StopNode is not closed.\") - 2;\n else {\n const C = v(x, w, \">\");\n C && ((C && C.tagName) === _ && C.tagExp[C.tagExp.length - 1] !== \"/\" && H++, w = C.closeIndex);\n }\n }\n function b(x, _, w) {\n if (_ && typeof x == \"string\") {\n const L = x.trim();\n return L === \"true\" ? !0 : L === \"false\" ? !1 : n(x, w);\n } else\n return e.isExist(x) ? x : \"\";\n }\n return yo = s, yo;\n}\nvar Ao = {}, fl;\nfunction g1() {\n if (fl)\n return Ao;\n fl = 1;\n function e(r, o) {\n return t(r, o);\n }\n function t(r, o, i) {\n let u;\n const l = {};\n for (let c = 0; c < r.length; c++) {\n const d = r[c], m = a(d);\n let p = \"\";\n if (i === void 0 ? p = m : p = i + \".\" + m, m === o.textNodeName)\n u === void 0 ? u = d[m] : u += \"\" + d[m];\n else {\n if (m === void 0)\n continue;\n if (d[m]) {\n let h = t(d[m], o, p);\n const y = s(h, o);\n d[\":@\"] ? n(h, d[\":@\"], p, o) : Object.keys(h).length === 1 && h[o.textNodeName] !== void 0 && !o.alwaysCreateTextNode ? h = h[o.textNodeName] : Object.keys(h).length === 0 && (o.alwaysCreateTextNode ? h[o.textNodeName] = \"\" : h = \"\"), l[m] !== void 0 && l.hasOwnProperty(m) ? (Array.isArray(l[m]) || (l[m] = [l[m]]), l[m].push(h)) : o.isArray(m, p, y) ? l[m] = [h] : l[m] = h;\n }\n }\n }\n return typeof u == \"string\" ? u.length > 0 && (l[o.textNodeName] = u) : u !== void 0 && (l[o.textNodeName] = u), l;\n }\n function a(r) {\n const o = Object.keys(r);\n for (let i = 0; i < o.length; i++) {\n const u = o[i];\n if (u !== \":@\")\n return u;\n }\n }\n function n(r, o, i, u) {\n if (o) {\n const l = Object.keys(o), c = l.length;\n for (let d = 0; d < c; d++) {\n const m = l[d];\n u.isArray(m, i + \".\" + m, !0, !0) ? r[m] = [o[m]] : r[m] = o[m];\n }\n }\n }\n function s(r, o) {\n const { textNodeName: i } = o, u = Object.keys(r).length;\n return !!(u === 0 || u === 1 && (r[i] || typeof r[i] == \"boolean\" || r[i] === 0));\n }\n return Ao.prettify = e, Ao;\n}\nvar wo, vl;\nfunction h1() {\n if (vl)\n return wo;\n vl = 1;\n const { buildOptions: e } = l1(), t = p1(), { prettify: a } = g1(), n = Dm();\n class s {\n constructor(o) {\n this.externalEntities = {}, this.options = e(o);\n }\n parse(o, i) {\n if (typeof o != \"string\")\n if (o.toString)\n o = o.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (i) {\n i === !0 && (i = {});\n const c = n.validate(o, i);\n if (c !== !0)\n throw Error(`${c.err.msg}:${c.err.line}:${c.err.col}`);\n }\n const u = new t(this.options);\n u.addExternalEntities(this.externalEntities);\n const l = u.parseXml(o);\n return this.options.preserveOrder || l === void 0 ? l : a(l, this.options);\n }\n addEntity(o, i) {\n if (i.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (o.indexOf(\"&\") !== -1 || o.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (i === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[o] = i;\n }\n }\n return wo = s, wo;\n}\nvar bo, Cl;\nfunction f1() {\n if (Cl)\n return bo;\n Cl = 1;\n const e = `\n`;\n function t(i, u) {\n let l = \"\";\n return u.format && u.indentBy.length > 0 && (l = e), a(i, u, \"\", l);\n }\n function a(i, u, l, c) {\n let d = \"\", m = !1;\n for (let p = 0; p < i.length; p++) {\n const h = i[p], y = n(h);\n let P = \"\";\n if (l.length === 0 ? P = y : P = `${l}.${y}`, y === u.textNodeName) {\n let _ = h[y];\n r(P, u) || (_ = u.tagValueProcessor(y, _), _ = o(_, u)), m && (d += c), d += _, m = !1;\n continue;\n } else if (y === u.cdataPropName) {\n m && (d += c), d += ``, m = !1;\n continue;\n } else if (y === u.commentPropName) {\n d += c + ``, m = !0;\n continue;\n } else if (y[0] === \"?\") {\n const _ = s(h[\":@\"], u), w = y === \"?xml\" ? \"\" : c;\n let L = h[y][0][u.textNodeName];\n L = L.length !== 0 ? \" \" + L : \"\", d += w + `<${y}${L}${_}?>`, m = !0;\n continue;\n }\n let v = c;\n v !== \"\" && (v += u.indentBy);\n const g = s(h[\":@\"], u), b = c + `<${y}${g}`, x = a(h[y], u, P, v);\n u.unpairedTags.indexOf(y) !== -1 ? u.suppressUnpairedNode ? d += b + \">\" : d += b + \"/>\" : (!x || x.length === 0) && u.suppressEmptyNode ? d += b + \"/>\" : x && x.endsWith(\">\") ? d += b + `>${x}${c}` : (d += b + \">\", x && c !== \"\" && (x.includes(\"/>\") || x.includes(\"`), m = !0;\n }\n return d;\n }\n function n(i) {\n const u = Object.keys(i);\n for (let l = 0; l < u.length; l++) {\n const c = u[l];\n if (c !== \":@\")\n return c;\n }\n }\n function s(i, u) {\n let l = \"\";\n if (i && !u.ignoreAttributes)\n for (let c in i) {\n let d = u.attributeValueProcessor(c, i[c]);\n d = o(d, u), d === !0 && u.suppressBooleanAttributes ? l += ` ${c.substr(u.attributeNamePrefix.length)}` : l += ` ${c.substr(u.attributeNamePrefix.length)}=\"${d}\"`;\n }\n return l;\n }\n function r(i, u) {\n i = i.substr(0, i.length - u.textNodeName.length - 1);\n let l = i.substr(i.lastIndexOf(\".\") + 1);\n for (let c in u.stopNodes)\n if (u.stopNodes[c] === i || u.stopNodes[c] === \"*.\" + l)\n return !0;\n return !1;\n }\n function o(i, u) {\n if (i && i.length > 0 && u.processEntities)\n for (let l = 0; l < u.entities.length; l++) {\n const c = u.entities[l];\n i = i.replace(c.regex, c.val);\n }\n return i;\n }\n return bo = t, bo;\n}\nvar xo, yl;\nfunction v1() {\n if (yl)\n return xo;\n yl = 1;\n const e = f1(), t = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(o, i) {\n return i;\n }, attributeValueProcessor: function(o, i) {\n return i;\n }, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\n function a(o) {\n this.options = Object.assign({}, t, o), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = r), this.processTextOrObjNode = n, this.options.format ? (this.indentate = s, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n }\n a.prototype.build = function(o) {\n return this.options.preserveOrder ? e(o, this.options) : (Array.isArray(o) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (o = { [this.options.arrayNodeName]: o }), this.j2x(o, 0).val);\n }, a.prototype.j2x = function(o, i) {\n let u = \"\", l = \"\";\n for (let c in o)\n if (!(typeof o[c] > \"u\"))\n if (o[c] === null)\n c[0] === \"?\" ? l += this.indentate(i) + \"<\" + c + \"?\" + this.tagEndChar : l += this.indentate(i) + \"<\" + c + \"/\" + this.tagEndChar;\n else if (o[c] instanceof Date)\n l += this.buildTextValNode(o[c], c, \"\", i);\n else if (typeof o[c] != \"object\") {\n const d = this.isAttribute(c);\n if (d)\n u += this.buildAttrPairStr(d, \"\" + o[c]);\n else if (c === this.options.textNodeName) {\n let m = this.options.tagValueProcessor(c, \"\" + o[c]);\n l += this.replaceEntitiesValue(m);\n } else\n l += this.buildTextValNode(o[c], c, \"\", i);\n } else if (Array.isArray(o[c])) {\n const d = o[c].length;\n let m = \"\";\n for (let p = 0; p < d; p++) {\n const h = o[c][p];\n typeof h > \"u\" || (h === null ? c[0] === \"?\" ? l += this.indentate(i) + \"<\" + c + \"?\" + this.tagEndChar : l += this.indentate(i) + \"<\" + c + \"/\" + this.tagEndChar : typeof h == \"object\" ? this.options.oneListGroup ? m += this.j2x(h, i + 1).val : m += this.processTextOrObjNode(h, c, i) : m += this.buildTextValNode(h, c, \"\", i));\n }\n this.options.oneListGroup && (m = this.buildObjectNode(m, c, \"\", i)), l += m;\n } else if (this.options.attributesGroupName && c === this.options.attributesGroupName) {\n const d = Object.keys(o[c]), m = d.length;\n for (let p = 0; p < m; p++)\n u += this.buildAttrPairStr(d[p], \"\" + o[c][d[p]]);\n } else\n l += this.processTextOrObjNode(o[c], c, i);\n return { attrStr: u, val: l };\n }, a.prototype.buildAttrPairStr = function(o, i) {\n return i = this.options.attributeValueProcessor(o, \"\" + i), i = this.replaceEntitiesValue(i), this.options.suppressBooleanAttributes && i === \"true\" ? \" \" + o : \" \" + o + '=\"' + i + '\"';\n };\n function n(o, i, u) {\n const l = this.j2x(o, u + 1);\n return o[this.options.textNodeName] !== void 0 && Object.keys(o).length === 1 ? this.buildTextValNode(o[this.options.textNodeName], i, l.attrStr, u) : this.buildObjectNode(l.val, i, l.attrStr, u);\n }\n a.prototype.buildObjectNode = function(o, i, u, l) {\n if (o === \"\")\n return i[0] === \"?\" ? this.indentate(l) + \"<\" + i + u + \"?\" + this.tagEndChar : this.indentate(l) + \"<\" + i + u + this.closeTag(i) + this.tagEndChar;\n {\n let c = \"\" + o + c : this.options.commentPropName !== !1 && i === this.options.commentPropName && d.length === 0 ? this.indentate(l) + `` + this.newLine : this.indentate(l) + \"<\" + i + u + d + this.tagEndChar + o + this.indentate(l) + c;\n }\n }, a.prototype.closeTag = function(o) {\n let i = \"\";\n return this.options.unpairedTags.indexOf(o) !== -1 ? this.options.suppressUnpairedNode || (i = \"/\") : this.options.suppressEmptyNode ? i = \"/\" : i = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && i === this.options.commentPropName)\n return this.indentate(l) + `` + this.newLine;\n if (i[0] === \"?\")\n return this.indentate(l) + \"<\" + i + u + \"?\" + this.tagEndChar;\n {\n let c = this.options.tagValueProcessor(i, o);\n return c = this.replaceEntitiesValue(c), c === \"\" ? this.indentate(l) + \"<\" + i + u + this.closeTag(i) + this.tagEndChar : this.indentate(l) + \"<\" + i + u + \">\" + c + \" 0 && this.options.processEntities)\n for (let i = 0; i < this.options.entities.length; i++) {\n const u = this.options.entities[i];\n o = o.replace(u.regex, u.val);\n }\n return o;\n };\n function s(o) {\n return this.options.indentBy.repeat(o);\n }\n function r(o) {\n return o.startsWith(this.options.attributeNamePrefix) ? o.substr(this.attrPrefixLen) : !1;\n }\n return xo = a, xo;\n}\nvar ko, Al;\nfunction C1() {\n if (Al)\n return ko;\n Al = 1;\n const e = Dm(), t = h1(), a = v1();\n return ko = { XMLParser: t, XMLValidator: e, XMLBuilder: a }, ko;\n}\nvar wl;\nfunction y1() {\n if (wl)\n return On.exports;\n wl = 1;\n const { XMLParser: e, XMLValidator: t } = C1(), a = (n) => {\n if (n == null || (n = n.toString().trim(), n.length === 0) || t.validate(n) !== !0)\n return !1;\n let s;\n const r = new e();\n try {\n s = r.parse(n);\n } catch {\n return !1;\n }\n return !(!s || !(\"svg\" in s));\n };\n return On.exports = a, On.exports.default = a, On.exports;\n}\nvar bl;\nfunction A1() {\n if (bl)\n return Nn;\n bl = 1, Object.defineProperty(Nn, \"__esModule\", { value: !0 });\n var e = Qm, t = y1();\n function a(l) {\n return l && typeof l == \"object\" && \"default\" in l ? l : { default: l };\n }\n var n = a(t);\n function s(l, c, d, m) {\n function p(h) {\n return h instanceof d ? h : new d(function(y) {\n y(h);\n });\n }\n return new (d || (d = Promise))(function(h, y) {\n function P(b) {\n try {\n g(m.next(b));\n } catch (x) {\n y(x);\n }\n }\n function v(b) {\n try {\n g(m.throw(b));\n } catch (x) {\n y(x);\n }\n }\n function g(b) {\n b.done ? h(b.value) : p(b.value).then(P, v);\n }\n g((m = m.apply(l, c || [])).next());\n });\n }\n function r(l, c) {\n var d = { label: 0, sent: function() {\n if (h[0] & 1)\n throw h[1];\n return h[1];\n }, trys: [], ops: [] }, m, p, h, y;\n return y = { next: P(0), throw: P(1), return: P(2) }, typeof Symbol == \"function\" && (y[Symbol.iterator] = function() {\n return this;\n }), y;\n function P(g) {\n return function(b) {\n return v([g, b]);\n };\n }\n function v(g) {\n if (m)\n throw new TypeError(\"Generator is already executing.\");\n for (; d; )\n try {\n if (m = 1, p && (h = g[0] & 2 ? p.return : g[0] ? p.throw || ((h = p.return) && h.call(p), 0) : p.next) && !(h = h.call(p, g[1])).done)\n return h;\n switch (p = 0, h && (g = [g[0] & 2, h.value]), g[0]) {\n case 0:\n case 1:\n h = g;\n break;\n case 4:\n return d.label++, { value: g[1], done: !1 };\n case 5:\n d.label++, p = g[1], g = [0];\n continue;\n case 7:\n g = d.ops.pop(), d.trys.pop();\n continue;\n default:\n if (h = d.trys, !(h = h.length > 0 && h[h.length - 1]) && (g[0] === 6 || g[0] === 2)) {\n d = 0;\n continue;\n }\n if (g[0] === 3 && (!h || g[1] > h[0] && g[1] < h[3])) {\n d.label = g[1];\n break;\n }\n if (g[0] === 6 && d.label < h[1]) {\n d.label = h[1], h = g;\n break;\n }\n if (h && d.label < h[2]) {\n d.label = h[2], d.ops.push(g);\n break;\n }\n h[2] && d.ops.pop(), d.trys.pop();\n continue;\n }\n g = c.call(l, d);\n } catch (b) {\n g = [6, b], p = 0;\n } finally {\n m = h = 0;\n }\n if (g[0] & 5)\n throw g[1];\n return { value: g[0] ? g[1] : void 0, done: !0 };\n }\n }\n var o = function(l) {\n return new Promise(function(c) {\n if (!i(l))\n c(l.toString(\"utf-8\"));\n else {\n var d = new FileReader();\n d.onload = function() {\n c(d.result);\n }, d.readAsText(l);\n }\n });\n }, i = function(l) {\n return l.size !== void 0;\n }, u = function(l) {\n return s(void 0, void 0, void 0, function() {\n var c, d, m, p, h, y;\n return r(this, function(P) {\n switch (P.label) {\n case 0:\n if (!l)\n throw new Error(\"Not an svg\");\n return c = \"\", e.Buffer.isBuffer(l) || l instanceof File ? [4, o(l)] : [3, 2];\n case 1:\n return c = P.sent(), [3, 3];\n case 2:\n c = l, P.label = 3;\n case 3:\n if (!n.default(c))\n throw new Error(\"Not an svg\");\n return d = document.createElement(\"div\"), d.innerHTML = c, m = d.firstElementChild, p = Array.from(m.attributes).map(function(v) {\n var g = v.name;\n return g;\n }), h = !!p.find(function(v) {\n return v.startsWith(\"on\");\n }), y = m.getElementsByTagName(\"script\"), [2, y.length === 0 && !h ? l : null];\n }\n });\n });\n };\n return Nn.sanitizeSVG = u, Nn;\n}\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 2105: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.icon-vue {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: 44px;\n\tmin-height: 44px;\n\topacity: 1;\n\n\t&:deep(svg) {\n\t\tfill: currentColor;\n\t\tmax-width: 20px;\n\t\tmax-height: 20px;\n\t}\n}\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 1287: () => {\n }, 1900: (o, i, u) => {\n function l(c, d, m, p, h, y, P, v) {\n var g, b = typeof c == \"function\" ? c.options : c;\n if (d && (b.render = d, b.staticRenderFns = m, b._compiled = !0), p && (b.functional = !0), y && (b._scopeId = \"data-v-\" + y), P ? (g = function(w) {\n (w = w || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (w = __VUE_SSR_CONTEXT__), h && h.call(this, w), w && w._registeredComponents && w._registeredComponents.add(P);\n }, b._ssrRegister = g) : h && (g = v ? function() {\n h.call(this, (b.functional ? this.parent : this).$root.$options.shadowRoot);\n } : h), g)\n if (b.functional) {\n b._injectStyles = g;\n var x = b.render;\n b.render = function(w, L) {\n return g.call(L), x(w, L);\n };\n } else {\n var _ = b.beforeCreate;\n b.beforeCreate = _ ? [].concat(_, g) : [g];\n }\n return { exports: c, options: b };\n }\n u.d(i, { Z: () => l });\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => S });\n const o = A1();\n function i(D) {\n return i = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(R) {\n return typeof R;\n } : function(R) {\n return R && typeof Symbol == \"function\" && R.constructor === Symbol && R !== Symbol.prototype ? \"symbol\" : typeof R;\n }, i(D);\n }\n function u() {\n u = function() {\n return D;\n };\n var D = {}, R = Object.prototype, B = R.hasOwnProperty, F = Object.defineProperty || function(V, q, X) {\n V[q] = X.value;\n }, W = typeof Symbol == \"function\" ? Symbol : {}, U = W.iterator || \"@@iterator\", j = W.asyncIterator || \"@@asyncIterator\", ee = W.toStringTag || \"@@toStringTag\";\n function J(V, q, X) {\n return Object.defineProperty(V, q, { value: X, enumerable: !0, configurable: !0, writable: !0 }), V[q];\n }\n try {\n J({}, \"\");\n } catch {\n J = function(V, q, X) {\n return V[q] = X;\n };\n }\n function le(V, q, X, ce) {\n var ne = q && q.prototype instanceof $ ? q : $, M = Object.create(ne.prototype), I = new re(ce || []);\n return F(M, \"_invoke\", { value: me(V, X, I) }), M;\n }\n function ge(V, q, X) {\n try {\n return { type: \"normal\", arg: V.call(q, X) };\n } catch (ce) {\n return { type: \"throw\", arg: ce };\n }\n }\n D.wrap = le;\n var fe = {};\n function $() {\n }\n function z() {\n }\n function te() {\n }\n var he = {};\n J(he, U, function() {\n return this;\n });\n var ye = Object.getPrototypeOf, Be = ye && ye(ye(xe([])));\n Be && Be !== R && B.call(Be, U) && (he = Be);\n var je = te.prototype = $.prototype = Object.create(he);\n function Re(V) {\n [\"next\", \"throw\", \"return\"].forEach(function(q) {\n J(V, q, function(X) {\n return this._invoke(q, X);\n });\n });\n }\n function Oe(V, q) {\n function X(ne, M, I, Z) {\n var ie = ge(V[ne], V, M);\n if (ie.type !== \"throw\") {\n var se = ie.arg, Ce = se.value;\n return Ce && i(Ce) == \"object\" && B.call(Ce, \"__await\") ? q.resolve(Ce.__await).then(function(Ae) {\n X(\"next\", Ae, I, Z);\n }, function(Ae) {\n X(\"throw\", Ae, I, Z);\n }) : q.resolve(Ce).then(function(Ae) {\n se.value = Ae, I(se);\n }, function(Ae) {\n return X(\"throw\", Ae, I, Z);\n });\n }\n Z(ie.arg);\n }\n var ce;\n F(this, \"_invoke\", { value: function(ne, M) {\n function I() {\n return new q(function(Z, ie) {\n X(ne, M, Z, ie);\n });\n }\n return ce = ce ? ce.then(I, I) : I();\n } });\n }\n function me(V, q, X) {\n var ce = \"suspendedStart\";\n return function(ne, M) {\n if (ce === \"executing\")\n throw new Error(\"Generator is already running\");\n if (ce === \"completed\") {\n if (ne === \"throw\")\n throw M;\n return Se();\n }\n for (X.method = ne, X.arg = M; ; ) {\n var I = X.delegate;\n if (I) {\n var Z = oe(I, X);\n if (Z) {\n if (Z === fe)\n continue;\n return Z;\n }\n }\n if (X.method === \"next\")\n X.sent = X._sent = X.arg;\n else if (X.method === \"throw\") {\n if (ce === \"suspendedStart\")\n throw ce = \"completed\", X.arg;\n X.dispatchException(X.arg);\n } else\n X.method === \"return\" && X.abrupt(\"return\", X.arg);\n ce = \"executing\";\n var ie = ge(V, q, X);\n if (ie.type === \"normal\") {\n if (ce = X.done ? \"completed\" : \"suspendedYield\", ie.arg === fe)\n continue;\n return { value: ie.arg, done: X.done };\n }\n ie.type === \"throw\" && (ce = \"completed\", X.method = \"throw\", X.arg = ie.arg);\n }\n };\n }\n function oe(V, q) {\n var X = q.method, ce = V.iterator[X];\n if (ce === void 0)\n return q.delegate = null, X === \"throw\" && V.iterator.return && (q.method = \"return\", q.arg = void 0, oe(V, q), q.method === \"throw\") || X !== \"return\" && (q.method = \"throw\", q.arg = new TypeError(\"The iterator does not provide a '\" + X + \"' method\")), fe;\n var ne = ge(ce, V.iterator, q.arg);\n if (ne.type === \"throw\")\n return q.method = \"throw\", q.arg = ne.arg, q.delegate = null, fe;\n var M = ne.arg;\n return M ? M.done ? (q[V.resultName] = M.value, q.next = V.nextLoc, q.method !== \"return\" && (q.method = \"next\", q.arg = void 0), q.delegate = null, fe) : M : (q.method = \"throw\", q.arg = new TypeError(\"iterator result is not an object\"), q.delegate = null, fe);\n }\n function Y(V) {\n var q = { tryLoc: V[0] };\n 1 in V && (q.catchLoc = V[1]), 2 in V && (q.finallyLoc = V[2], q.afterLoc = V[3]), this.tryEntries.push(q);\n }\n function de(V) {\n var q = V.completion || {};\n q.type = \"normal\", delete q.arg, V.completion = q;\n }\n function re(V) {\n this.tryEntries = [{ tryLoc: \"root\" }], V.forEach(Y, this), this.reset(!0);\n }\n function xe(V) {\n if (V) {\n var q = V[U];\n if (q)\n return q.call(V);\n if (typeof V.next == \"function\")\n return V;\n if (!isNaN(V.length)) {\n var X = -1, ce = function ne() {\n for (; ++X < V.length; )\n if (B.call(V, X))\n return ne.value = V[X], ne.done = !1, ne;\n return ne.value = void 0, ne.done = !0, ne;\n };\n return ce.next = ce;\n }\n }\n return { next: Se };\n }\n function Se() {\n return { value: void 0, done: !0 };\n }\n return z.prototype = te, F(je, \"constructor\", { value: te, configurable: !0 }), F(te, \"constructor\", { value: z, configurable: !0 }), z.displayName = J(te, ee, \"GeneratorFunction\"), D.isGeneratorFunction = function(V) {\n var q = typeof V == \"function\" && V.constructor;\n return !!q && (q === z || (q.displayName || q.name) === \"GeneratorFunction\");\n }, D.mark = function(V) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(V, te) : (V.__proto__ = te, J(V, ee, \"GeneratorFunction\")), V.prototype = Object.create(je), V;\n }, D.awrap = function(V) {\n return { __await: V };\n }, Re(Oe.prototype), J(Oe.prototype, j, function() {\n return this;\n }), D.AsyncIterator = Oe, D.async = function(V, q, X, ce, ne) {\n ne === void 0 && (ne = Promise);\n var M = new Oe(le(V, q, X, ce), ne);\n return D.isGeneratorFunction(q) ? M : M.next().then(function(I) {\n return I.done ? I.value : M.next();\n });\n }, Re(je), J(je, ee, \"Generator\"), J(je, U, function() {\n return this;\n }), J(je, \"toString\", function() {\n return \"[object Generator]\";\n }), D.keys = function(V) {\n var q = Object(V), X = [];\n for (var ce in q)\n X.push(ce);\n return X.reverse(), function ne() {\n for (; X.length; ) {\n var M = X.pop();\n if (M in q)\n return ne.value = M, ne.done = !1, ne;\n }\n return ne.done = !0, ne;\n };\n }, D.values = xe, re.prototype = { constructor: re, reset: function(V) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = void 0, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = void 0, this.tryEntries.forEach(de), !V)\n for (var q in this)\n q.charAt(0) === \"t\" && B.call(this, q) && !isNaN(+q.slice(1)) && (this[q] = void 0);\n }, stop: function() {\n this.done = !0;\n var V = this.tryEntries[0].completion;\n if (V.type === \"throw\")\n throw V.arg;\n return this.rval;\n }, dispatchException: function(V) {\n if (this.done)\n throw V;\n var q = this;\n function X(ie, se) {\n return M.type = \"throw\", M.arg = V, q.next = ie, se && (q.method = \"next\", q.arg = void 0), !!se;\n }\n for (var ce = this.tryEntries.length - 1; ce >= 0; --ce) {\n var ne = this.tryEntries[ce], M = ne.completion;\n if (ne.tryLoc === \"root\")\n return X(\"end\");\n if (ne.tryLoc <= this.prev) {\n var I = B.call(ne, \"catchLoc\"), Z = B.call(ne, \"finallyLoc\");\n if (I && Z) {\n if (this.prev < ne.catchLoc)\n return X(ne.catchLoc, !0);\n if (this.prev < ne.finallyLoc)\n return X(ne.finallyLoc);\n } else if (I) {\n if (this.prev < ne.catchLoc)\n return X(ne.catchLoc, !0);\n } else {\n if (!Z)\n throw new Error(\"try statement without catch or finally\");\n if (this.prev < ne.finallyLoc)\n return X(ne.finallyLoc);\n }\n }\n }\n }, abrupt: function(V, q) {\n for (var X = this.tryEntries.length - 1; X >= 0; --X) {\n var ce = this.tryEntries[X];\n if (ce.tryLoc <= this.prev && B.call(ce, \"finallyLoc\") && this.prev < ce.finallyLoc) {\n var ne = ce;\n break;\n }\n }\n ne && (V === \"break\" || V === \"continue\") && ne.tryLoc <= q && q <= ne.finallyLoc && (ne = null);\n var M = ne ? ne.completion : {};\n return M.type = V, M.arg = q, ne ? (this.method = \"next\", this.next = ne.finallyLoc, fe) : this.complete(M);\n }, complete: function(V, q) {\n if (V.type === \"throw\")\n throw V.arg;\n return V.type === \"break\" || V.type === \"continue\" ? this.next = V.arg : V.type === \"return\" ? (this.rval = this.arg = V.arg, this.method = \"return\", this.next = \"end\") : V.type === \"normal\" && q && (this.next = q), fe;\n }, finish: function(V) {\n for (var q = this.tryEntries.length - 1; q >= 0; --q) {\n var X = this.tryEntries[q];\n if (X.finallyLoc === V)\n return this.complete(X.completion, X.afterLoc), de(X), fe;\n }\n }, catch: function(V) {\n for (var q = this.tryEntries.length - 1; q >= 0; --q) {\n var X = this.tryEntries[q];\n if (X.tryLoc === V) {\n var ce = X.completion;\n if (ce.type === \"throw\") {\n var ne = ce.arg;\n de(X);\n }\n return ne;\n }\n }\n throw new Error(\"illegal catch attempt\");\n }, delegateYield: function(V, q, X) {\n return this.delegate = { iterator: xe(V), resultName: q, nextLoc: X }, this.method === \"next\" && (this.arg = void 0), fe;\n } }, D;\n }\n function l(D, R, B, F, W, U, j) {\n try {\n var ee = D[U](j), J = ee.value;\n } catch (le) {\n return void B(le);\n }\n ee.done ? R(J) : Promise.resolve(J).then(F, W);\n }\n function c(D) {\n return function() {\n var R = this, B = arguments;\n return new Promise(function(F, W) {\n var U = D.apply(R, B);\n function j(J) {\n l(U, F, W, j, ee, \"next\", J);\n }\n function ee(J) {\n l(U, F, W, j, ee, \"throw\", J);\n }\n j(void 0);\n });\n };\n }\n const d = { name: \"NcIconSvgWrapper\", props: { svg: { type: String, default: \"\" }, name: { type: String, default: \"\" } }, data: function() {\n return { cleanSvg: \"\" };\n }, beforeMount: function() {\n var D = this;\n return c(u().mark(function R() {\n return u().wrap(function(B) {\n for (; ; )\n switch (B.prev = B.next) {\n case 0:\n return B.next = 2, D.sanitizeSVG();\n case 2:\n case \"end\":\n return B.stop();\n }\n }, R);\n }))();\n }, methods: { sanitizeSVG: function() {\n var D = this;\n return c(u().mark(function R() {\n return u().wrap(function(B) {\n for (; ; )\n switch (B.prev = B.next) {\n case 0:\n if (D.svg) {\n B.next = 2;\n break;\n }\n return B.abrupt(\"return\");\n case 2:\n return B.next = 4, (0, o.sanitizeSVG)(D.svg);\n case 4:\n D.cleanSvg = B.sent;\n case 5:\n case \"end\":\n return B.stop();\n }\n }, R);\n }))();\n } } };\n var m = s(3379), p = s.n(m), h = s(7795), y = s.n(h), P = s(569), v = s.n(P), g = s(3565), b = s.n(g), x = s(9216), _ = s.n(x), w = s(4589), L = s.n(w), H = s(2105), C = {};\n C.styleTagTransform = L(), C.setAttributes = b(), C.insert = v().bind(null, \"head\"), C.domAPI = y(), C.insertStyleElement = _(), p()(H.Z, C), H.Z && H.Z.locals && H.Z.locals;\n var E = s(1900), T = s(1287), f = s.n(T), A = (0, E.Z)(d, function() {\n var D = this;\n return (0, D._self._c)(\"span\", { staticClass: \"icon-vue\", attrs: { role: \"img\", \"aria-hidden\": !D.name, \"aria-label\": D.name }, domProps: { innerHTML: D._s(D.cleanSvg) } });\n }, [], !1, null, \"5937dacc\", null);\n typeof f() == \"function\" && f()(A);\n const S = A.exports;\n })(), r;\n })());\n})(Fm);\nvar w1 = Fm.exports;\nconst b1 = mn(w1);\nvar Bm = { exports: {} };\n(function(e, t) {\n (function(a, n) {\n e.exports = n();\n })(self, () => (() => {\n var a = { 8235: (o, i, u) => {\n u.d(i, { Z: () => p });\n var l = u(7537), c = u.n(l), d = u(3645), m = u.n(d)()(c());\n m.push([o.id, \".material-design-icon[data-v-67f460e0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.progress-bar[data-v-67f460e0]{display:block;height:var(--progress-bar-height);width:100%;overflow:hidden;border:0;padding:0;background:var(--color-background-dark);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar[data-v-67f460e0]::-webkit-progress-bar{height:var(--progress-bar-height);background-color:rgba(0,0,0,0)}.progress-bar[data-v-67f460e0]::-webkit-progress-value{background:var(--gradient-primary-background);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar[data-v-67f460e0]::-moz-progress-bar{background:var(--gradient-primary-background);border-radius:calc(var(--progress-bar-height)/2)}.progress-bar--error[data-v-67f460e0]::-moz-progress-bar{background:var(--color-error) !important}.progress-bar--error[data-v-67f460e0]::-webkit-progress-value{background:var(--color-error) !important}\", \"\", { version: 3, sources: [\"webpack://./src/assets/material-icons.css\", \"webpack://./src/components/NcProgressBar/NcProgressBar.vue\"], names: [], mappings: \"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,aAAA,CACA,iCAAA,CACA,UAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,uCAAA,CACA,gDAAA,CAGA,qDACC,iCAAA,CACA,8BAAA,CAED,uDACC,6CAAA,CACA,gDAAA,CAED,kDACC,6CAAA,CACA,gDAAA,CAIA,yDACC,wCAAA,CAED,8DACC,wCAAA\", sourcesContent: [`/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n`, `@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.progress-bar {\n\tdisplay: block;\n\theight: var(--progress-bar-height);\n\twidth: 100%;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tbackground: var(--color-background-dark);\n\tborder-radius: calc(var(--progress-bar-height) / 2);\n\n\t// Browser specific rules\n\t&::-webkit-progress-bar {\n\t\theight: var(--progress-bar-height);\n\t\tbackground-color: transparent;\n\t}\n\t&::-webkit-progress-value {\n\t\tbackground: var(--gradient-primary-background);\n\t\tborder-radius: calc(var(--progress-bar-height) / 2);\n\t}\n\t&::-moz-progress-bar {\n\t\tbackground: var(--gradient-primary-background);\n\t\tborder-radius: calc(var(--progress-bar-height) / 2);\n\t}\n\t&--error {\n\t\t// Override previous values\n\t\t&::-moz-progress-bar {\n\t\t\tbackground: var(--color-error) !important;\n\t\t}\n\t\t&::-webkit-progress-value {\n\t\t\tbackground: var(--color-error) !important;\n\t\t}\n\t}\n}\n\n`], sourceRoot: \"\" }]);\n const p = m;\n }, 3645: (o) => {\n o.exports = function(i) {\n var u = [];\n return u.toString = function() {\n return this.map(function(l) {\n var c = \"\", d = l[5] !== void 0;\n return l[4] && (c += \"@supports (\".concat(l[4], \") {\")), l[2] && (c += \"@media \".concat(l[2], \" {\")), d && (c += \"@layer\".concat(l[5].length > 0 ? \" \".concat(l[5]) : \"\", \" {\")), c += i(l), d && (c += \"}\"), l[2] && (c += \"}\"), l[4] && (c += \"}\"), c;\n }).join(\"\");\n }, u.i = function(l, c, d, m, p) {\n typeof l == \"string\" && (l = [[null, l, void 0]]);\n var h = {};\n if (d)\n for (var y = 0; y < this.length; y++) {\n var P = this[y][0];\n P != null && (h[P] = !0);\n }\n for (var v = 0; v < l.length; v++) {\n var g = [].concat(l[v]);\n d && h[g[0]] || (p !== void 0 && (g[5] === void 0 || (g[1] = \"@layer\".concat(g[5].length > 0 ? \" \".concat(g[5]) : \"\", \" {\").concat(g[1], \"}\")), g[5] = p), c && (g[2] && (g[1] = \"@media \".concat(g[2], \" {\").concat(g[1], \"}\")), g[2] = c), m && (g[4] ? (g[1] = \"@supports (\".concat(g[4], \") {\").concat(g[1], \"}\"), g[4] = m) : g[4] = \"\".concat(m)), u.push(g));\n }\n }, u;\n };\n }, 7537: (o) => {\n o.exports = function(i) {\n var u = i[1], l = i[3];\n if (!l)\n return u;\n if (typeof btoa == \"function\") {\n var c = btoa(unescape(encodeURIComponent(JSON.stringify(l)))), d = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c), m = \"/*# \".concat(d, \" */\");\n return [u].concat([m]).join(`\n`);\n }\n return [u].join(`\n`);\n };\n }, 3379: (o) => {\n var i = [];\n function u(d) {\n for (var m = -1, p = 0; p < i.length; p++)\n if (i[p].identifier === d) {\n m = p;\n break;\n }\n return m;\n }\n function l(d, m) {\n for (var p = {}, h = [], y = 0; y < d.length; y++) {\n var P = d[y], v = m.base ? P[0] + m.base : P[0], g = p[v] || 0, b = \"\".concat(v, \" \").concat(g);\n p[v] = g + 1;\n var x = u(b), _ = { css: P[1], media: P[2], sourceMap: P[3], supports: P[4], layer: P[5] };\n if (x !== -1)\n i[x].references++, i[x].updater(_);\n else {\n var w = c(_, m);\n m.byIndex = y, i.splice(y, 0, { identifier: b, updater: w, references: 1 });\n }\n h.push(b);\n }\n return h;\n }\n function c(d, m) {\n var p = m.domAPI(m);\n return p.update(d), function(h) {\n if (h) {\n if (h.css === d.css && h.media === d.media && h.sourceMap === d.sourceMap && h.supports === d.supports && h.layer === d.layer)\n return;\n p.update(d = h);\n } else\n p.remove();\n };\n }\n o.exports = function(d, m) {\n var p = l(d = d || [], m = m || {});\n return function(h) {\n h = h || [];\n for (var y = 0; y < p.length; y++) {\n var P = u(p[y]);\n i[P].references--;\n }\n for (var v = l(h, m), g = 0; g < p.length; g++) {\n var b = u(p[g]);\n i[b].references === 0 && (i[b].updater(), i.splice(b, 1));\n }\n p = v;\n };\n };\n }, 569: (o) => {\n var i = {};\n o.exports = function(u, l) {\n var c = function(d) {\n if (i[d] === void 0) {\n var m = document.querySelector(d);\n if (window.HTMLIFrameElement && m instanceof window.HTMLIFrameElement)\n try {\n m = m.contentDocument.head;\n } catch {\n m = null;\n }\n i[d] = m;\n }\n return i[d];\n }(u);\n if (!c)\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n c.appendChild(l);\n };\n }, 9216: (o) => {\n o.exports = function(i) {\n var u = document.createElement(\"style\");\n return i.setAttributes(u, i.attributes), i.insert(u, i.options), u;\n };\n }, 3565: (o, i, u) => {\n o.exports = function(l) {\n var c = u.nc;\n c && l.setAttribute(\"nonce\", c);\n };\n }, 7795: (o) => {\n o.exports = function(i) {\n if (typeof document > \"u\")\n return { update: function() {\n }, remove: function() {\n } };\n var u = i.insertStyleElement(i);\n return { update: function(l) {\n (function(c, d, m) {\n var p = \"\";\n m.supports && (p += \"@supports (\".concat(m.supports, \") {\")), m.media && (p += \"@media \".concat(m.media, \" {\"));\n var h = m.layer !== void 0;\n h && (p += \"@layer\".concat(m.layer.length > 0 ? \" \".concat(m.layer) : \"\", \" {\")), p += m.css, h && (p += \"}\"), m.media && (p += \"}\"), m.supports && (p += \"}\");\n var y = m.sourceMap;\n y && typeof btoa < \"u\" && (p += `\n/*# sourceMappingURL=data:application/json;base64,`.concat(btoa(unescape(encodeURIComponent(JSON.stringify(y)))), \" */\")), d.styleTagTransform(p, c, d.options);\n })(u, i, l);\n }, remove: function() {\n (function(l) {\n if (l.parentNode === null)\n return !1;\n l.parentNode.removeChild(l);\n })(u);\n } };\n };\n }, 4589: (o) => {\n o.exports = function(i, u) {\n if (u.styleSheet)\n u.styleSheet.cssText = i;\n else {\n for (; u.firstChild; )\n u.removeChild(u.firstChild);\n u.appendChild(document.createTextNode(i));\n }\n };\n }, 8070: () => {\n } }, n = {};\n function s(o) {\n var i = n[o];\n if (i !== void 0)\n return i.exports;\n var u = n[o] = { id: o, exports: {} };\n return a[o](u, u.exports, s), u.exports;\n }\n s.n = (o) => {\n var i = o && o.__esModule ? () => o.default : () => o;\n return s.d(i, { a: i }), i;\n }, s.d = (o, i) => {\n for (var u in i)\n s.o(i, u) && !s.o(o, u) && Object.defineProperty(o, u, { enumerable: !0, get: i[u] });\n }, s.o = (o, i) => Object.prototype.hasOwnProperty.call(o, i), s.r = (o) => {\n typeof Symbol < \"u\" && Symbol.toStringTag && Object.defineProperty(o, Symbol.toStringTag, { value: \"Module\" }), Object.defineProperty(o, \"__esModule\", { value: !0 });\n }, s.nc = void 0;\n var r = {};\n return (() => {\n s.r(r), s.d(r, { default: () => H });\n const o = { name: \"NcProgressBar\", props: { value: { type: Number, default: 0, validator: function(C) {\n return C >= 0 && C <= 100;\n } }, size: { type: String, default: \"small\", validator: function(C) {\n return [\"small\", \"medium\"].indexOf(C) !== -1;\n } }, error: { type: Boolean, default: !1 } }, computed: { height: function() {\n return this.size === \"small\" ? \"4px\" : \"6px\";\n } } };\n var i = s(3379), u = s.n(i), l = s(7795), c = s.n(l), d = s(569), m = s.n(d), p = s(3565), h = s.n(p), y = s(9216), P = s.n(y), v = s(4589), g = s.n(v), b = s(8235), x = {};\n x.styleTagTransform = g(), x.setAttributes = h(), x.insert = m().bind(null, \"head\"), x.domAPI = c(), x.insertStyleElement = P(), u()(b.Z, x), b.Z && b.Z.locals && b.Z.locals;\n var _ = s(8070), w = s.n(_), L = function(C, E, T, f, A, S, D, R) {\n var B, F = typeof C == \"function\" ? C.options : C;\n if (E && (F.render = E, F.staticRenderFns = T, F._compiled = !0), f && (F.functional = !0), S && (F._scopeId = \"data-v-\" + S), D ? (B = function(j) {\n (j = j || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ > \"u\" || (j = __VUE_SSR_CONTEXT__), A && A.call(this, j), j && j._registeredComponents && j._registeredComponents.add(D);\n }, F._ssrRegister = B) : A && (B = R ? function() {\n A.call(this, (F.functional ? this.parent : this).$root.$options.shadowRoot);\n } : A), B)\n if (F.functional) {\n F._injectStyles = B;\n var W = F.render;\n F.render = function(j, ee) {\n return B.call(ee), W(j, ee);\n };\n } else {\n var U = F.beforeCreate;\n F.beforeCreate = U ? [].concat(U, B) : [B];\n }\n return { exports: C, options: F };\n }(o, function() {\n var C = this;\n return (0, C._self._c)(\"progress\", { staticClass: \"progress-bar vue\", class: { \"progress-bar--error\": C.error }, style: { \"--progress-bar-height\": C.height }, attrs: { max: \"100\" }, domProps: { value: C.value } });\n }, [], !1, null, \"67f460e0\", null);\n typeof w() == \"function\" && w()(L);\n const H = L.exports;\n })(), r;\n })());\n})(Bm);\nvar x1 = Bm.exports;\nconst k1 = mn(x1), E1 = { name: \"CancelIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar P1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, S1 = [], T1 = pn(E1, P1, S1, !1, null, null, null, null);\nconst F1 = T1.exports, D1 = { name: \"PlusIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar B1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, _1 = [], N1 = pn(D1, B1, _1, !1, null, null, null, null);\nconst O1 = N1.exports, j1 = { name: \"UploadIcon\", emits: [\"click\"], props: { title: { type: String }, fillColor: { type: String, default: \"currentColor\" }, size: { type: Number, default: 24 } } };\nvar L1 = function() {\n var e = this, t = e._self._c;\n return t(\"span\", e._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": !e.title, \"aria-label\": e.title, role: \"img\" }, on: { click: function(a) {\n return e.$emit(\"click\", a);\n } } }, \"span\", e.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: e.fillColor, width: e.size, height: e.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [e.title ? t(\"title\", [e._v(e._s(e.title))]) : e._e()])])]);\n}, z1 = [], U1 = pn(j1, L1, z1, !1, null, null, null, null);\nconst M1 = U1.exports;\nvar R1 = Yc();\nconst _m = R1.getGettextBuilder().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali , 2023\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nomv nas , 2023\nAli , 2023\n` }, msgstr: [`Last-Translator: Ali , 2023\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: 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;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Add: { msgid: \"Add\", msgstr: [\"أضف\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Asturian (https://www.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Asturian (https://www.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev , 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev , 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev , 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido , 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera , 2022\nToni Hermoso Pulido , 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido , 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki , 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki , 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2023\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki , 2023\n` }, msgstr: [`Last-Translator: Pavel Borecki , 2023\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Henrik Dunch, 2022\", \"Language-Team\": \"Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nHenrik Dunch, 2022\n` }, msgstr: [`Last-Translator: Henrik Dunch, 2022\nLanguage-Team: Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Add: { msgid: \"Add\", msgstr: [\"Tilføj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mark Ziegler , 2023\", \"Language-Team\": \"German (https://www.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nkaekimaster, 2023\nMark Ziegler , 2023\n` }, msgstr: [`Last-Translator: Mark Ziegler , 2023\nLanguage-Team: German (https://www.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Add: { msgid: \"Add\", msgstr: [\"Hinzufügen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann , 2022\", \"Language-Team\": \"German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMario Siegmann , 2022\n` }, msgstr: [`Last-Translator: Mario Siegmann , 2022\nLanguage-Team: German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleibend\"] }, Add: { msgid: \"Add\", msgstr: [\"Hinzufügen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler , 2022\", \"Language-Team\": \"English (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nAndi Chandler , 2022\n` }, msgstr: [`Last-Translator: Andi Chandler , 2022\nLanguage-Team: English (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Next Cloud , 2022\", \"Language-Team\": \"Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFlorin Baras, 2022\nHecbert Gonzalez, 2022\nNext Cloud , 2022\n` }, msgstr: [`Last-Translator: Next Cloud , 2022\nLanguage-Team: Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimación del tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta , 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta , 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta , 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos , 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos , 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos , 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jérôme Herbinet, 2022\", \"Language-Team\": \"French (https://www.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ , 2022\nJérôme Herbinet, 2022\n` }, msgstr: [`Last-Translator: Jérôme Herbinet, 2022\nLanguage-Team: French (https://www.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Add: { msgid: \"Add\", msgstr: [\"Ajouter\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléverser des fichiers\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Xosé, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nXosé, 2023\n` }, msgstr: [`Last-Translator: Xosé, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Engadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: 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;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó , 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rainy Merlin, 2022\", \"Language-Team\": \"Indonesian (https://www.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRainy Merlin, 2022\n` }, msgstr: [`Last-Translator: Rainy Merlin, 2022\nLanguage-Team: Indonesian (https://www.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, Add: { msgid: \"Add\", msgstr: [\"Tambah\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"marcotrevisan , 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nGianluca Montalbano, 2022\nmarcotrevisan , 2023\n` }, msgstr: [`Last-Translator: marcotrevisan , 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, Add: { msgid: \"Add\", msgstr: [\"Aggiungi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2022\", \"Language-Team\": \"Korean (https://www.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBrandon Han, 2022\n` }, msgstr: [`Last-Translator: Brandon Han, 2022\nLanguage-Team: Korean (https://www.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, Add: { msgid: \"Add\", msgstr: [\"추가\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산중\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров , 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров , 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров , 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ari Selseng , 2022\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nAri Selseng , 2022\n` }, msgstr: [`Last-Translator: Ari Selseng , 2022\nLanguage-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, Add: { msgid: \"Add\", msgstr: [\"Legg til\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico , 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico , 2023\n` }, msgstr: [`Last-Translator: Rico , 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2022\", \"Language-Team\": \"Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nValdnet, 2022\n` }, msgstr: [`Last-Translator: Valdnet, 2022\nLanguage-Team: Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: 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);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Flávio Veras , 2022\", \"Language-Team\": \"Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLeonardo Colman , 2022\nJeann Cavalcante , 2022\nFlávio Veras , 2022\n` }, msgstr: [`Last-Translator: Flávio Veras , 2022\nLanguage-Team: Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva , 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva , 2022\n` }, msgstr: [`Last-Translator: Manuela Silva , 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu , 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu , 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu , 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Тёма Лапин, 2022\", \"Language-Team\": \"Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nАлексей Хрусталёв, 2022\nТёма Лапин, 2022\n` }, msgstr: [`Last-Translator: Тёма Лапин, 2022\nLanguage-Team: Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: 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);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Оценка оставшегося времени\"] }, paused: { msgid: \"paused\", msgstr: [\"Приостановлено\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: 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);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://www.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://www.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додај\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Max Bäckström, 2022\", \"Language-Team\": \"Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMax Bäckström, 2022\n` }, msgstr: [`Last-Translator: Max Bäckström, 2022\nLanguage-Team: Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Add: { msgid: \"Add\", msgstr: [\"Lägg till\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat , 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat , 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat , 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren , 2022\", \"Language-Team\": \"Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nKaya Zeren , 2022\n` }, msgstr: [`Last-Translator: Kaya Zeren , 2022\nLanguage-Team: Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Add: { msgid: \"Add\", msgstr: [\"Ekle\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Vitaliy , 2022\", \"Language-Team\": \"Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nVitaliy , 2022\n` }, msgstr: [`Last-Translator: Vitaliy , 2022\nLanguage-Team: Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Додати\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажте файли\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"blakduk, 2023\", \"Language-Team\": \"Vietnamese (https://www.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nblakduk, 2023\n` }, msgstr: [`Last-Translator: blakduk, 2023\nLanguage-Team: Vietnamese (https://www.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, Add: { msgid: \"Add\", msgstr: [\"Thêm\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"yue wang, 2022\", \"Language-Team\": \"Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJack Frost, 2022\nyue wang, 2022\n` }, msgstr: [`Last-Translator: yue wang, 2022\nLanguage-Team: Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2022\", \"Language-Team\": \"Chinese (Hong Kong) (https://www.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nCafé Tango, 2022\n` }, msgstr: [`Last-Translator: Café Tango, 2022\nLanguage-Team: Chinese (Hong Kong) (https://www.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tragic Life, 2022\", \"Language-Team\": \"Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPin-Hsien Lee, 2022\nTragic Life, 2022\n` }, msgstr: [`Last-Translator: Tragic Life, 2022\nLanguage-Team: Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"新增\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] } } } } }].map((e) => _m.addTranslation(e.locale, e.json));\nconst fs = _m.build(), y3 = fs.ngettext.bind(fs), At = fs.gettext.bind(fs), $1 = Ne.extend({ name: \"UploadPicker\", components: { Cancel: F1, NcActionButton: Ff, NcActions: r1, NcButton: u1, NcIconSvgWrapper: b1, NcProgressBar: k1, Plus: O1, Upload: M1 }, props: { accept: { type: Array, default: null }, disabled: { type: Boolean, default: !1 }, multiple: { type: Boolean, default: !1 }, destination: { type: kl, default: void 0 }, content: { type: Array, default: () => [] } }, data() {\n return { addLabel: At(\"Add\"), cancelLabel: At(\"Cancel uploads\"), uploadLabel: At(\"Upload files\"), eta: null, timeLeft: \"\", newFileMenuEntries: [], uploadManager: Nm() };\n}, computed: { totalQueueSize() {\n return this.uploadManager.info?.size || 0;\n}, uploadedQueueSize() {\n return this.uploadManager.info?.progress || 0;\n}, progress() {\n return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n}, queue() {\n return this.uploadManager.queue;\n}, hasFailure() {\n return this.queue?.filter((e) => e.status === pt.FAILED).length !== 0;\n}, isUploading() {\n return this.queue?.length > 0;\n}, isAssembling() {\n return this.queue?.filter((e) => e.status === pt.ASSEMBLING).length !== 0;\n}, isPaused() {\n return this.uploadManager.info?.status === Il.PAUSED;\n} }, watch: { destination(e) {\n this.setDestination(e);\n}, totalQueueSize(e) {\n this.eta = Xm({ min: 0, max: e }), this.updateStatus();\n}, uploadedQueueSize(e) {\n this.eta?.report?.(e), this.updateStatus();\n}, isPaused(e) {\n e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n} }, beforeMount() {\n this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), lt.debug(\"UploadPicker initialised\");\n}, methods: { onClick() {\n this.$refs.input.click();\n}, async onPick() {\n let e = [...this.$refs.input.files];\n if (V1(e, this.content)) {\n const t = e.filter((n) => this.content.find((s) => s.basename === n.name)).filter(Boolean), a = e.filter((n) => !t.includes(n));\n try {\n const { selected: n, renamed: s } = await q1(this.destination.basename, t, this.content);\n e = [...a, ...n, ...s];\n } catch {\n Ym(At(\"Upload cancelled\"));\n return;\n }\n }\n e.forEach((t) => {\n this.uploadManager.upload(t.name, t).catch(() => {\n });\n }), this.$refs.form.reset();\n}, onCancel() {\n this.uploadManager.queue.forEach((e) => {\n e.cancel();\n }), this.$refs.form.reset();\n}, updateStatus() {\n if (this.isPaused) {\n this.timeLeft = At(\"paused\");\n return;\n }\n const e = Math.round(this.eta.estimate());\n if (e === 1 / 0) {\n this.timeLeft = At(\"estimating time left\");\n return;\n }\n if (e < 10) {\n this.timeLeft = At(\"a few seconds left\");\n return;\n }\n if (e > 60) {\n const t = /* @__PURE__ */ new Date(0);\n t.setSeconds(e);\n const a = t.toISOString().slice(11, 11 + 8);\n this.timeLeft = At(\"{time} left\", { time: a });\n return;\n }\n this.timeLeft = At(\"{seconds} seconds left\", { seconds: e });\n}, setDestination(e) {\n if (!this.destination) {\n lt.debug(\"Invalid destination\");\n return;\n }\n lt.debug(\"Destination set\", { destination: e }), this.uploadManager.destination = e, this.newFileMenuEntries = Wm(e);\n}, onUploadCompletion(e) {\n e.status === pt.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n} } });\nvar I1 = function() {\n var e = this, t = e._self._c;\n return e._self._setupProxy, e.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": e.isUploading, \"upload-picker--paused\": e.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [e.newFileMenuEntries && e.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: e.disabled, \"data-cy-upload-picker-add\": \"\" }, on: { click: e.onClick }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [e._v(\" \" + e._s(e.addLabel) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-title\": e.addLabel }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: e.onClick }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 3606034491) }, [e._v(\" \" + e._s(e.uploadLabel) + \" \")]), e._l(e.newFileMenuEntries, function(a) {\n return t(\"NcActionButton\", { key: a.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: a.iconClass, \"close-after-click\": !0 }, on: { click: function(n) {\n return a.handler(e.destination, e.content);\n } }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"NcIconSvgWrapper\", { attrs: { svg: a.iconSvgInline } })];\n }, proxy: !0 }], null, !0) }, [e._v(\" \" + e._s(a.displayName) + \" \")]);\n })], 2), t(\"div\", { staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { error: e.hasFailure, value: e.progress, size: \"medium\" } }), t(\"p\", [e._v(e._s(e.timeLeft))])], 1), e.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": e.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: e.onCancel }, scopedSlots: e._u([{ key: \"icon\", fn: function() {\n return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n }, proxy: !0 }], null, !1, 4076886712) }) : e._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: e.accept?.join?.(\", \"), multiple: e.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: e.onPick } })], 1) : e._e();\n}, G1 = [], H1 = pn($1, I1, G1, !1, null, \"5f1bec03\", null, null);\nconst A3 = H1.exports;\nlet Eo = null;\nfunction Nm() {\n const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n return Eo instanceof Bi || (Eo = new Bi(e)), Eo;\n}\nfunction w3(e, t) {\n const a = Nm();\n return a.upload(e, t), a;\n}\nasync function q1(e, t, a) {\n const { default: n } = await import(\"./ConflictPicker-a1dcd9bc.mjs\");\n return new Promise((s, r) => {\n const o = new n({ propsData: { dirname: e, conflicts: t, content: a } });\n o.$on(\"submit\", (i) => {\n s(i), o.$destroy(), o.$el?.parentNode?.removeChild(o.$el);\n }), o.$on(\"cancel\", (i) => {\n r(i ?? new Error(\"Canceled\")), o.$destroy(), o.$el?.parentNode?.removeChild(o.$el);\n }), o.$mount(), document.body.appendChild(o.$el);\n });\n}\nfunction V1(e, t) {\n const a = t.map((n) => n.basename);\n return e.filter((n) => {\n const s = n instanceof File ? n.name : n.basename;\n return a.indexOf(s) !== -1;\n }).length > 0;\n}\nexport {\n u1 as N,\n Il as S,\n A3 as U,\n Ne as V,\n mn as a,\n Kc as b,\n Ia as c,\n xv as d,\n Yv as e,\n s1 as f,\n Ps as g,\n y3 as h,\n Nm as i,\n V1 as j,\n Ad as k,\n lt as l,\n pt as m,\n pn as n,\n q1 as o,\n Yc as r,\n At as t,\n w3 as u\n};\n","import { getGettextBuilder as c } from \"@nextcloud/l10n/gettext\";\nimport { defineAsyncComponent as T } from \"vue\";\nvar h = Object.defineProperty, d = (t, a, n) => a in t ? h(t, a, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[a] = n, s = (t, a, n) => (d(t, typeof a != \"symbol\" ? a + \"\" : a, n), n), x = ((t) => (t[t.Choose = 1] = \"Choose\", t[t.Move = 2] = \"Move\", t[t.Copy = 3] = \"Copy\", t[t.CopyMove = 4] = \"CopyMove\", t[t.Custom = 5] = \"Custom\", t))(x || {});\nclass L {\n constructor(a, n, r, o, e, i, u, p, g) {\n s(this, \"title\"), s(this, \"multiSelect\"), s(this, \"mimeTypeFiler\"), s(this, \"modal\"), s(this, \"type\"), s(this, \"directoriesAllowed\"), s(this, \"buttons\"), s(this, \"path\"), s(this, \"filter\"), this.title = a, this.multiSelect = n, this.mimeTypeFiler = r, this.modal = o, this.type = e, this.directoriesAllowed = i, this.path = u, this.filter = p, this.buttons = g;\n }\n async pick() {\n const a = (await import(\"../legacy.mjs\")).filepicker;\n return new Promise((n) => {\n var r;\n const o = (r = this.buttons) == null ? void 0 : r.map((e) => ({ defaultButton: e.type === \"primary\", label: e.text, type: e.id }));\n a(this.title, n, this.multiSelect, this.mimeTypeFiler, this.modal, this.type, this.path, { allowDirectoryChooser: this.directoriesAllowed, filter: this.filter, buttons: o });\n });\n }\n}\nclass f {\n constructor(a) {\n s(this, \"title\"), s(this, \"multiSelect\", !1), s(this, \"mimeTypeFiler\", []), s(this, \"modal\", !0), s(this, \"type\", 1), s(this, \"directoriesAllowed\", !1), s(this, \"path\"), s(this, \"filter\"), s(this, \"buttons\", []), this.title = a;\n }\n setMultiSelect(a) {\n return this.multiSelect = a, this;\n }\n addMimeTypeFilter(a) {\n return this.mimeTypeFiler.push(a), this;\n }\n setMimeTypeFilter(a) {\n return this.mimeTypeFiler = a, this;\n }\n addButton(a) {\n return this.buttons.push(a), this;\n }\n setModal(a) {\n return this.modal = a, this;\n }\n setType(a) {\n return this.type = a, this;\n }\n allowDirectories(a = !0) {\n return this.directoriesAllowed = a, this;\n }\n startAt(a) {\n return this.path = a, this;\n }\n setFilter(a) {\n return this.filter = a, this;\n }\n build() {\n return this.buttons && this.type !== 5 && console.error(\"FilePickerBuilder: When adding custom buttons the `type` must be set to `FilePickerType.Custom`.\"), new L(this.title, this.multiSelect, this.mimeTypeFiler, this.modal, this.type, this.directoriesAllowed, this.path, this.filter, this.buttons);\n }\n}\nfunction C(t) {\n return new f(t);\n}\nconst m = c().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: af\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ar\\nPlural-Forms: 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;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"تراجع\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ast\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfacer\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: az\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: be\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bg_BG\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bn_BD\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: br\\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Disober\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: bs\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ca\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfés\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki , 2020\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nPavel Borecki , 2020\\n\" }, msgstr: [\"Last-Translator: Pavel Borecki , 2020\\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cs\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:187\" }, msgstr: [\"Zpět\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cs_CZ\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Zpět\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cy_GB\\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: da\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Fortryd\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rückgängig\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de_DE\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rückgängig machen\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: el\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Αναίρεση\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: en_GB\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Undo\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: eo\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Malfari\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_419\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_AR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CL\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CO\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_CR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_DO\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_EC\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_GT\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_HN\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_MX\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Deshacer\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_NI\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PA\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PE\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PR\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_PY\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_SV\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es_UY\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: et_EE\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: eu\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desegin\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fa\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"بازگردانی\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fi_FI\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Kumoa\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fo\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ldm Public , 2023\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nLdm Public , 2023\\n\" }, msgstr: [\"Last-Translator: Ldm Public , 2023\\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fr\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Rétablir\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: gd\\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: gl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfacer\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"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;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: he\\nPlural-Forms: 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;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"ביטול\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hi_IN\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hr\\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hsb\\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hu_HU\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Visszavonás\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hy\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ia\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: id\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Tidak jadi\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ig\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: is\\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Afturkalla\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: it\\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Annulla\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ja_JP\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"元に戻す\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ka\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ka_GE\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kab\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Sefsex\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kk\\nPlural-Forms: nplurals=2; plural=(n!=1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: km\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: kn\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ko\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"되돌리기\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: la\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lb\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lo\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lt_LT\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Atšaukti\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lv\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mk\\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Врати\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mn\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Буцаах\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mr\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"पूर्ववत करा\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ms_MY\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: my\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"နဂိုအတိုင်းပြန်ထားရန်\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nb_NO\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Angre\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ne\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Ongedaan maken\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nn_NO\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: oc\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anullar\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pl\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Cofnij\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ps\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_BR\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Desfazer\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_PT\\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anular\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ro\\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Anulează\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"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);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ru\\nPlural-Forms: 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);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Отменить\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sc\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: si\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"පෙරසේ\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sk_SK\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Späť\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sl\\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Razveljavi\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sq\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sr\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Поништи\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sr@latin\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sv\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Ångra\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sw\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ta\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"செயல்தவிர்\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: th_TH\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"เลิกทำ\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: tk\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: tr\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Geri al\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ug\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: uk\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Скасувати дію\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ur_PK\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: uz\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: vi\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"Hoàn tác\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_CN\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\" 撤消\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_HK\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"還原\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Joas Schilling, 2023\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nJoas Schilling, 2023\\n\" }, msgstr: [\"Last-Translator: Joas Schilling, 2023\\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_TW\\nPlural-Forms: nplurals=1; plural=0;\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"復原\"] } } } } }, { locale: \"zu_ZA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2023\", \"Language-Team\": \"Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zu_ZA\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: \"\\nTranslators:\\nTransifex Bot <>, 2023\\n\" }, msgstr: [\"Last-Translator: Transifex Bot <>, 2023\\nLanguage-Team: Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zu_ZA\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"] }, Undo: { msgid: \"Undo\", comments: { reference: \"lib/toast.ts:223\" }, msgstr: [\"\"] } } } } }].map((t) => m.addTranslation(t.locale, t.json));\nconst l = m.build();\nl.ngettext.bind(l);\nconst y = l.gettext.bind(l);\nconst P = T(() => import(\"./FilePicker-ad781544.mjs\"));\nexport {\n L as F,\n x as a,\n f as b,\n P as c,\n C as g,\n y as t\n};\n","import d from \"toastify-js\";\nimport { t as l } from \"./index-03982120.mjs\";\nconst p = \"off\", f = \"polite\", m = \"assertive\";\nvar r = ((t) => (t[t.OFF = p] = \"OFF\", t[t.POLITE = f] = \"POLITE\", t[t.ASSERTIVE = m] = \"ASSERTIVE\", t))(r || {});\nconst T = 1e4, v = 7e3, L = -1;\nfunction c(t, o) {\n var s;\n if (o = Object.assign({ timeout: v, isHTML: !1, type: void 0, selector: void 0, onRemove: () => {\n }, onClick: void 0, close: !0 }, o), typeof t == \"string\" && !o.isHTML) {\n const u = document.createElement(\"div\");\n u.innerHTML = t, t = u.innerText;\n }\n let n = (s = o.type) != null ? s : \"\";\n typeof o.onClick == \"function\" && (n += \" toast-with-click \");\n const a = t instanceof Node;\n let e = r.POLITE;\n o.ariaLive ? e = o.ariaLive : (o.type === \"toast-error\" || o.type === \"toast-undo\") && (e = r.ASSERTIVE);\n const i = d({ [a ? \"node\" : \"text\"]: t, duration: o.timeout, callback: o.onRemove, onClick: o.onClick, close: o.close, gravity: \"top\", selector: o.selector, position: \"right\", backgroundColor: \"\", className: \"dialogs \" + n, escapeMarkup: !o.isHTML, ariaLive: e });\n return i.showToast(), i;\n}\nfunction g(t, o) {\n return c(t, { ...o, type: \"toast-error\" });\n}\nfunction h(t, o) {\n return c(t, { ...o, type: \"toast-warning\" });\n}\nfunction k(t, o) {\n return c(t, { ...o, type: \"toast-info\" });\n}\nfunction O(t, o) {\n return c(t, { ...o, type: \"toast-success\" });\n}\nfunction b(t, o, s) {\n if (!(o instanceof Function))\n throw new Error(\"Please provide a valid onUndo method\");\n let n;\n s = Object.assign(s || {}, { timeout: T, close: !1 });\n const a = document.createElement(\"span\"), e = document.createElement(\"button\");\n return a.classList.add(\"toast-undo-container\"), e.classList.add(\"toast-undo-button\"), e.innerText = l(\"Undo\"), a.innerText = t, a.appendChild(e), e.addEventListener(\"click\", function(i) {\n i.stopPropagation(), o(i), (n == null ? void 0 : n.hideToast) instanceof Function && n.hideToast();\n }), n = c(a, { ...s, type: \"toast-undo\" }), n;\n}\nexport {\n T,\n v as a,\n L as b,\n p as c,\n f as d,\n m as e,\n O as f,\n h as g,\n k as h,\n g as i,\n b as j,\n c as s\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"50\":\"247715e61164d71d3665\",\"2719\":\"aca3641238db4ec94a9a\",\"3609\":\"93fa96d23b2f5334810f\",\"4221\":\"8176a71aa66260e1e1b2\",\"6870\":\"3b66be39570778909421\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2181;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2181: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(6613); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","exports","path","split","map","encodeURIComponent","join","base64","ieee754","customInspectSymbol","Symbol","Buffer","SlowBuffer","length","alloc","INSPECT_MAX_BYTES","K_MAX_LENGTH","createBuffer","RangeError","buf","Uint8Array","Object","setPrototypeOf","prototype","arg","encodingOrOffset","TypeError","allocUnsafe","from","value","string","encoding","isEncoding","byteLength","actual","write","slice","fromString","ArrayBuffer","isView","arrayView","isInstance","copy","fromArrayBuffer","buffer","byteOffset","fromArrayLike","fromArrayView","SharedArrayBuffer","valueOf","b","obj","isBuffer","len","checked","undefined","numberIsNaN","type","Array","isArray","data","fromObject","toPrimitive","assertSize","size","array","i","toString","mustMatch","arguments","loweredCase","utf8ToBytes","base64ToBytes","toLowerCase","slowToString","start","end","this","hexSlice","utf8Slice","asciiSlice","latin1Slice","base64Slice","utf16leSlice","swap","n","m","bidirectionalIndexOf","val","dir","arrayIndexOf","indexOf","call","lastIndexOf","arr","indexSize","arrLength","valLength","String","read","readUInt16BE","foundIndex","found","j","hexWrite","offset","Number","remaining","strLen","parsed","parseInt","substr","utf8Write","blitBuffer","asciiWrite","str","byteArray","push","charCodeAt","asciiToBytes","base64Write","ucs2Write","units","c","hi","lo","utf16leToBytes","fromByteArray","Math","min","res","firstByte","codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","codePoints","MAX_ARGUMENTS_LENGTH","fromCharCode","apply","decodeCodePointsArray","kMaxLength","TYPED_ARRAY_SUPPORT","proto","foo","e","typedArraySupport","console","error","defineProperty","enumerable","get","poolSize","fill","allocUnsafeSlow","_isBuffer","compare","a","x","y","concat","list","pos","set","swap16","swap32","swap64","toLocaleString","equals","inspect","max","replace","trim","target","thisStart","thisEnd","thisCopy","targetCopy","includes","isFinite","Error","toJSON","_arr","ret","out","hexSliceLookupTable","bytes","checkOffset","ext","checkInt","wrtBigUInt64LE","checkIntBI","BigInt","wrtBigUInt64BE","checkIEEE754","writeFloat","littleEndian","noAssert","writeDouble","newBuf","subarray","readUintLE","readUIntLE","mul","readUintBE","readUIntBE","readUint8","readUInt8","readUint16LE","readUInt16LE","readUint16BE","readUint32LE","readUInt32LE","readUint32BE","readUInt32BE","readBigUInt64LE","defineBigIntMethod","validateNumber","first","last","boundsError","readBigUInt64BE","readIntLE","pow","readIntBE","readInt8","readInt16LE","readInt16BE","readInt32LE","readInt32BE","readBigInt64LE","readBigInt64BE","readFloatLE","readFloatBE","readDoubleLE","readDoubleBE","writeUintLE","writeUIntLE","writeUintBE","writeUIntBE","writeUint8","writeUInt8","writeUint16LE","writeUInt16LE","writeUint16BE","writeUInt16BE","writeUint32LE","writeUInt32LE","writeUint32BE","writeUInt32BE","writeBigUInt64LE","writeBigUInt64BE","writeIntLE","limit","sub","writeIntBE","writeInt8","writeInt16LE","writeInt16BE","writeInt32LE","writeInt32BE","writeBigInt64LE","writeBigInt64BE","writeFloatLE","writeFloatBE","writeDoubleLE","writeDoubleBE","targetStart","copyWithin","code","errors","E","sym","getMessage","Base","constructor","super","writable","configurable","name","stack","message","addNumericalSeparator","range","ERR_OUT_OF_RANGE","checkBounds","ERR_INVALID_ARG_TYPE","floor","ERR_BUFFER_OUT_OF_BOUNDS","input","msg","received","isInteger","abs","INVALID_BASE64_RE","Infinity","leadSurrogate","toByteArray","base64clean","src","dst","alphabet","table","i16","fn","BufferBigIntNotDefined","t","module","self","d","default","R","o","r","s","l","iterator","u","keys","getOwnPropertySymbols","filter","getOwnPropertyDescriptor","p","forEach","h","getOwnPropertyDescriptors","defineProperties","g","v","test","A","k","components","NcButton","DotsHorizontal","NcPopover","props","open","Boolean","manualOpen","forceMenu","forceName","menuName","primary","validator","defaultIcon","ariaLabel","ariaHidden","placement","boundariesElement","Element","document","querySelector","container","disabled","inline","emits","opened","focusIndex","randomId","Z","computed","triggerBtnType","watch","methods","isValidSingleAction","componentOptions","Ctor","extendOptions","tag","openMenu","$emit","closeMenu","$refs","popover","clearFocusTrap","returnFocus","menuButton","$el","focus","onOpen","$nextTick","focusFirstAction","onMouseFocusAction","activeElement","closest","menu","querySelectorAll","focusAction","onKeydown","keyCode","shiftKey","focusPreviousAction","focusNextAction","focusLastAction","preventDefault","removeCurrentActive","classList","remove","add","preventIfEvent","stopPropagation","onFocus","onBlur","render","$slots","every","propsData","href","startsWith","window","location","origin","util","warn","scopedSlots","icon","class","listeners","click","children","text","f","C","title","staticClass","attrs","ref","on","blur","slot","delay","handleResize","shown","boundary","popoverBaseClass","setReturnFocus","triggers","show","hide","tabindex","keydown","mousemove","id","role","w","P","S","N","O","B","z","styleTagTransform","setAttributes","insert","bind","domAPI","insertStyleElement","locals","F","M","T","_","D","G","alignment","nativeType","wide","download","to","exact","pressed","realType","flexAlignment","isReverseAligned","navigate","isActive","isExactActive","rel","$attrs","$listeners","custom","Y","Date","setTimeout","pause","clearTimeout","clear","getTimeLeft","getStateRunning","hasOwnProperty","asyncIterator","toStringTag","create","wrap","getPrototypeOf","_invoke","resolve","__await","then","done","method","delegate","sent","_sent","dispatchException","abrupt","return","resultName","next","nextLoc","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","completion","reset","isNaN","displayName","isGeneratorFunction","mark","__proto__","awrap","AsyncIterator","async","Promise","reverse","pop","values","prev","charAt","stop","rval","complete","finish","catch","delegateYield","NcActions","ChevronLeft","ChevronRight","Close","Pause","Play","directives","tooltip","mixins","hasPrevious","hasNext","outTransition","enableSlideshow","slideshowDelay","slideshowPaused","enableSwipe","spreadNavigation","canClose","closeOnClickOutside","dark","closeButtonContained","additionalTrapElements","inlineActions","mc","playing","slideshowTimeout","iconSize","focusTrap","randId","internalShow","showModal","modalTransitionName","playPauseName","cssVariables","closeButtonAriaLabel","prevButtonAriaLabel","nextButtonAriaLabel","mask","updateContainerElements","beforeMount","addEventListener","handleKeydown","beforeDestroy","removeEventListener","mounted","useFocusTrap","useSwipe","onSwipeEnd","handleSwipe","body","insertBefore","lastChild","appendChild","destroyed","previous","resetSlideshow","close","handleClickModalWrapper","key","ArrowLeft","ArrowRight","contains","togglePlayPause","handleSlideshow","clearSlideshowTimeout","allowOutsideClick","fallbackFocus","trapStack","L","escapeDeactivates","createFocusTrap","activate","deactivate","U","q","I","$","W","H","V","_self","_c","appear","rawName","expression","style","_v","_s","_e","modifiers","auto","height","width","stroke","cx","cy","_t","_u","proxy","mousedown","currentTarget","invisible","K","setAttribute","Dropdown","inheritAttrs","HTMLElement","SVGElement","popperContent","$focusTrap","afterShow","afterHide","_g","_b","distance","options","themes","html","VTooltip","getGettextBuilder","detectLocale","locale","translations","Actions","Activities","Back","Choose","Custom","Favorite","Flags","Global","Next","Objects","Previous","Search","Settings","Submit","Symbols","pluralId","msgid","msgid_plural","msgstr","addTranslation","build","ngettext","gettext","isMobile","created","handleWindowResize","documentElement","clientWidth","$on","onIsMobileChanged","$off","random","assign","_nc_focus_trap","version","sources","names","mappings","sourcesContent","sourceRoot","btoa","unescape","JSON","stringify","identifier","base","css","media","sourceMap","supports","layer","references","updater","byIndex","splice","update","HTMLIFrameElement","contentDocument","head","createElement","attributes","nc","parentNode","removeChild","styleSheet","cssText","firstChild","createTextNode","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","$options","shadowRoot","_injectStyles","beforeCreate","__esModule","NcModal","required","showNavigation","selectedSection","linkClicked","addedScrollListener","scroller","hasNavigation","settingsNavigationAriaLabel","updated","settingsScroller","handleScroll","getSettingsNavigation","handleSettingsNavigationClick","getElementById","scrollIntoView","behavior","handleCloseModal","scrollTop","unfocusNavigationItem","className","handleLinkKeydown","event","htmlId","disableDrop","hovering","crumbId","linkAttributes","onOpenChange","dropped","$parent","dragEnter","dragLeave","relatedTarget","crumb","draggable","dragstart","drop","dragover","dragenter","dragleave","_d","isFocusable","focusable","onClick","isIconUrl","backgroundImage","domProps","textContent","isLongText","URL","nativeOn","before","$destroy","beforeUpdate","getText","closeAfterClick","NcActionButton","NcActionRouter","NcActionLink","NcBreadcrumb","IconFolder","rootIcon","hiddenIndices","menuBreadcrumbProps","breadcrumbsRefs","subscribe","delayedResize","hideCrumbs","unsubscribe","closeActions","actionsBreadcrumb","offsetWidth","getTotalWidth","breadcrumb__actions","getWidth","elm","arraysEqual","sort","reduce","minWidth","dragStart","dragOver","isBreadcrumb","Fragment","round","actions","svg","cleanSvg","sanitizeSVG","innerHTML","AlertCircle","Check","label","labelOutside","placeholder","showTrailingButton","trailingButtonLabel","success","helperText","inputClass","computedId","inputName","hasLeadingIcon","hasTrailingIcon","hasPlaceholder","computedPlaceholder","isValidLabel","ariaDescribedby","select","handleInput","handleTrailingButtonClick","for","staticStyle","color","getCurrentDirectory","_OCA","currentDirInfo","OCA","Files","App","currentFileList","dirInfo","_regeneratorRuntime","Op","hasOwn","desc","$Symbol","iteratorSymbol","asyncIteratorSymbol","toStringTagSymbol","define","err","innerFn","outerFn","tryLocsList","protoGenerator","Generator","generator","context","Context","makeInvokeMethod","tryCatch","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","NativeIteratorPrototype","Gp","defineIteratorMethods","PromiseImpl","invoke","reject","record","result","_typeof","unwrapped","previousPromise","callInvokeWithMethodAndArg","state","delegateResult","maybeInvokeDelegate","methodName","info","pushTryEntry","locs","entry","resetTryEntry","iterable","iteratorMethod","doneResult","genFun","ctor","iter","object","skipTempReset","rootRecord","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","thrown","asyncGeneratorStep","gen","_next","_throw","_asyncToGenerator","args","getTemplates","_ref","_callee","response","_context","axios","generateOcsUrl","ocs","createFromTemplate","_ref2","_callee2","filePath","templatePath","templateType","_context2","post","_x","_x2","_x3","previewWidth","basename","fileid","filename","previewUrl","hasPreview","mime","ratio","failedPreview","nameWithoutExt","realPreviewUrl","mimeIcon","getCurrentUser","generateUrl","pathSections","relativePath","section","OC","MimeType","getIconUrl","onCheck","onFailure","_vm","NcEmptyContent","TemplatePreview","logger","loading","provider","emptyTemplate","_this$provider","_this$provider2","mimetypes","selectedTemplate","_this","templates","find","template","margin","border","_this2","fetchedProvider","app","onSubmit","_this3","currentDirectory","fileList","_this3$provider","_this3$provider2","_this3$selectedTempla","_this3$selectedTempla2","fileInfo","model","fileAction","debug","extension","normalize","addAndFetchFileInfo","status","FileInfoModel","filesClient","fileActions","getDefaultFileAction","PERMISSION_ALL","action","$file","findFileEl","fileInfoModel","t0","showError","$event","_l","getLoggerBuilder","setApp","detectUser","Vue","mixin","TemplatePickerRoot","loadState","templatesPath","TemplatePicker","extend","TemplatePickerView","$mount","initTemplatesPlugin","attach","addMenuEntry","templateName","iconClass","fileType","actionLabel","actionHandler","initTemplatesFolder","removeMenuEntry","Plugins","register","index","newTemplatePlugin","FilesPlugin","copySystemTemplates","changeDirectory","template_path","query","setFilter","FileAction","nodes","view","iconSvgInline","enabled","node","permissions","permission","Permission","DELETE","exec","delete","source","emit","execBatch","all","order","registerFileAction","triggerDownload","url","hiddenElement","downloadNodes","secret","substring","files","some","FileType","Folder","_node$root","root","READ","openLocalClient","link","_getCurrentUser","uid","host","encodePath","token","UPDATE","navigator","userAgent","shouldFavorite","favorite","favoriteNode","willFavorite","_action","tags","TAG_FAVORITE","dirname","StarSvg","_node$root$startsWith","NONE","_callee4","_context4","_callee3","_context3","_x4","FolderSvg","isDavRessource","OCP","Router","goToRoute","DefaultType","HIDDEN","_window","_nodes$0$root","Sidebar","FolderMoveSvg","File","createNewFolder","headers","Overwrite","getUniqueName","newName","extname","if","CREATE","handler","content","_getCurrentUser2","contentNames","_yield$createNewFolde","folder","mtime","owner","ALL","_children","showSuccess","addNewFileMenuEntry","getTarget","isProxyAvailable","Proxy","HOOK_SETUP","supported","perf","ApiProxy","plugin","hook","targetQueue","onQueue","defaultSettings","settings","item","defaultValue","localSettingsSaveId","currentSettings","raw","localStorage","getItem","parse","fallbacks","getSettings","setSettings","setItem","now","performance","_a","perf_hooks","pluginId","proxiedOn","_target","prop","proxiedTarget","setRealTarget","setupDevtoolsPlugin","pluginDescriptor","setupFn","descriptor","__VUE_DEVTOOLS_GLOBAL_HOOK__","enableProxy","enableEarlyProxy","__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__","__VUE_DEVTOOLS_PLUGINS__","activePinia","setActivePinia","pinia","piniaSymbol","isPlainObject","MutationType","IS_CLIENT","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","global","globalThis","opts","xhr","XMLHttpRequest","responseType","onload","saveAs","onerror","send","corsEnabled","dispatchEvent","MouseEvent","evt","createEvent","initMouseEvent","_navigator","isMacOSWebView","HTMLAnchorElement","blob","createObjectURL","revokeObjectURL","msSaveOrOpenBlob","autoBom","Blob","bom","popup","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","readAsDataURL","toastMessage","piniaMessage","__VUE_DEVTOOLS_TOAST__","log","isPinia","checkClipboardAccess","checkNotFocusedError","fileInput","loadStoresState","storeState","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","$id","formatEventData","events","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","logo","packageName","homepage","api","addTimelineLayer","addInspector","treeFilterPlaceholder","clipboard","writeText","actionGlobalCopyState","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","onchange","file","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","$reset","inspectComponent","payload","ctx","componentInstance","_pStores","piniaStores","instanceData","editable","_isOptionsAPI","toRaw","$state","_getters","getters","getInspectorTree","inspectorId","stores","rootNodes","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","customProperties","formatStoreForInspectorState","editInspectorState","unshift","has","editComponentState","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Reflect","retValue","devtoolsPlugin","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","logStoreChanges","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","unref","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","markRaw","$dispose","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","getCurrentScope","onScopeDispose","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","subPatch","targetValue","isRef","isReactive","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","nextTick","newState","wrapAction","afterCallbackList","onErrorCallbackList","partialStore","_p","stopWatcher","run","_r","reactive","runWithContext","setupStore","effectScope","effect","actionValue","nonEnumerable","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","getCurrentInstance","inject","localState","toRefs","computedGetters","createOptionsStore","compareNumbers","numberA","numberB","compareUnicode","stringA","stringB","localeCompare","RE_NUMBERS","RE_LEADING_OR_TRAILING_WHITESPACES","RE_WHITESPACES","RE_INT_OR_FLOAT","RE_DATE","RE_LEADING_ZERO","RE_UNICODE_CHARACTERS","stringCompare","normalizeAlphaChunk","chunk","parseNumber","parsedNumber","normalizeNumericChunk","chunks","createChunkMap","normalizedString","createChunkMaps","chunksMaps","createChunks","isFunction","isNull","isObject","isSymbol","isUndefined","getMappedValueRecord","stringValue","getTime","parsedDate","_unused","parseDate","numberify","createIdentifierFn","orderBy","collection","identifiers","orders","validatedIdentifiers","identifierList","getIdentifiers","validatedOrders","orderList","getOrders","identifierFns","mappedCollection","element","recordA","recordB","indexA","valuesA","indexB","valuesB","ordersLength","_result","valueA","valueB","chunksA","chunksB","lengthA","lengthB","chunkA","chunkB","compareChunks","compareOtherTypes","compareMultiple","getElementByIndex","baseOrderBy","fillColor","uploader","useFilesStore","fileStore","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","_objectSpread","deleteNodes","setRoot","onDeletedNode","onCreatedNode","_initialized","usePathsStore","pathsStore","paths","getPath","addPath","currentView","getNavigation","active","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","userConfig","show_hidden","crop_image_previews","sort_favorites_first","useUserConfigStore","onUpdate","put","userConfigStore","viewConfig","useViewConfigStore","getConfig","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","Home","NcBreadcrumbs","filesStore","$navigation","dirs","sections","$route","getDirDisplayName","getNodeFromId","getFileIdFromPath","_this$currentView","_node$attributes","fileId","_to$query","_section$to","_setupProxy","hashCode","isCachedPreview","_window2","caches","cache","match","useActionsMenuStore","Function","updateRootElement","replaceChildren","sanitize","CustomSvgIconRender","el","_defineProperty","hint","prim","_toPrimitive","_toPropertyKey","_toConsumableArray","_arrayLikeToArray","_arrayWithoutHoles","_iterableToArray","minLen","_unsupportedIterableToArray","_nonIterableSpread","arr2","getFileActions","directive","vOnClickOutside","AccountGroupIcon","AccountPlusIcon","CustomElementRender","FavoriteIcon","FileIcon","FolderIcon","KeyIcon","LinkIcon","NcCheckboxRadioSwitch","NcLoadingIcon","NcTextField","NetworkIcon","TagIcon","visible","isMtimeAvailable","isSizeAvailable","Node","filesListWidth","actionsMenuStore","keyboardStore","altKey","ctrlKey","metaKey","onEvent","useKeyboardStore","renamingStore","renamingNode","useRenamingStore","selectionStore","backgroundFailed","columns","currentDir","_this$$route","currentFileId","params","_this$source","_this$source$toString","_this$source$attribut","formatFileSize","sizeOpacity","moment","fromNow","mtimeTitle","format","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","flat","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","linkTo","_this$source6","failed","is","enabledDefaultActions","selectedFiles","isSelected","cropPreviews","searchParams","enabledActions","enabledInlineActions","_action$inline","enabledRenderActions","renderInline","enabledMenuActions","findIndex","openedMenu","uniqueId","isFavorite","renameLabel","_matchLabel","isRenaming","isRenamingSmallScreen","_this$currentFileId","_this$currentFileId$t","resetState","debounceIfNotCached","renaming","startRenaming","debounceGetPreview","debounce","fetchAndApplyPreview","_this4","previewPromise","clearImg","CancelablePromise","onCancel","img","Image","fetchpriority","cancel","onActionClick","_this5","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onSelectionChange","_this$keyboardStore","_this6","newSelectedIndex","isAlreadySelected","filesToSelect","_file$fileid","_file$fileid$toString","onRightClick","isMoreThanOneSelected","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","config","blacklist_files_regex","checkIfNodeExists","_this7","_this8","_this8$$refs$renameIn","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this9","_this9$newName$trim","_this9$newName","oldName","oldSource","_error$response","_error$response2","rename","Destination","encodeURI","getBoundariesElement","translate","_k","_loading","opacity","column","_vm$currentView","header","currentFolder","mount","summary","_this$currentView2","totalSize","_this$currentFolder","total","classForColumn","_column$summary","fileListEl","$resizeObserver","ResizeObserver","entries","contentRect","observe","disconnect","filesListWidthMixin","selectedNodes","areSomeNodesLoading","selectionIds","results","failedIds","keysOrMapper","reduced","$pinia","storeKey","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","filesSortingMixin","mode","sortAriaLabel","direction","FilesListTableHeaderButton","FilesListTableHeaderActions","selectAllBind","isNoneSelected","isSomeSelected","isAllSelected","indeterminate","onToggleAll","dataComponent","dataKey","dataSources","itemHeight","extraProps","scrollToIndex","bufferItems","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","startIndex","shownItems","ceil","renderedItems","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","_this$$refs","_this$$refs2","_this$$refs3","tfoot","thead","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","FilesListHeader","FilesListTableHeader","FilesListTableFooter","VirtualList","View","FileEntry","getFileListHeaders","summaryFile","count","summaryFolder","sortedHeaders","getFileId","caption","ownKeys","enumerableOnly","symbols","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","FilesListVirtual","NcAppContent","NcIconSvgWrapper","ShareVariantIcon","UploadPicker","uploaderStore","getUploader","queue","useUploaderStore","promise","Type","views","dirContentsSorted","customColumn","dirContents","_v$attributes","_v$attributes2","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","canUpload","canShare","SHARE","newView","oldView","fetchContent","newDir","oldDir","filesListVirtual","_this2$promise","_yield$_this2$promise","contents","getContents","onUpload","upload","_this$currentFolder4","openSharingSidebar","setActiveTab","_vm$currentView2","emptyTitle","emptyCaption","throttle","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","cancelled","lastExec","clearExistingTimeout","wrapper","_len","arguments_","_key","elapsed","_ref2$upcomingOnly","upcomingOnly","_ref$atBegin","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","used","quotaByte","quota","storageStatsTooltip","relative","setInterval","throttleUpdateStorageStats","debounceUpdateStorageStats","atBegin","updateStorageStats","_arguments","_response$data","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcInputField","Setting","_window$OCA","webdavUrl","generateRemoteUrl","webdavDocs","appPasswordUrl","webdavUrlCopied","setting","onClose","setConfig","copyCloudId","Cog","NavigationQuota","NcAppNavigation","SettingsModal","Navigation","settingsOpened","currentViewId","parentViews","childViews","setActive","showView","_window$close","heading","headingEl","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","_view$params","openSettings","onSettingsClose","sticky","child","rootPath","defaultRootUrl","getClient","rootUrl","client","createClient","requesttoken","getRequestToken","getPatcher","patch","_options$headers","request","defaultDavProperties","defaultDavNamespaces","oc","getDavProperties","_nc_dav_properties","getDavNameSpaces","_nc_dav_namespaces","ns","getDefaultPropfind","resultToNode","davParsePermissions","nodeData","lastmod","reportPayload","_rootResponse","propfindPayload","rootResponse","contentsResponse","_args","stat","details","getDirectoryContents","includeSelf","generateFolderView","generateIdFromPath","lastTwoWeeksTimestamp","searchPayload","singleMatcher","RegExp","multiMatcher","decodeComponents","decodeURIComponent","left","right","decode","tokens","splitOnFirst","separator","separatorIndex","includeKeys","predicate","isNullOrUndefined","strictUriEncode","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","customDecodeURIComponent","keysSorter","removeHash","hashStart","parseValue","parseNumbers","parseBooleans","extract","queryStart","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","shouldFilter","skipNull","skipEmptyString","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","encodeReserveRE","encodeReserveReplacer","commaRE","castQueryParamValue","parseQuery","param","parts","shift","stringifyQuery","val2","trailingSlashRE","createRoute","redirectedFrom","router","clone","route","meta","fullPath","getFullPath","matched","formatMatch","freeze","START","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","routerView","$createElement","_routerViewCache","depth","inactive","_routerRoot","vnodeData","keepAlive","_directInactive","_inactive","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","prepatch","vnode","init","propsToPass","resolveProps","resolvePath","append","firstChar","segments","segment","cleanPath","isarray","pathToRegexp_1","pathToRegexp","groups","prefix","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","escaped","capture","group","modifier","escapeGroup","escapeString","encodeURIComponentPretty","matches","pretty","re","sensitive","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","guardEvent","scopedSlot","$scopedSlots","$hasNormal","findAnchor","isStatic","aData","handler$1","event$1","aAttrs","defaultPrevented","button","getAttribute","inBrowser","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","genStateKey","toFixed","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","absolutePath","stateCopy","replaceState","handlePopState","isPop","scrollBehavior","position","getScrollPosition","shouldScroll","scrollToPosition","saveScrollPosition","pageXOffset","pageYOffset","isValidPosition","isNumber","normalizePosition","hashStartsWithNumberRE","selector","docRect","getBoundingClientRect","elRect","top","getElementPosition","scrollTo","ua","supportsPushState","pushState","NavigationFailureType","redirected","aborted","duplicated","createNavigationCancelledError","createRouterError","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","cb","step","flatMapComponents","flatten","hasSymbol","once","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","transitionTo","onComplete","onAbort","confirmTransition","updateRoute","ensureURL","afterHooks","abort","lastRouteIndex","lastCurrentIndex","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","resolved","reason","comp","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","expectScroll","supportsScroll","handleRoutingEvent","go","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","prototypeAccessors","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","back","forward","getMatchedComponents","createHref","normalizedTo","VueRouter$1","install","installed","isDef","registerInstance","callVal","_parentVnode","_router","defineReactive","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","START_LOCATION","use","originalPush","RouterService","_classCallCheck","_name","_el","_open","_close","_settings","__webpack_nonce__","_window$OCA$Files","_window$OCP$Files","_provided","provideCache","toBeInstalled","provide","globalProperties","createPinia","SettingsService","SettingsModel","NavigationView","FilesListView","favoriteFolders","favoriteFoldersViews","addPathToFavorites","_node$root2","removePathFromFavorites","updateAndSortViews","getLanguage","ignorePunctuation","registerFavoritesView","controller","AbortController","signal","registration","noRewrite","serviceWorker","_exports","_setPrototypeOf","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","_createForOfIteratorHelper","allowArrayLike","it","normalCompletion","didErr","_e2","Constructor","_defineProperties","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","cancelable","isCancelablePromise","_internals","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","finally","callbacks","_step","_iterator","_CancelablePromiseInt","subClass","superClass","_inherits","_super","makeAllCancelable","allSettled","any","race","_default","onResult","_step2","_iterator2","resolvable","___CSS_LOADER_EXPORT___","Events","EE","addListener","emitter","listener","_events","_eventsCount","clearEvent","EventEmitter","eventNames","handlers","ee","listenerCount","a1","a2","a3","a4","a5","removeListener","removeAllListeners","off","prefixed","webpackContext","req","webpackContextResolve","__webpack_require__","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","estimatedTime","setUid","mt","wt","_entries","registerEntry","validateEntry","unregisterEntry","getEntryIndex","getEntries","_nc_newfilemenu","We","parseFloat","DEFAULT","Ye","validateAction","Ze","_nc_fileactions","Je","ei","_nc_filelistheader","ni","vt","ri","yt","crtime","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","updateMtime","deleteProperty","move","xt","bt","Q","tt","si","oi","Et","getcontentlength","Nt","_views","_currentView","ai","_nc_navigation","_column","At","isExist","isEmptyObject","merge","getValue","isName","getAllMatches","nameRegexp","Tt","allowBooleanAttributes","unpairedTags","validate","Vt","Pt","line","tagClosed","tagName","tagStartPos","col","St","It","Ot","Ct","Ft","Dt","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Rt","Mt","Bt","qt","Ut","zt","Gt","Xt","Kt","Wt","Yt","decimalPoint","tagname","addChild","te","entityName","regx","entities","skipLike","Jt","ne","lastEntities","replaceEntitiesValue","se","oe","ae","resolveNameSpace","le","saveTextToParentTag","tagsNodeStack","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","isItStopNode","readStopNodeData","tagContent","de","ue","ampEntity","ce","he","pe","fe","nt","we","ye","ve","prettify","xe","be","currentNode","apos","gt","lt","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","Ee","Ne","rt","Oe","Pe","st","ot","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","De","Se","oneListGroup","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","arrayNodeName","buildAttrPairStr","closeTag","X","XMLParser","externalEntities","addEntity","XMLValidator","XMLBuilder","li","_view","Be","emptyView","Me","di","ci","CancelError","promiseState","canceled","rejected","PCancelable","userFunction","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","_wrapNativeSuper","Class","_cache","Wrapper","_construct","Parent","TimeoutError","_Error","AbortError","_Error2","_super2","getDOMException","errorMessage","DOMException","getAbortedReason","pTimeout","milliseconds","timer","cancelablePromise","sign","POSITIVE_INFINITY","customTimers","timeoutError","t1","t2","_PriorityQueue_queue","__classPrivateFieldGet","kind","PriorityQueue","priority","comparator","trunc","lowerBound","_PQueue_instances","_PQueue_carryoverConcurrencyCount","_PQueue_isIntervalIgnored","_PQueue_intervalCount","_PQueue_intervalCap","_PQueue_interval","_PQueue_intervalEnd","_PQueue_intervalId","_PQueue_timeoutId","_PQueue_queue","_PQueue_queueClass","_PQueue_pending","_PQueue_concurrency","_PQueue_isPaused","_PQueue_throwOnTimeout","_PQueue_doesIntervalAllowAnother_get","_PQueue_doesConcurrentAllowAnother_get","_PQueue_next","_PQueue_onResumeInterval","_PQueue_isIntervalPaused_get","_PQueue_tryToStartAnother","_PQueue_initializeIntervalIfNeeded","_PQueue_onInterval","_PQueue_processQueue","_PQueue_throwOnAbort","_PQueue_onEvent","__classPrivateFieldSet","PQueue","_EventEmitter","_onIdle","_onSizeLessThan","_onEmpty","_addAll","_add","carryoverConcurrencyCount","intervalCap","interval","concurrency","autoStart","queueClass","timeout","throwOnTimeout","newConcurrency","function_","_args2","enqueue","functions","_callee5","_context5","_callee6","_context6","_x5","_callee7","_context7","WeakSet","clearInterval","canInitializeInterval","job","dequeue","_PQueue_throwOnAbort2","_callee8","_context8","_resolve","_x6","_PQueue_onEvent2","_callee9","_context9","_x7","_x8","El","e0","dr","vs","Cs","Ta","Ka","Pl","n0","Sl","ys","Ln","o0","r0","i0","u0","m0","nn","allOwnKeys","getOwnPropertyNames","Tl","Fl","Dl","y0","b0","fi","k0","Bl","Ks","vi","DIGIT","ALPHA","ALPHA_DIGIT","_0","isArrayBuffer","isFormData","FormData","isArrayBufferView","isString","isBoolean","isDate","isFile","isBlob","isRegExp","isStream","pipe","isURLSearchParams","isTypedArray","isFileList","Po","caseless","stripBOM","inherits","toFlatObject","kindOf","kindOfTest","toArray","forEachEntry","matchAll","isHTMLForm","hasOwnProp","reduceDescriptors","freezeMethods","toObjectSet","toCamelCase","toFiniteNumber","findKey","isContextDefined","ALPHABET","generateString","isSpecCompliantForm","toJSONObject","isAsyncFn","isThenable","captureStackTrace","number","fileName","lineNumber","columnNumber","Ci","yi","So","Nl","Ai","cause","L0","As","metaTokens","dots","indexes","visitor","toISOString","j0","defaultVisitor","convertValue","isVisitable","wi","pr","_pairs","bi","z0","Ol","serialize","xi","fulfilled","synchronous","runWhen","eject","jl","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","M0","URLSearchParams","R0","$0","I0","product","isBrowser","isStandardBrowserEnv","isStandardBrowserWebWorkerEnv","WorkerGlobalScope","importScripts","protocols","Ll","V0","q0","W0","Zn","transitional","adapter","transformRequest","getContentType","setContentType","isNode","H0","formSerializer","env","Z0","transformResponse","ERR_BAD_RESPONSE","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","common","Accept","gr","K0","ki","La","zn","Js","Un","X0","J0","Y0","Q0","accessor","accessors","ed","Ys","zl","__CANCEL__","sn","ERR_CANCELED","ad","toGMTString","cookie","Ul","nd","sd","od","hostname","port","Ei","loaded","lengthComputable","estimated","ld","cancelToken","auth","username","password","baseURL","getAllResponseHeaders","ERR_BAD_REQUEST","td","responseText","statusText","paramsSerializer","onreadystatechange","readyState","responseURL","onabort","ECONNABORTED","ERR_NETWORK","ontimeout","timeoutErrorMessage","ETIMEDOUT","withCredentials","setRequestHeader","onDownloadProgress","onUploadProgress","rd","Mn","http","Xs","throwIfRequested","Pi","cd","Si","xa","timeoutMessage","decompress","beforeRedirect","transport","httpAgent","httpsAgent","socketPath","responseEncoding","hr","Ti","ERR_DEPRECATED","To","assertOptions","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","validators","Rn","defaults","interceptors","function","getUri","$n","Fo","Continue","SwitchingProtocols","Processing","EarlyHints","Ok","Created","Accepted","NonAuthoritativeInformation","NoContent","ResetContent","PartialContent","MultiStatus","AlreadyReported","ImUsed","MultipleChoices","MovedPermanently","Found","SeeOther","NotModified","UseProxy","Unused","TemporaryRedirect","PermanentRedirect","BadRequest","Unauthorized","PaymentRequired","Forbidden","NotFound","MethodNotAllowed","NotAcceptable","ProxyAuthenticationRequired","RequestTimeout","Conflict","Gone","LengthRequired","PreconditionFailed","PayloadTooLarge","UriTooLong","UnsupportedMediaType","RangeNotSatisfiable","ExpectationFailed","ImATeapot","MisdirectedRequest","UnprocessableEntity","Locked","FailedDependency","TooEarly","UpgradeRequired","PreconditionRequired","TooManyRequests","RequestHeaderFieldsTooLarge","UnavailableForLegalReasons","InternalServerError","NotImplemented","BadGateway","ServiceUnavailable","GatewayTimeout","HttpVersionNotSupported","VariantAlsoNegotiates","InsufficientStorage","LoopDetected","NotExtended","NetworkAuthenticationRequired","fd","Ie","$l","Axios","CanceledError","CancelToken","Rl","_listeners","isCancel","VERSION","toFormData","AxiosError","Cancel","spread","isAxiosError","mergeConfig","AxiosHeaders","formToJSON","HttpStatusCode","vd","o3","r3","Qs","i3","u3","l3","c3","m3","d3","p3","g3","h3","f3","v3","C3","Cd","An","Fi","Di","readAsArrayBuffer","Ga","appConfig","max_chunk_size","pt","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","wd","Il","IDLE","PAUSED","Bi","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","destination","isPublic","maxChunksSize","updateStats","uploaded","addNotifier","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","startTime","yd","onIdle","Ke","fr","Qe","Gl","Do","kd","Ja","Ed","Pd","Xe","ra","Sd","ea","Td","Fd","rn","Hl","_length","Bo","ql","wn","Vl","ta","Wl","Kn","_o","_i","ws","Zl","silent","productionTip","devtools","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","Kl","Ue","Nd","jd","Fa","Da","Jl","Ld","Ni","No","Yl","Oi","bn","process","VUE_ENV","Jn","wa","Ya","un","Lt","_scope","fnContext","fnOptions","fnScopeId","isRootInsert","isComment","isCloned","isOnce","asyncFactory","asyncMeta","isAsyncPlaceholder","ka","Ca","Oo","Ud","In","Md","subs","_pending","ft","addSub","removeSub","depend","addDep","notify","Gn","Ba","Xl","Yn","__ob__","observeArray","dep","ji","Ql","vr","$d","Li","shallow","mock","vmCount","kt","isExtensible","__v_skip","ec","bs","ia","_isVue","Cr","yr","tc","__v_raw","Xn","__v_isShallow","__v_isReadonly","ln","__v_isRef","Qn","sc","Xd","Qd","rc","ep","xs","zi","Ui","np","ic","ks","Mi","immediate","onTrack","onTrigger","Ea","_isDestroyed","onStop","cn","lazy","noRecurse","Io","_isMounted","_preWatchers","Ar","effects","cleanups","scopes","uc","Ri","passive","jo","fns","lc","merged","$i","wr","cc","za","bd","_isVList","hp","fp","vp","Ii","Cp","yp","Ap","_staticTrees","_renderProxy","wp","Gi","bp","dc","$stable","$key","xp","kp","pc","_n","_q","_m","_f","br","Ep","Xa","Ha","Pp","Sp","gc","_attrsProxy","es","_listenersProxy","slots","_slotsProxy","hc","Dp","expose","Fp","xr","_setupContext","Lo","eo","fc","Mp","vc","Qa","gp","pre","Yi","Cc","$p","Rp","aa","errorCaptured","Hi","_handled","qi","$a","zo","Uo","Mo","xn","MutationObserver","kn","Hp","Vi","characterData","setImmediate","Es","ut","Pc","Zp","Kp","Jp","Yp","Xp","Qp","eg","tg","ag","ng","sg","og","rg","yc","Wi","Hn","isFrozen","en","lg","up","_watcher","user","sync","dirty","deps","newDeps","depIds","newDepIds","getter","Od","cleanupDeps","evaluate","mg","dg","pg","Ac","wc","bc","kr","$children","ct","xc","_hasHookEvent","Er","ts","Ro","Pr","ya","kc","$o","timeStamp","Ag","wg","kg","bg","Ec","Sr","_original","injections","Zi","Ki","as","__name","_componentTag","Tr","_isComponent","inlineTemplate","Tg","_renderChildren","_vnode","_parentListeners","_props","_propKeys","Fr","$forceUpdate","Cg","xg","destroy","Ji","_base","errorComp","owners","loadingComp","Up","zp","Br","Bg","pp","Sg","abstract","_merged","Dg","Fg","tn","Xi","Ng","Og","jg","na","Lg","zg","Ug","extends","eu","Go","Mg","Rg","Qi","Dr","qg","Sc","tu","au","_computedWatchers","Ho","$watch","Jg","superOptions","sealedOptions","Qg","_init","nu","En","xd","su","qo","_uid","Xg","hg","cg","jp","Pg","Ig","_setupState","__sfc","Tp","Wg","Hg","Gg","Vg","Zg","$g","Eg","Yg","$set","$delete","Kg","gg","_update","__patch__","__vue__","fg","_render","Lp","ou","rh","include","cacheVNode","vnodeToCache","keyToCache","ih","KeepAlive","mergeOptions","observable","_installedPlugins","eh","th","_Ctor","nh","sh","ah","oh","uh","lh","ch","Tc","dh","ph","ss","gh","Vo","Fc","ru","Nr","Or","vh","Ch","yh","math","Ah","jr","Dc","Pn","Wo","Lh","multiple","createElementNS","createComment","nextSibling","setTextContent","setStyleScope","zh","Aa","refInFor","iu","jt","Ua","Uh","Mh","$h","ao","uu","oldArg","Ma","componentUpdated","inserted","Ih","Gh","Hh","qh","lu","_v_attr_proxy","cu","removeAttributeNS","removeAttribute","mu","setAttributeNS","__ieph","stopImmediatePropagation","Vh","du","fh","hh","_transitionClasses","_prevClass","an","Wh","no","so","Kh","Bc","Jh","Yh","_wrapper","ownerDocument","oo","change","Zh","Sn","Xh","pu","childNodes","_value","Qh","composing","ef","_vModifiers","tf","af","nf","ro","Tn","of","gu","hu","setProperty","rf","fu","vu","normalizedStyle","sf","uf","Nc","Oc","jc","Lc","Cu","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","zc","va","io","qn","os","Zo","Uc","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","yu","requestAnimationFrame","Mc","Qt","Rc","$c","propCount","lf","getComputedStyle","Au","hasTransform","wu","Ko","_leaveCb","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","enter","afterEnter","enterCancelled","beforeAppear","afterAppear","appearCancelled","duration","Lr","Gc","Ic","beforeLeave","leave","afterLeave","leaveCancelled","delayLeave","bu","cf","pf","modules","nodeOps","pendingInsert","ge","postpatch","hasChildNodes","hasAttribute","Rh","vmodel","zr","Hc","_vOptions","xu","rs","gf","Pu","Eu","ku","selectedIndex","initEvent","Jo","hf","__vOriginalDisplay","unbind","ff","qc","Yo","Vc","Su","yf","Af","wf","vf","_leaving","Cf","Wc","moveClass","bf","kept","prevChildren","removed","hasMove","xf","kf","Ef","_reflow","offsetHeight","moved","transform","WebkitTransform","transitionDuration","_moveCb","propertyName","_hasMove","cloneNode","newPos","Pf","Transition","TransitionGroup","HTMLUnknownElement","vg","xh","Sf","EffectScope","customRef","defineAsyncComponent","loader","loadingComponent","errorComponent","suspensible","defineComponent","del","isProxy","isReadonly","isShallow","mergeDefaults","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onServerPrefetch","onUnmounted","onUpdated","proxyRefs","readonly","shallowReactive","shallowReadonly","shallowRef","ac","toRef","triggerRef","useAttrs","useCssModule","useCssVars","useListeners","useSlots","watchEffect","watchPostEffect","watchSyncEffect","Ia","mn","Ps","Zc","Kc","Ff","Tu","Fu","Du","co","Bu","Jc","uo","Df","IE_PROTO","Te","__data__","ie","Ae","Le","Ht","at","Cache","Ce","me","Nu","Ou","Nf","seal","MUSTACHE_EXPR","ERB_EXPR","TMPLIT_EXPR","DATA_ATTR","ARIA_ATTR","IS_ALLOWED_URI","IS_SCRIPT_OR_DATA","ATTR_WHITESPACE","DOCTYPE_NAME","isSupported","currentScript","DocumentFragment","HTMLTemplateElement","NodeFilter","NamedNodeMap","MozNamedAttrMap","HTMLFormElement","DOMParser","trustedTypes","ke","implementation","createNodeIterator","createDocumentFragment","getElementsByTagName","importNode","createHTMLDocument","js","Ls","zs","Om","jm","Lm","Vr","Wr","Ge","Zr","He","Kr","ze","tagNameCheck","attributeNameCheck","allowCustomizedBuiltInElements","Oa","Us","Jr","Ms","Yr","Xr","Rs","$s","la","gn","hn","Qr","Is","ja","ca","ma","ti","Gs","vn","da","Hs","qs","Um","Mm","qe","pa","$m","Vs","PARSER_MEDIA_TYPE","ALLOWED_TAGS","ALLOWED_ATTR","ALLOWED_NAMESPACES","ADD_URI_SAFE_ATTR","ADD_DATA_URI_TAGS","FORBID_CONTENTS","FORBID_TAGS","FORBID_ATTR","USE_PROFILES","ALLOW_ARIA_ATTR","ALLOW_DATA_ATTR","ALLOW_UNKNOWN_PROTOCOLS","ALLOW_SELF_CLOSE_IN_ATTR","SAFE_FOR_TEMPLATES","WHOLE_DOCUMENT","RETURN_DOM","RETURN_DOM_FRAGMENT","RETURN_TRUSTED_TYPE","FORCE_BODY","SANITIZE_DOM","SANITIZE_NAMED_PROPS","KEEP_CONTENT","IN_PLACE","ALLOWED_URI_REGEXP","NAMESPACE","CUSTOM_ELEMENT_HANDLING","svgFilters","mathMl","ADD_TAGS","ADD_ATTR","tbody","TRUSTED_TYPES_POLICY","createHTML","createScriptURL","createPolicy","Re","ii","Im","Cn","Ws","ga","Zs","attribute","getAttributeNode","ui","parseFromString","createDocument","SHOW_ELEMENT","SHOW_COMMENT","SHOW_TEXT","yn","nodeName","namespaceURI","Hm","allowedTags","firstElementChild","Gm","mi","pi","attrName","attrValue","keepAttr","allowedAttributes","ha","forceKeepAttr","gi","getAttributeType","qm","nextNode","shadowroot","shadowrootmode","outerHTML","doctype","clearConfig","isValidAttribute","addHook","removeHook","removeHooks","removeAllHooks","Yc","ach","examples","plural","sample","nplurals","pluralsText","pluralsFunc","ak","am","ar","arn","ast","ay","az","bo","brx","cgg","cs","csb","doi","dz","fa","fil","fo","fur","fy","gd","gl","gun","hne","hy","jbo","jv","kk","km","ko","kw","ky","lb","lv","mai","mfe","mk","ml","mni","mnk","mr","ms","my","nah","nap","nb","nl","nso","or","pap","pl","pms","ps","rm","rw","sah","sat","sco","sk","sl","son","sq","sr","sv","sw","tk","tr","ug","uk","ur","uz","wo","yo","catalogs","domain","sourceLocale","eventName","addTranslations","setLocale","setTextDomain","dnpgettext","dgettext","dngettext","pgettext","dpgettext","npgettext","_getTranslation","getLanguageCode","getComment","comments","textdomain","setlocale","addTextdomain","setLanguage","lang","enableDebugMode","subtitudePlaceholders","ba","dn","Ur","ju","reference","floating","Xc","bottom","jf","Xo","Ss","platform","rects","elements","strategy","rootBoundary","elementContext","altBoundary","padding","getClippingClientRect","isElement","contextElement","getDocumentElement","convertOffsetParentRelativeRectToViewportRelativeRect","rect","offsetParent","getOffsetParent","Lf","Qo","Uf","Qc","main","cross","Mf","er","$f","Mr","$t","defaultView","Ts","us","em","ShadowRoot","Fs","overflow","overflowX","overflowY","Xf","tm","perspective","contain","willChange","Lu","qa","ls","Pa","Yf","Ds","scrollLeft","e4","Qf","clientLeft","clientTop","Bs","assignedSlot","zu","t4","Uu","nm","visualViewport","Mu","innerWidth","scale","offsetLeft","offsetTop","n4","r4","scrollWidth","scrollHeight","s4","i4","getRootNode","o4","l4","getElementRects","u4","getDimensions","getClientRects","m4","d4","p4","sm","om","propertyIsEnumerable","Ru","g4","ht","skidding","instantMove","disposeTimeout","popperTriggers","preventOverflow","flip","overflowPadding","arrowPadding","arrowOverflow","hideTriggers","loadingContent","dropdown","autoHide","$extend","Sa","$u","sa","im","MSStream","Rr","hover","touch","nr","Iu","mo","Zt","Gu","Hu","$props","theme","po","$r","targetNodes","referenceNode","popperNode","showGroup","ariaId","positioningDisabled","showTriggers","popperShowTriggers","popperHideTriggers","eagerMount","popperClass","computeTransformOrigin","autoMinSize","autoSize","autoMaxSize","autoBoundaryMaxSize","shiftCrossAxis","noAutoFocus","parentPopper","isShown","isMounted","skipTransition","showFrom","showTo","hideFrom","hideTo","arrow","centerOffset","transformOrigin","shownChildren","lastAutoHide","popperId","shouldMountContent","slotData","onResize","hasPopperShowTriggerHover","dispose","$_ensureTeleport","$_computePosition","$_isDisposed","$_detachPopperNode","$_autoShowHide","skipDelay","lockedChild","$_pendingHide","$_scheduleShow","$_showFrameLocked","skipAiming","$_hideInProgress","$_isAimingPopper","lockedChildTimer","$_scheduleHide","$_events","$_preventShow","$_referenceNode","$_targetNodes","ELEMENT_NODE","$_popperNode","$_innerNode","$_arrowNode","$_swapTargetAttrs","$_addEventListeners","$_removeEventListeners","$_updateParentShownChildren","middleware","mainAxis","crossAxis","Vf","Wf","middlewareData","allowedPlacements","autoAlignment","autoPlacement","skip","If","overflows","Gf","limiter","Zf","Kf","initialPlacement","fallbackPlacements","fallbackStrategy","flipAlignment","Hf","qf","zf","maxWidth","maxHeight","Jf","Of","c4","$_scheduleTimer","$_applyHide","$_applyShow","$_computeDelay","$_disposeTimer","$_applyShowEffect","$_registerEventListeners","$_applyAttrsToTarget","usedByTooltip","$_registerTriggerListeners","$_refreshListeners","$_handleGlobalClose","closePopover","Va","Wa","Fn","qu","$_mouseDownContains","um","$_containsGlobalTarget","C4","Vu","closeAllPopover","y4","Vn","b4","clientX","clientY","x4","emitOnMount","ignoreWidth","ignoreHeight","_w","_h","emitSize","_resizeObject","addResizeHandlers","removeResizeHandlers","compareAndNotify","E4","lm","_withStripped","rr","k4","_4","Dn","Ir","themeClass","$resetCss","h4","N4","toPx","Na","Wu","L4","keyup","Gr","Ns","popper","U4","Popper","PopperContent","vPopperTheme","getTargetNodes","Zu","$4","resize","Os","G4","Ku","ir","H4","q4","Z4","Ju","K4","J4","Q4","Yu","lr","ev","tv","asyncContent","isContentAsync","finalContent","$_fetchId","$_isShown","$_loading","onShow","onHide","Xu","iv","cm","mm","dm","pm","$_popper","Hr","$_popperOldShown","Qu","gm","hm","fm","tl","Cm","$_vclosepopover_touch","$_closePopoverModifiers","changedTouches","$_vclosepopover_touchPoint","screenY","screenX","ym","cv","mv","dv","pv","gv","hv","fv","vv","Cv","yv","Av","wv","Am","$_vTooltipInstalled","wm","Bn","bv","HIDE_EVENT_MAP","Menu","PopperMethods","PopperWrapper","SHOW_EVENT_MAP","ThemeClass","Tooltip","TooltipDirective","VClosePopper","createTooltip","destroyTooltip","hideAllPoppers","placements","xv","bm","ds","xm","oa","msMatchesSelector","webkitMatchesSelector","gs","Em","assignedElements","scopeParent","candidates","getShadowRoot","shadowRootFilter","Pm","tabIndex","kv","Pv","documentOrder","Sm","al","hs","Sv","displayCheck","visibility","parentElement","Nv","Ov","Tv","cr","Bv","form","CSS","escape","Fv","Dv","Lv","zv","Ev","isScope","Rv","$v","Iv","Gv","Za","Vv","Wv","rl","il","Ra","composedPath","Zv","Jv","returnFocusOnDeactivate","delayInitialFocus","isKeyForward","isKeyBackward","containers","containerGroups","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","paused","delayInitialFocusTimer","recentNavEvent","tabbableNodes","tabbableOptions","firstTabbableNode","includeContainer","Uv","Mv","focusableNodes","posTabIndexesFound","lastTabbableNode","firstDomTabbableNode","lastDomTabbableNode","nextTabbableNode","preventScroll","Hv","isBackward","clickOutsideDeactivates","Document","qv","ol","removedNodes","subtree","childList","onDeactivate","onPostDeactivate","checkCanReturnFocus","unpause","Yv","pn","viewBox","s1","je","r1","Tm","u1","ll","cl","Fm","Nn","On","ho","ul","qr","Dm","dl","vo","Co","hl","jn","fl","vl","Cl","xo","yl","Al","wl","bl","Ao","g1","h1","l1","m1","d1","p1","f1","A1","v1","C1","y1","readAsText","throw","trys","ops","b1","Bm","k1","T1","F1","N1","O1","U1","M1","json","charset","Language","translator","Add","extracted","fs","y3","$1","Plus","Upload","addLabel","cancelLabel","uploadLabel","eta","timeLeft","newFileMenuEntries","uploadManager","Nm","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","isPaused","setDestination","updateStatus","onUploadCompletion","onPick","V1","renamed","conflicts","q1","setSeconds","seconds","H1","decorative","A3","Eo","Move","Copy","CopyMove","Undo","OFF","POLITE","ASSERTIVE","isHTML","onRemove","ariaLive","gravity","backgroundColor","escapeMarkup","showToast","__webpack_module_cache__","moduleId","cachedModule","__webpack_modules__","chunkIds","notFulfilled","definition","chunkId","promises","script","needAttach","scripts","onScriptComplete","doneFns","nmd","scriptUrl","baseURI","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/files-sidebar.js b/dist/files-sidebar.js index e36ddc3587e9f..596099aa1ebd8 100644 --- a/dist/files-sidebar.js +++ b/dist/files-sidebar.js @@ -1,3 +1,3 @@ /*! For license information please see files-sidebar.js.LICENSE.txt */ -!function(){var e,o,a,n={65358:function(e,t,o){"use strict";t.Ec=function(e){return e?e.split("/").map(encodeURIComponent).join("/"):e},o(21249),o(74916),o(23123),o(15306),o(4480),o(85827),o(92222)},10250:function(e,t,o){var a=o(25108);!function(t,o){e.exports=o()}(self,(()=>(()=>{var e={7664:(e,t,o)=>{"use strict";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),c=o.n(s),l=o(1441),u=o.n(l);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return"NcActionLink"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(c().util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,c,l,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||A,k=t.forceName?A:"",b=null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||b||(b=A),e("NcButton",{class:["action-item action-item--single",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{"aria-label":y,title:b},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?"secondary":"tertiary"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e("template",{slot:"icon"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[r]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),l=o.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[l.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[r(l)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),b=o(7795),C=o.n(b),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),_=o(9546),B={};B.styleTagTransform=E(),B.setAttributes=N(),B.insert=S().bind(null,"head"),B.domAPI=C(),B.insertStyleElement=j(),k()(_.Z,B),_.Z&&_.Z.locals&&_.Z.locals;var z=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,"head"),F.domAPI=C(),F.insertStyleElement=j(),k()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=o(1900),M=o(5727),L=o.n(M),D=(0,T.Z)(A,void 0,void 0,!1,null,"55038265",null);"function"==typeof L()&&L()(D);const G=D.exports},3089:(e,t,o)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;tx});const c={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,o,n,i=this,c=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!c,u=null===(n=this.$slots)||void 0===n?void 0:n.icon;c||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:c,ariaLabel:this.ariaLabel},this);var d=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,n=o.isActive,d=o.isExactActive;return e(i.to||!i.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!l,"button-vue--text-only":l&&!u,"button-vue--icon-and-text":u&&l},s(t,"button-vue--vue-".concat(i.realType),i.realType),s(t,"button-vue--wide",i.wide),s(t,"button-vue--".concat(i.flexAlignment),"center"!==i.flexAlignment),s(t,"button-vue--reverse",i.isReverseAligned),s(t,"active",n),s(t,"router-link-exact-active",d),t)],attrs:r({"aria-label":i.ariaLabel,"aria-pressed":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?"button":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?"_self":null,rel:!i.to&&i.href?"nofollow noreferrer noopener":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:r(r({},i.$listeners),{},{click:function(e){"boolean"==typeof i.pressed&&i.$emit("update:pressed",!i.pressed),i.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":i.ariaHidden}},[i.$slots.icon]):null,l?e("span",{class:"button-vue__text"},[c]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(7294),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(2102),P=o.n(S),N=(0,w.Z)(c,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(N);const x=N.exports},998:(e,t,a)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t,o){return(t=function(e){var t=function(e,t){if("object"!==n(e)||null===e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var a=o.call(e,"string");if("object"!==n(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===n(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}a.d(t,{default:()=>K});var r=a(6492),s=a(1205),c=a(932);const l={methods:{n:c.n,t:c.t}},u=o(8417);var d=a.n(u);const m=o(86061);var p=a.n(m);const h=o(83461);var g=a.n(h);const v=o(10063);var f=a.n(v);const A=o(66294);var y=a.n(A);const k=o(30886);var b=a.n(k);const C=o(39219);var w=a.n(C);function S(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return P(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?P(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o-1:this.checked===this.value:!0===this.checked},checkboxRadioIconElement:function(){return this.type===x?this.isChecked?f():y():this.type===j?this.isChecked?w():b():this.indeterminate?p():this.isChecked?g():d()}},mounted:function(){if(this.name&&this.type===N&&!Array.isArray(this.checked))throw new Error("When using groups of checkboxes, the updated value will be an array.");if(this.name&&this.type===j)throw new Error("Switches are not made to be used for data sets. Please use checkboxes instead.");if("boolean"!=typeof this.checked&&this.type===j)throw new Error("Switches can only be used with boolean as checked prop.")},methods:{onToggle:function(){if(!this.disabled)if(this.type!==x)if(this.type!==j)if("boolean"!=typeof this.checked){var e=this.getInputsSet().filter((function(e){return e.checked})).map((function(e){return e.value}));this.$emit("update:checked",e)}else this.$emit("update:checked",!this.isChecked);else this.$emit("update:checked",!this.isChecked);else this.$emit("update:checked",this.value)},getInputsSet:function(){return S(document.getElementsByName(this.name))}}};var _=a(3379),B=a.n(_),z=a(7795),F=a.n(z),T=a(569),M=a.n(T),L=a(3565),D=a.n(L),G=a(9216),U=a.n(G),R=a(4589),I=a.n(R),q=a(6267),$={};$.styleTagTransform=I(),$.setAttributes=D(),$.insert=M().bind(null,"head"),$.domAPI=F(),$.insertStyleElement=U(),B()(q.Z,$),q.Z&&q.Z.locals&&q.Z.locals;var H=a(1900),W=a(3768),Z=a.n(W),V=(0,H.Z)(E,(function(){var e,t=this,o=t._self._c;return o(t.wrapperElement,{tag:"component",staticClass:"checkbox-radio-switch",class:(e={},i(e,"checkbox-radio-switch-"+t.type,t.type),i(e,"checkbox-radio-switch--checked",t.isChecked),i(e,"checkbox-radio-switch--disabled",t.disabled),i(e,"checkbox-radio-switch--indeterminate",t.indeterminate),i(e,"checkbox-radio-switch--button-variant",t.buttonVariant),i(e,"checkbox-radio-switch--button-variant-v-grouped",t.buttonVariant&&"vertical"===t.buttonVariantGrouped),i(e,"checkbox-radio-switch--button-variant-h-grouped",t.buttonVariant&&"horizontal"===t.buttonVariantGrouped),e),style:t.cssVars},[o("input",t._g(t._b({staticClass:"checkbox-radio-switch__input",attrs:{id:t.id,disabled:t.disabled,type:t.inputType},domProps:{value:t.value}},"input",t.inputProps,!1),t.inputListeners)),t._v(" "),o("label",{staticClass:"checkbox-radio-switch__label",attrs:{for:t.id}},[o("div",{staticClass:"checkbox-radio-switch__icon"},[t._t("icon",(function(){return[t.loading?o("NcLoadingIcon"):t.buttonVariant?t._e():o(t.checkboxRadioIconElement,{tag:"component",attrs:{size:t.size}})]}),{checked:t.isChecked,loading:t.loading})],2),t._v(" "),o("span",{staticClass:"checkbox-radio-switch__label-text"},[t._t("default")],2)])])}),[],!1,null,"51081647",null);"function"==typeof Z()&&Z()(V);const K=V.exports},9462:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcEmptyContent",props:{name:{type:String,default:""},description:{type:String,default:""}},computed:{hasName:function(){return""!==this.name},hasDescription:function(){var e;return""!==this.description||(null===(e=this.$slots.description)||void 0===e?void 0:e[0])}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(5886),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9258),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"empty-content",attrs:{role:"note"}},[e.$slots.icon?t("div",{staticClass:"empty-content__icon",attrs:{"aria-hidden":"true"}},[e._t("icon")],2):e._e(),e._v(" "),e._t("name",(function(){return[e.hasName?t("h2",{staticClass:"empty-content__name"},[e._v("\n\t\t\t"+e._s(e.name)+"\n\t\t")]):e._e()]})),e._v(" "),e.hasDescription?t("p",[e._t("description",(function(){return[e._v("\n\t\t\t"+e._s(e.description)+"\n\t\t")]}))],2):e._e(),e._v(" "),e.$slots.action?t("div",{staticClass:"empty-content__action"},[e._t("action")],2):e._e()],2)}),[],!1,null,"048f418c",null);"function"==typeof k()&&k()(b);const C=b.exports},6492:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcLoadingIcon",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return["auto","light","dark"].includes(e)},default:"auto"},name:{type:String,default:""}},computed:{colors:function(){var e=["#777","#CCC"];return"light"===this.appearance?e:"dark"===this.appearance?e.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"material-design-icon loading-icon",attrs:{"aria-label":e.name,role:"img"}},[t("svg",{attrs:{width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:e.colors[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"}}),e._v(" "),t("path",{attrs:{fill:e.colors[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"}},[e.name?t("title",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,"27fa1197",null);"function"==typeof k()&&k()(b);const C=b.exports},2297:(e,t,o)=>{"use strict";o.d(t,{default:()=>E});var n=o(9454),i=o(4505),r=o(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,c){var l=m(e[a],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==s(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,c)}),(function(e){n("throw",e,r,c)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,c)}))}c(l.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const u={name:"NcPopover",components:{Dropdown:n.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=c().mark((function e(){var o,a;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,i.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,r.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,"next",e)}function s(e){l(i,a,n,r,s,"throw",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=o(3379),p=o.n(m),h=o(7795),g=o.n(h),v=o(569),f=o.n(v),A=o(3565),y=o.n(A),k=o(9216),b=o.n(k),C=o(4589),w=o.n(C),S=o(1625),P={};P.styleTagTransform=w(),P.setAttributes=y(),P.insert=f().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=b(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var N=o(1900),x=o(2405),j=o.n(x),O=(0,N.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof j()&&j()(O);const E=O.exports},3329:(e,t,o)=>{"use strict";o.d(t,{default:()=>n});const a={name:"NcVNodes",props:{vnodes:{type:[Array,Object],default:null}},render:function(e){var t,o,a;return this.vnodes||(null===(t=this.$slots)||void 0===t?void 0:t.default)||(null===(o=this.$scopedSlots)||void 0===o||null===(a=o.default)||void 0===a?void 0:a.call(o))}},n=(0,o(1900).Z)(a,void 0,void 0,!1,null,null,null).exports},8167:(e,t,o)=>{"use strict";o.d(t,{default:()=>a});const a={inserted:function(e){e.focus()}}},640:(e,t,a)=>{"use strict";a.d(t,{default:()=>r});const n=o(50337);var i=a.n(n);const r=function(e,t){var o;!0===(null===(o=t.value)||void 0===o?void 0:o.linkify)&&(e.innerHTML=function(e){return i()(e,{defaultProtocol:"https",target:"_blank",className:"external linkified",attributes:{rel:"nofollow noopener noreferrer"}})}(t.value.text))}},336:(e,t,o)=>{"use strict";o.d(t,{default:()=>A});var a=o(9454),n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8384),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals,a.options.themes.tooltip.html=!1,a.options.themes.tooltip.delay={show:500,hide:200},a.options.themes.tooltip.distance=10,a.options.themes.tooltip["arrow-padding"]=3;const A=a.VTooltip},932:(e,t,o)=>{"use strict";o.d(t,{n:()=>i,t:()=>r});var a=(0,o(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};a.addTranslation(e.locale,{translations:{"":t}})}));var n=a.build(),i=n.ngettext.bind(n),r=n.gettext.bind(n)},1205:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},1206:(e,t,o)=>{"use strict";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/directives/Tooltip/index.scss"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n/**\n* @copyright Copyright (c) 2016, John Molakvoæ \n* @copyright Copyright (c) 2016, Robin Appelman \n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \n* @copyright Copyright (c) 2016, Erik Pellikka \n* @copyright Copyright (c) 2015, Vincent Petry \n*\n* Bootstrap (http://getbootstrap.com)\n* SCSS copied from version 3.3.5\n* Copyright 2011-2015 Twitter, Inc.\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n*/\n\n$arrow-width: 10px;\n\n.v-popper--theme-tooltip {\n\t&.v-popper__popper {\n\t\tposition: absolute;\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tright: auto;\n\t\tleft: auto;\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\ttext-align: left;\n\t\ttext-align: start;\n\t\topacity: 0;\n\t\tline-height: 1.6;\n\n\t\tline-break: auto;\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t// TOP\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t// BOTTOM\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t// RIGHT\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tright: 100%;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t// LEFT\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tleft: 100%;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t// HIDDEN / SHOWN\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity .15s, visibility .15s;\n\t\t\topacity: 0;\n\t\t}\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity .15s;\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t// CONTENT\n\t.v-popper__inner {\n\t\tmax-width: 350px;\n\t\tpadding: 5px 8px;\n\t\ttext-align: center;\n\t\tcolor: var(--color-main-text);\n\t\tborder-radius: var(--border-radius);\n\t\tbackground-color: var(--color-main-background);\n\t}\n\n\t// ARROW\n\t.v-popper__arrow-container {\n\t\tposition: absolute;\n\t\tz-index: 1;\n\t\twidth: 0;\n\t\theight: 0;\n\t\tmargin: 0;\n\t\tborder-style: solid;\n\t\tborder-color: transparent;\n\t\tborder-width: $arrow-width;\n\t}\n}\n"],sourceRoot:""}]);const s=r},9546:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=r},5155:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=r},2365:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-1c6914a9]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar[data-v-1c6914a9]{z-index:1500;top:0;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:100%;border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:focus{opacity:1;background-color:rgba(127,127,127,.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1c6914a9]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1c6914a9]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1c6914a9]{padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px;padding-top:10px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{z-index:3;position:absolute;top:9px;left:-44px;gap:0}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1c6914a9]{top:6px;right:50px;background-color:rgba(0,0,0,0);position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1c6914a9]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1c6914a9]{padding-right:94px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1c6914a9]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1c6914a9]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1c6914a9]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1c6914a9]{position:relative;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:18px 6px 18px 9px;gap:0 4px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1c6914a9]{padding-left:6px}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__mainname-form[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__mainname-form[data-v-1c6914a9]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__subname[data-v-1c6914a9]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]{box-shadow:none}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]:not([aria-pressed=true]):hover{box-shadow:none;background-color:var(--color-background-hover)}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container[data-v-1c6914a9]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container[data-v-1c6914a9]{display:flex;align-items:center;min-height:44px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9] .linkified{cursor:pointer;text-decoration:underline;margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form[data-v-1c6914a9]{display:flex;flex:1 1 auto;align-items:center}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form input.app-sidebar-header__mainname-input[data-v-1c6914a9]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__menu[data-v-1c6914a9]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,.25);margin-left:5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{padding:0;opacity:.7;font-size:var(--default-font-size)}.app-sidebar .app-sidebar-header__description[data-v-1c6914a9]{display:flex;align-items:center;margin:0 10px}@media only screen and (max-width: 768px){.app-sidebar[data-v-1c6914a9]{width:100vw;max-width:100vw}}.slide-right-leave-active[data-v-1c6914a9],.slide-right-enter-active[data-v-1c6914a9]{transition-duration:var(--animation-quick);transition-property:max-width,min-width}.slide-right-enter-to[data-v-1c6914a9],.slide-right-leave[data-v-1c6914a9]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1c6914a9],.slide-right-leave-to[data-v-1c6914a9]{min-width:0 !important;max-width:0 !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebar.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCYD,8BACC,YAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,iBAAA,CACA,eAAA,CACA,qBAAA,CACA,aAAA,CACA,UAAA,CACA,eA5BmB,CA6BnB,eA5BmB,CA6BnB,WAAA,CACA,yCAAA,CACA,uCAAA,CAGC,sEACC,iBAAA,CACA,WAAA,CACA,OA1BmB,CA2BnB,SA3BmB,CA4BnB,UCjBc,CDkBd,WClBc,CDmBd,UCDc,CDEd,kBAAA,CACA,qOAGC,SCLW,CDMX,sCCFsB,CDQvB,qHACC,kBAAA,CAEA,iJACC,SAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,iBAAA,CACA,aAAA,CAED,+IACC,cAAA,CACA,aAAA,CACA,WAAA,CACA,kBAAA,CACA,gBAlE2B,CAoE3B,yLACC,kBAAA,CAGD,qLACC,SAAA,CACA,iBAAA,CACA,OAAA,CACA,UAAA,CACA,KAAA,CAED,yKACC,OAxEgB,CAyEhB,UAAA,CACA,8BAAA,CACA,iBAAA,CASH,kHACC,iBAAA,CACA,OAtFkB,CAuFlB,UAAA,CAGD,kHACC,kBAAA,CAEA,4JACC,kBAAA,CAMH,4EACC,YAAA,CACA,qBAAA,CAID,0DACC,UAAA,CACA,YAAA,CACA,gBAAA,CACA,2BAAA,CACA,0BAAA,CACA,uBAAA,CACA,uEACC,cAAA,CAKF,wDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,kBAAA,CACA,yBAAA,CACA,SAAA,CAGA,8EACC,gBAAA,CAGD,wNAEC,eAAA,CACA,kBAAA,CAGD,6GACC,eAAA,CAGD,8FACC,YAAA,CACA,WCtIa,CDuIb,UCvIa,CDwIb,sBAAA,CACA,aAAA,CAEA,wHAEC,eAAA,CACA,uJACC,eAAA,CACA,8CAAA,CAMH,4FACC,aAAA,CACA,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAEA,oIACC,YAAA,CACA,kBAAA,CACA,eChKY,CDmKZ,kKACC,SAAA,CACA,eAAA,CACA,cAAA,CACA,gBAtLa,CAyLb,6KACC,cAAA,CACA,yBAAA,CACA,QAAA,CAIF,uKACC,YAAA,CACA,aAAA,CACA,kBAAA,CAEA,gNACC,aAAA,CACA,QAAA,CACA,WA3Mc,CA4Md,cAAA,CACA,gBAAA,CAKF,8JACC,WCjMW,CDkMX,UClMW,CDmMX,kBAAA,CACA,sCC7KoB,CD8KpB,eAAA,CAKF,mPAEC,eAAA,CACA,UAAA,CACA,QAAA,CACA,kBAAA,CACA,sBAAA,CAID,yHACC,SAAA,CACA,UCpMY,CDqMZ,kCAAA,CAMH,+DACC,YAAA,CACA,kBAAA,CACA,aAAA,CAMH,0CACC,8BACC,WAAA,CACA,eAAA,CAAA,CAIF,sFAEC,0CAAA,CACA,uCAAA,CAGD,2EAEC,eA5QmB,CA6QnB,eA5QmB,CA+QpB,2EAEC,sBAAA,CACA,sBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n$sidebar-min-width: 300px;\n$sidebar-max-width: 500px;\n\n$desc-vertical-padding: 18px;\n$desc-vertical-padding-compact: 10px;\n$desc-input-padding: 7px;\n\n// name and subname\n$desc-name-height: 30px;\n$desc-subname-height: 22px;\n$desc-height: $desc-name-height + $desc-subname-height;\n\n$top-buttons-spacing: 6px;\n\n/*\n\tSidebar: to be used within #content\n\tapp-content will be shrinked properly\n*/\n.app-sidebar {\n\tz-index: 1500;\n\ttop: 0;\n\tright: 0;\n\tdisplay: flex;\n\toverflow-x: hidden;\n\toverflow-y: auto;\n\tflex-direction: column;\n\tflex-shrink: 0;\n\twidth: 27vw;\n\tmin-width: $sidebar-min-width;\n\tmax-width: $sidebar-max-width;\n\theight: 100%;\n\tborder-left: 1px solid var(--color-border);\n\tbackground: var(--color-main-background);\n\n\t.app-sidebar-header {\n\t\t> .app-sidebar__close {\n\t\t\tposition: absolute;\n\t\t\tz-index: 100;\n\t\t\ttop: $top-buttons-spacing;\n\t\t\tright: $top-buttons-spacing;\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_normal;\n\t\t\tborder-radius: math.div($clickable-area, 2);\n\t\t\t&:hover,\n\t\t\t&:active,\n\t\t\t&:focus {\n\t\t\t\topacity: $opacity_full;\n\t\t\t\tbackground-color: $action-background-hover;\n\t\t\t}\n\t\t}\n\n\t\t// Compact mode only affects a sidebar with a figure\n\t\t&--compact.app-sidebar-header--with-figure {\n\t\t\t.app-sidebar-header__info {\n\t\t\t\tflex-direction: row;\n\n\t\t\t\t.app-sidebar-header__figure {\n\t\t\t\t\tz-index: 2;\n\t\t\t\t\twidth: $desc-height + $desc-vertical-padding;\n\t\t\t\t\theight: $desc-height + $desc-vertical-padding;\n\t\t\t\t\tmargin: math.div($desc-vertical-padding, 2);\n\t\t\t\t\tborder-radius: 3px;\n\t\t\t\t\tflex: 0 0 auto;\n\t\t\t\t}\n\t\t\t\t.app-sidebar-header__desc {\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tpadding-right: 2 * $clickable-area + $top-buttons-spacing;\n\t\t\t\t\tpadding-top: $desc-vertical-padding-compact;\n\n\t\t\t\t\t&.app-sidebar-header__desc--without-actions {\n\t\t\t\t\t\tpadding-right: #{$clickable-area + $top-buttons-spacing};\n\t\t\t\t\t}\n\n\t\t\t\t\t.app-sidebar-header__tertiary-actions {\n\t\t\t\t\t\tz-index: 3; // above star\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: math.div($desc-vertical-padding, 2);\n\t\t\t\t\t\tleft: -1 * $clickable-area;\n\t\t\t\t\t\tgap: 0; // override gap\n\t\t\t\t\t}\n\t\t\t\t\t.app-sidebar-header__menu {\n\t\t\t\t\t\ttop: $top-buttons-spacing;\n\t\t\t\t\t\tright: $clickable-area + $top-buttons-spacing; // left of the close button\n\t\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// sidebar without figure\n\t\t&:not(.app-sidebar-header--with-figure) {\n\t\t\t// align the menu with the close button\n\t\t\t.app-sidebar-header__menu {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: $top-buttons-spacing;\n\t\t\t\tright: $top-buttons-spacing + $clickable-area;\n\t\t\t}\n\t\t\t// increase the padding to not overlap the menu\n\t\t\t.app-sidebar-header__desc {\n\t\t\t\tpadding-right: #{$clickable-area * 2 + $top-buttons-spacing};\n\n\t\t\t\t&.app-sidebar-header__desc--without-actions {\n\t\t\t\t\tpadding-right: #{$clickable-area + $top-buttons-spacing};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// the container with the figure and the description\n\t\t.app-sidebar-header__info {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t// header background\n\t\t&__figure {\n\t\t\twidth: 100%;\n\t\t\theight: 250px;\n\t\t\tmax-height: 250px;\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-position: center;\n\t\t\tbackground-size: contain;\n\t\t\t&--with-action {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\t\t}\n\n\t\t// description\n\t\t&__desc {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\tpadding: #{$desc-vertical-padding} #{$top-buttons-spacing} #{$desc-vertical-padding} #{math.div($desc-vertical-padding, 2)};\n\t\t\tgap: 0 4px;\n\n\t\t\t// custom overrides\n\t\t\t&--with-tertiary-action {\n\t\t\t\tpadding-left: 6px;\n\t\t\t}\n\n\t\t\t&--editable .app-sidebar-header__mainname-form,\n\t\t\t&--with-subname--editable .app-sidebar-header__mainname-form {\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-bottom: -2px;\n\t\t\t}\n\n\t\t\t&--with-subname--editable .app-sidebar-header__subname {\n\t\t\t\tmargin-top: -2px;\n\t\t\t}\n\n\t\t\t.app-sidebar-header__tertiary-actions {\n\t\t\t\tdisplay: flex;\n\t\t\t\theight: $clickable-area;\n\t\t\t\twidth: $clickable-area;\n\t\t\t\tjustify-content: center;\n\t\t\t\tflex: 0 0 auto;\n\n\t\t\t\t.app-sidebar-header__star {\n\t\t\t\t\t// Override default Button component styles\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\t&:not([aria-pressed='true']):hover {\n\t\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// names\n\t\t\t.app-sidebar-header__name-container {\n\t\t\t\tflex: 1 1 auto;\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tjustify-content: center;\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t.app-sidebar-header__mainname-container {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tmin-height: $clickable-area;\n\n\t\t\t\t\t// main name\n\t\t\t\t\t.app-sidebar-header__mainname {\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\tmin-height: 30px;\n\t\t\t\t\t\tfont-size: 20px;\n\t\t\t\t\t\tline-height: $desc-name-height;\n\n\t\t\t\t\t\t// Needs 'deep' as the link is generated by the linkify directive\n\t\t\t\t\t\t&:deep(.linkified) {\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.app-sidebar-header__mainname-form {\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\t\talign-items: center;\n\n\t\t\t\t\t\tinput.app-sidebar-header__mainname-input {\n\t\t\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t\tpadding: $desc-input-padding;\n\t\t\t\t\t\t\tfont-size: 20px;\n\t\t\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// main menu\n\t\t\t\t\t.app-sidebar-header__menu {\n\t\t\t\t\t\theight: $clickable-area;\n\t\t\t\t\t\twidth: $clickable-area;\n\t\t\t\t\t\tborder-radius: math.div($clickable-area, 2);\n\t\t\t\t\t\tbackground-color: $action-background-hover;\n\t\t\t\t\t\tmargin-left: 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// shared between main and subname\n\t\t\t\t.app-sidebar-header__mainname,\n\t\t\t\t.app-sidebar-header__subname {\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t}\n\n\t\t\t\t// subname\n\t\t\t\t.app-sidebar-header__subname {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\topacity: $opacity_normal;\n\t\t\t\t\tfont-size: var(--default-font-size);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// sidebar description slot\n\t\t&__description {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmargin: 0 10px;\n\t\t}\n\t}\n}\n\n// Make the sidebar full-width on small screens\n@media only screen and (max-width: 768px) {\n\t.app-sidebar {\n\t\twidth: 100vw;\n\t\tmax-width: 100vw;\n\t}\n}\n\n.slide-right-leave-active,\n.slide-right-enter-active {\n\ttransition-duration: var(--animation-quick);\n\ttransition-property: max-width, min-width;\n}\n\n.slide-right-enter-to,\n.slide-right-leave {\n\tmin-width: $sidebar-min-width;\n\tmax-width: $sidebar-max-width;\n}\n\n.slide-right-enter,\n.slide-right-leave-to {\n\tmin-width: 0 !important;\n\tmax-width: 0 !important;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},2887:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-header__description button,.app-sidebar-header__description .button,.app-sidebar-header__description input[type=button],.app-sidebar-header__description input[type=submit],.app-sidebar-header__description input[type=reset]{padding:6px 22px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebar.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCHA,4OAIC,gBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// ! slots specific designs, cannot be scoped\n// if any button inside the description slot, increase visual padding\n.app-sidebar-header__description {\n\tbutton, .button,\n\tinput[type='button'],\n\tinput[type='submit'],\n\tinput[type='reset'] {\n\t\tpadding: 6px 22px;\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},5385:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-3946530b]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-tabs[data-v-3946530b]{display:flex;flex-direction:column;min-height:0;flex:1 1 100%}.app-sidebar-tabs__nav[data-v-3946530b]{display:flex;justify-content:stretch;margin-top:10px;padding:0 4px}.app-sidebar-tabs__tab[data-v-3946530b]{flex:1 1}.app-sidebar-tabs__tab.active[data-v-3946530b]{color:var(--color-primary-element)}.app-sidebar-tabs__tab-caption[data-v-3946530b]{flex:0 1 100%;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:center}.app-sidebar-tabs__tab-icon[data-v-3946530b]{display:flex;align-items:center;justify-content:center;background-size:20px}.app-sidebar-tabs__tab[data-v-3946530b] .checkbox-radio-switch__label{max-width:unset}.app-sidebar-tabs__content[data-v-3946530b]{position:relative;min-height:0;height:100%}.app-sidebar-tabs__content--multiple[data-v-3946530b]>:not(section){display:none}[data-v-3946530b] .checkbox-radio-switch--button-variant.checkbox-radio-switch{border:unset}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebarTabs.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,qBAAA,CACA,YAAA,CACA,aAAA,CAEA,wCACC,YAAA,CACA,uBAAA,CACA,eAAA,CACA,aAAA,CAGD,wCACC,QAAA,CACA,+CACC,kCAAA,CAGD,gDACC,aAAA,CACA,UAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CAGD,6CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,oBAAA,CAID,sEACC,eAAA,CAIF,4CACC,iBAAA,CAEA,YAAA,CACA,WAAA,CAGA,oEACC,YAAA,CAKH,+EACC,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.app-sidebar-tabs {\n\tdisplay: flex;\n\tflex-direction: column;\n\tmin-height: 0;\n\tflex: 1 1 100%;\n\n\t&__nav {\n\t\tdisplay: flex;\n\t\tjustify-content: stretch;\n\t\tmargin-top: 10px;\n\t\tpadding: 0 4px;\n\t}\n\n\t&__tab {\n\t\tflex: 1 1;\n\t\t&.active {\n\t\t\tcolor: var(--color-primary-element);\n\t\t}\n\n\t\t&-caption {\n\t\t\tflex: 0 1 100%;\n\t\t\twidth: 100%;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\ttext-overflow: ellipsis;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t&-icon {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: center;\n\t\t\tbackground-size: 20px;\n\t\t}\n\n\t\t// Override max-width to use all available space\n\t\t:deep(.checkbox-radio-switch__label) {\n\t\t\tmax-width: unset;\n\t\t}\n\t}\n\n\t&__content {\n\t\tposition: relative;\n\t\t// take full available height\n\t\tmin-height: 0;\n\t\theight: 100%;\n\t\t// force the use of the tab component if more than one tab\n\t\t// you can just put raw content if you don't use tabs\n\t\t&--multiple > :not(section) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n:deep(.checkbox-radio-switch--button-variant.checkbox-radio-switch) {\n\tborder: unset;\n}\n"],sourceRoot:""}]);const s=r},7294:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},6267:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-51081647]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-radio-switch[data-v-51081647]{display:flex}.checkbox-radio-switch__input[data-v-51081647]{position:absolute;z-index:-1;opacity:0 !important;width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch__input:focus-visible+label[data-v-51081647]{outline:2px solid var(--color-primary-element) !important}.checkbox-radio-switch__label[data-v-51081647]{display:flex;align-items:center;flex-direction:row;gap:4px;user-select:none;min-height:44px;border-radius:44px;padding:4px 14px;width:100%;max-width:fit-content}.checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch__label *[data-v-51081647]{cursor:pointer}.checkbox-radio-switch__label-text[data-v-51081647]:empty{display:none}.checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element);width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch--disabled .checkbox-radio-switch__label[data-v-51081647]{opacity:.5}.checkbox-radio-switch--disabled .checkbox-radio-switch__label .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-background-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-primary-element-light-hover)}.checkbox-radio-switch-checkbox .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch-switch .checkbox-radio-switch__label[data-v-51081647]{padding:4px 10px}.checkbox-radio-switch-switch:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-text-maxcontrast)}.checkbox-radio-switch-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant.checkbox-radio-switch[data-v-51081647]{border:2px solid var(--color-border-maxcontrast);overflow:hidden}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked[data-v-51081647]{font-weight:bold}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked label[data-v-51081647]{background-color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__label-text[data-v-51081647]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.checkbox-radio-switch--button-variant:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__icon[data-v-51081647]:empty{display:none}.checkbox-radio-switch--button-variant[data-v-51081647]:not(.checkbox-radio-switch--button-variant-v-grouped):not(.checkbox-radio-switch--button-variant-h-grouped),.checkbox-radio-switch--button-variant .checkbox-radio-switch__label[data-v-51081647]{border-radius:calc(var(--default-clickable-area)/2)}.checkbox-radio-switch--button-variant-v-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-basis:100%;max-width:unset}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:last-of-type{border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:last-of-type){border-bottom:0 !important}.checkbox-radio-switch--button-variant-v-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-bottom:2px}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:first-of-type){border-top:0 !important}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:last-of-type{border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:last-of-type){border-right:0 !important}.checkbox-radio-switch--button-variant-h-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-right:2px}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:first-of-type){border-left:0 !important}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label-text[data-v-51081647]{text-align:center}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-direction:column;justify-content:center;width:100%;margin:0;gap:0}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,wCACC,YAAA,CAEA,+CACC,iBAAA,CACA,UAAA,CACA,oBAAA,CACA,sBAAA,CACA,uBAAA,CAGD,mEACC,yDAAA,CAGD,+CACC,YAAA,CACA,kBAAA,CACA,kBAAA,CACA,OAAA,CACA,gBAAA,CACA,eCEe,CDDf,kBCCe,CAAA,gBAAA,CDEf,UAAA,CAEA,qBAAA,CAEA,gGACC,cAAA,CAGD,0DAEC,YAAA,CAIF,gDACC,kCAAA,CACA,sBAAA,CACA,uBAAA,CAGD,gFACC,UCNiB,CDOjB,+GACC,4BAAA,CAIF,2SAEC,8CAAA,CAGD,6PAEC,yDAAA,CAIA,4JACC,gBAAA,CAKF,mHACC,mCAAA,CAID,6IACC,wCAAA,CAOD,8EACC,gDAAA,CACA,eAAA,CAEA,uFACC,gBAAA,CAEA,6FACC,mDAAA,CAMH,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA,CACA,UAAA,CAID,4HACC,4BAAA,CAID,2FACC,YAAA,CAGD,0PAEC,mDArCe,CAyChB,gGACC,eAAA,CAEA,eAAA,CAGA,gFACC,kEA9CoB,CA+CpB,mEA/CoB,CAiDrB,+EACC,qEAlDoB,CAmDpB,sEAnDoB,CAuDrB,qFACC,0BAAA,CACA,mHACC,iBAAA,CAGF,sFACC,uBAAA,CAMD,gFACC,kEArEoB,CAsEpB,qEAtEoB,CAwErB,+EACC,mEAzEoB,CA0EpB,sEA1EoB,CA8ErB,qFACC,yBAAA,CACA,mHACC,gBAAA,CAGF,sFACC,wBAAA,CAGF,qGACC,iBAAA,CAED,gGACC,qBAAA,CACA,sBAAA,CACA,UAAA,CACA,QAAA,CACA,KAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.checkbox-radio-switch {\n\tdisplay: flex;\n\n\t&__input {\n\t\tposition: absolute;\n\t\tz-index: -1;\n\t\topacity: 0 !important; // We need !important, or it gets overwritten by server style\n\t\twidth: var(--icon-size);\n\t\theight: var(--icon-size);\n\t}\n\n\t&__input:focus-visible + label {\n\t\toutline: 2px solid var(--color-primary-element) !important;\n\t}\n\n\t&__label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tflex-direction: row;\n\t\tgap: 4px;\n\t\tuser-select: none;\n\t\tmin-height: $clickable-area;\n\t\tborder-radius: $clickable-area;\n\t\tpadding: 4px $icon-margin;\n\t\t// Set to 100% to make text overflow work on button style\n\t\twidth: 100%;\n\t\t// but restrict to content so plain checkboxes / radio switches do not expand\n\t\tmax-width: fit-content;\n\n\t\t&, * {\n\t\t\tcursor: pointer;\n\t\t}\n\n\t\t&-text:empty {\n\t\t\t// hide text if empty to ensure checkbox outline is a circle instead of oval\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t&__icon > * {\n\t\tcolor: var(--color-primary-element);\n\t\twidth: var(--icon-size);\n\t\theight: var(--icon-size);\n\t}\n\n\t&--disabled &__label {\n\t\topacity: $opacity_disabled;\n\t\t.checkbox-radio-switch__icon > * {\n\t\t\tcolor: var(--color-main-text)\n\t\t}\n\t}\n\n\t&:not(&--disabled, &--checked):focus-within &__label,\n\t&:not(&--disabled, &--checked) &__label:hover {\n\t\tbackground-color: var(--color-background-hover);\n\t}\n\n\t&--checked:not(&--disabled):focus-within &__label,\n\t&--checked:not(&--disabled) &__label:hover {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&-checkbox, &-switch {\n\t\t.checkbox-radio-switch__label {\n\t\t\tpadding: 4px 10px; // we use 24x24px sized MDI icons for checkbox and radiobutton -> (44px - 24 px) / 2 = 10px\n\t\t}\n\t}\n\n\t// Switch specific rules\n\t&-switch:not(&--checked) &__icon > * {\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t// If switch is checked AND disabled, use the fade primary colour\n\t&-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked &__icon > * {\n\t\tcolor: var(--color-primary-element-light);\n\t}\n\n\t$border-radius: calc(var(--default-clickable-area) / 2);\n\t// keep inner border width in mind\n\t$border-radius-outer: calc($border-radius + 2px);\n\n\t&--button-variant.checkbox-radio-switch {\n\t\tborder: 2px solid var(--color-border-maxcontrast);\n\t\toverflow: hidden;\n\n\t\t&--checked {\n\t\t\tfont-weight: bold;\n\n\t\t\tlabel {\n\t\t\t\tbackground-color: var(--color-primary-element-light);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Text overflow of button style\n\t&--button-variant &__label-text {\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t\twhite-space: nowrap;\n\t\twidth: 100%;\n\t}\n\n\t// Set icon color for non active elements to main text color\n\t&--button-variant:not(&--checked) &__icon > * {\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t// Hide icon container if empty to remove virtual padding\n\t&--button-variant &__icon:empty {\n\t\tdisplay: none;\n\t}\n\n\t&--button-variant:not(&--button-variant-v-grouped):not(&--button-variant-h-grouped),\n\t&--button-variant &__label {\n\t\tborder-radius: $border-radius;\n\t}\n\n\t/* Special rules for vertical button groups */\n\t&--button-variant-v-grouped &__label {\n\t\tflex-basis: 100%;\n\t\t// vertically grouped buttons should all have the same width\n\t\tmax-width: unset;\n\t}\n\t&--button-variant-v-grouped {\n\t\t&:first-of-type {\n\t\t\tborder-top-left-radius: $border-radius-outer;\n\t\t\tborder-top-right-radius: $border-radius-outer;\n\t\t}\n\t\t&:last-of-type {\n\t\t\tborder-bottom-left-radius: $border-radius-outer;\n\t\t\tborder-bottom-right-radius: $border-radius-outer;\n\t\t}\n\n\t\t// remove borders between elements\n\t\t&:not(:last-of-type) {\n\t\t\tborder-bottom: 0!important;\n\t\t\t.checkbox-radio-switch__label {\n\t\t\t\tmargin-bottom: 2px;\n\t\t\t}\n\t\t}\n\t\t&:not(:first-of-type) {\n\t\t\tborder-top: 0!important;\n\t\t}\n\t}\n\n\t/* Special rules for horizontal button groups */\n\t&--button-variant-h-grouped {\n\t\t&:first-of-type {\n\t\t\tborder-top-left-radius: $border-radius-outer;\n\t\t\tborder-bottom-left-radius: $border-radius-outer;\n\t\t}\n\t\t&:last-of-type {\n\t\t\tborder-top-right-radius: $border-radius-outer;\n\t\t\tborder-bottom-right-radius: $border-radius-outer;\n\t\t}\n\n\t\t// remove borders between elements\n\t\t&:not(:last-of-type) {\n\t\t\tborder-right: 0!important;\n\t\t\t.checkbox-radio-switch__label {\n\t\t\t\tmargin-right: 2px;\n\t\t\t}\n\t\t}\n\t\t&:not(:first-of-type) {\n\t\t\tborder-left: 0!important;\n\t\t}\n\t}\n\t&--button-variant-h-grouped &__label-text {\n\t\ttext-align: center;\n\t}\n\t&--button-variant-h-grouped &__label {\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t\tmargin: 0;\n\t\tgap: 0;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},5886:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-048f418c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.empty-content[data-v-048f418c]{display:flex;align-items:center;flex-direction:column;margin-top:20vh}.modal-wrapper .empty-content[data-v-048f418c]{margin-top:5vh;margin-bottom:5vh}.empty-content__icon[data-v-048f418c]{display:flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-repeat:no-repeat;background-position:center;background-size:64px}.empty-content__icon[data-v-048f418c] svg{width:64px;height:64px;max-width:64px;max-height:64px}.empty-content__name[data-v-048f418c]{margin-bottom:10px;text-align:center}.empty-content__action[data-v-048f418c]{margin-top:8px}.modal-wrapper .empty-content__action[data-v-048f418c]{margin-top:20px;display:flex}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcEmptyContent/NcEmptyContent.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,gCACC,YAAA,CACA,kBAAA,CACA,qBAAA,CACA,eAAA,CAEA,+CACC,cAAA,CACA,iBAAA,CAGD,sCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kBAAA,CACA,UAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,0CACC,UAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CAIF,sCACC,kBAAA,CACA,iBAAA,CAGD,wCACC,cAAA,CAEA,uDACC,eAAA,CACA,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.empty-content {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: column;\n\tmargin-top: 20vh;\n\n\t.modal-wrapper & {\n\t\tmargin-top: 5vh;\n\t\tmargin-bottom: 5vh;\n\t}\n\n\t&__icon {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 64px;\n\t\theight: 64px;\n\t\tmargin: 0 auto 15px;\n\t\topacity: .4;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center;\n\t\tbackground-size: 64px;\n\n\t\t:deep(svg) {\n\t\t\twidth: 64px;\n\t\t\theight: 64px;\n\t\t\tmax-width: 64px;\n\t\t\tmax-height: 64px;\n\t\t}\n\t}\n\n\t&__name {\n\t\tmargin-bottom: 10px;\n\t\ttext-align: center;\n\t}\n\n\t&__action {\n\t\tmargin-top: 8px;\n\n\t\t.modal-wrapper & {\n\t\t\tmargin-top: 20px;\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const s=r},8502:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.loading-icon svg{\n\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\n}\n"],sourceRoot:""}]);const s=r},1625:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function o(e){for(var o=-1,a=0;a{"use strict";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{"use strict";e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},2112:()=>{},2102:()=>{},3768:()=>{},9258:()=>{},9280:()=>{},2405:()=>{},1900:(e,t,o)=>{"use strict";function a(e,t,o,a,n,i,r,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=o,l._compiled=!0),a&&(l.functional=!0),i&&(l._scopeId="data-v-"+i),r?(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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},l._ssrRegister=c):n&&(c=s?function(){n.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:n),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(e,t){return c.call(t),u(e,t)}}else{var d=l.beforeCreate;l.beforeCreate=d?[].concat(d,c):[c]}return{exports:e,options:l}}o.d(t,{Z:()=>a})},7931:e=>{"use strict";e.exports=o(23955)},9454:e=>{"use strict";e.exports=o(73045)},4505:e=>{"use strict";e.exports=o(15303)},2734:e=>{"use strict";e.exports=o(20144)},1441:e=>{"use strict";e.exports=o(89115)}},t={};function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;var i={};return(()=>{"use strict";n.r(i),n.d(i,{default:()=>W});var e=n(3329);const t={name:"NcAppSidebarTabs",components:{NcCheckboxRadioSwitch:n(998).default,NcVNodes:e.default},provide:function(){var e=this;return{registerTab:this.registerTab,unregisterTab:this.unregisterTab,getActiveTab:function(){return e.activeTab}}},props:{active:{type:String,default:""}},emits:["update:active"],data:function(){return{tabs:[],activeTab:""}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(t){return t.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()}},methods:{setActive:function(e){this.activeTab=e,this.$emit("update:active",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&this.setActive(this.tabs[this.currentTabIndex-1].id),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex0?this.tabs[0].id:""},registerTab:function(e){this.tabs.push(e),this.tabs.sort((function(e,t){return e.order===t.order?OC.Util.naturalSortCompare(e.name,t.name):e.order-t.order})),this.updateActive()},unregisterTab:function(e){var t=this.tabs.findIndex((function(t){return t.id===e}));-1!==t&&this.tabs.splice(t,1),this.activeTab===e&&this.updateActive()}}};var a=n(3379),r=n.n(a),s=n(7795),c=n.n(s),l=n(569),u=n.n(l),d=n(3565),m=n.n(d),p=n(9216),h=n.n(p),g=n(4589),v=n.n(g),f=n(5385),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,"head"),A.domAPI=c(),A.insertStyleElement=h(),r()(f.Z,A),f.Z&&f.Z.locals&&f.Z.locals;var y=n(1900);const k=(0,y.Z)(t,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"app-sidebar-tabs"},[e.hasMultipleTabs?t("div",{staticClass:"app-sidebar-tabs__nav",attrs:{role:"tablist"},on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPreviousTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNextTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusActiveTabContent.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"home",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"end",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments))},function(t){return t.type.indexOf("key")||33===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments)):null},function(t){return t.type.indexOf("key")||34===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments)):null}]}},e._l(e.tabs,(function(o){return t("NcCheckboxRadioSwitch",{key:o.id,staticClass:"app-sidebar-tabs__tab",class:{active:o.id===e.activeTab},attrs:{"aria-controls":"tab-".concat(o.id),"aria-selected":e.activeTab===o.id,"button-variant":!0,checked:e.activeTab===o.id,"data-id":o.id,tabindex:e.activeTab===o.id?0:-1,"button-variant-grouped":"horizontal",role:"tab",type:"button"},on:{"update:checked":function(t){return e.setActive(o.id)}},scopedSlots:e._u([{key:"icon",fn:function(){return[t("NcVNodes",{attrs:{vnodes:o.renderIcon()}},[t("span",{staticClass:"app-sidebar-tabs__tab-icon",class:o.icon})])]},proxy:!0}],null,!0)},[t("span",{staticClass:"app-sidebar-tabs__tab-caption"},[e._v("\n\t\t\t\t"+e._s(o.name)+"\n\t\t\t")])])})),1):e._e(),e._v(" "),t("div",{staticClass:"app-sidebar-tabs__content",class:{"app-sidebar-tabs__content--multiple":e.hasMultipleTabs}},[e._t("default")],2)])}),[],!1,null,"3946530b",null).exports;var b=n(7664),C=n(6492),w=n(3089),S=n(9462),P=n(8167),N=n(640),x=n(336),j=n(932);const O=o(39429);var E=n.n(O);const _=o(82675);var B=n.n(_);const z=o(4777);var F=n.n(z);const T=o(74603);var M=n.n(T);const L=o(99495),D={name:"NcAppSidebar",components:{NcActions:b.default,NcAppSidebarTabs:k,ArrowRight:E(),NcButton:w.default,NcLoadingIcon:C.default,NcEmptyContent:S.default,Close:B(),Star:F(),StarOutline:M()},directives:{focus:P.default,linkify:N.default,ClickOutside:L.vOnClickOutside,Tooltip:x.default},props:{active:{type:String,default:""},name:{type:String,default:"",required:!0},nameEditable:{type:Boolean,default:!1},namePlaceholder:{type:String,default:""},subname:{type:String,default:""},subtitle:{type:String,default:""},background:{type:String,default:""},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyName:{type:Boolean,default:!1},title:{type:String,default:""}},emits:["close","closing","closed","opening","opened","figure-click","update:starred","update:nameEditable","update:name","update:active","submit-name","dismiss-editing"],data:function(){return{changeNameTranslated:(0,j.t)("Change name"),closeTranslated:(0,j.t)("Close sidebar"),favoriteTranslated:(0,j.t)("Favorite"),isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners["figure-click"]}},watch:{starred:function(){this.isStarred=this.starred}},beforeDestroy:function(){this.$emit("closed")},methods:{onBeforeEnter:function(e){this.$emit("opening",e)},onAfterEnter:function(e){this.$emit("opened",e)},onBeforeLeave:function(e){this.$emit("closing",e)},onAfterLeave:function(e){this.$emit("closed",e)},closeSidebar:function(e){this.$emit("close",e)},onFigureClick:function(e){this.$emit("figure-click",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit("update:starred",this.isStarred)},editName:function(){var e=this;this.$emit("update:nameEditable",!0),this.nameEditable&&this.$nextTick((function(){return e.$refs.nameInput.focus()}))},onNameInput:function(e){this.$emit("update:name",e.target.value)},onSubmitName:function(e){this.$emit("update:nameEditable",!1),this.$emit("submit-name",e)},onDismissEditing:function(){this.$emit("update:nameEditable",!1),this.$emit("dismiss-editing")},onUpdateActive:function(e){this.$emit("update:active",e)}}};var G=n(2365),U={};U.styleTagTransform=v(),U.setAttributes=m(),U.insert=u().bind(null,"head"),U.domAPI=c(),U.insertStyleElement=h(),r()(G.Z,U),G.Z&&G.Z.locals&&G.Z.locals;var R=n(2887),I={};I.styleTagTransform=v(),I.setAttributes=m(),I.insert=u().bind(null,"head"),I.domAPI=c(),I.insertStyleElement=h(),r()(R.Z,I),R.Z&&R.Z.locals&&R.Z.locals;var q=n(2112),$=n.n(q),H=(0,y.Z)(D,(function(){var e=this,t=e._self._c;return t("transition",{attrs:{appear:"",name:"slide-right"},on:{"before-enter":e.onBeforeEnter,"after-enter":e.onAfterEnter,"before-leave":e.onBeforeLeave,"after-leave":e.onAfterLeave}},[t("aside",{staticClass:"app-sidebar",attrs:{id:"app-sidebar-vue"}},[t("header",{staticClass:"app-sidebar-header",class:{"app-sidebar-header--with-figure":e.hasFigure,"app-sidebar-header--compact":e.compact}},[t("div",{staticClass:"app-sidebar-header__info"},[e.hasFigure&&!e.empty?t("div",{staticClass:"app-sidebar-header__figure",class:{"app-sidebar-header__figure--with-action":e.hasFigureClickListener},style:{backgroundImage:"url(".concat(e.background,")")},attrs:{tabindex:"0"},on:{click:e.onFigureClick,keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.onFigureClick.apply(null,arguments)}}},[e._t("header")],2):e._e(),e._v(" "),e.empty?e._e():t("div",{staticClass:"app-sidebar-header__desc",class:{"app-sidebar-header__desc--with-tertiary-action":e.canStar||e.$slots["tertiary-actions"],"app-sidebar-header__desc--editable":e.nameEditable&&!e.subname,"app-sidebar-header__desc--with-subname--editable":e.nameEditable&&e.subname,"app-sidebar-header__desc--without-actions":!e.$slots["secondary-actions"]}},[e.canStar||e.$slots["tertiary-actions"]?t("div",{staticClass:"app-sidebar-header__tertiary-actions"},[e._t("tertiary-actions",(function(){return[e.canStar?t("NcButton",{staticClass:"app-sidebar-header__star",attrs:{"aria-label":e.favoriteTranslated,pressed:e.isStarred,type:"secondary"},on:{click:function(t){return t.preventDefault(),e.toggleStarred.apply(null,arguments)}},scopedSlots:e._u([{key:"icon",fn:function(){return[e.starLoading?t("NcLoadingIcon"):e.isStarred?t("Star",{attrs:{size:20}}):t("StarOutline",{attrs:{size:20}})]},proxy:!0}],null,!1,2575459756)}):e._e()]}))],2):e._e(),e._v(" "),t("div",{staticClass:"app-sidebar-header__name-container"},[t("div",{staticClass:"app-sidebar-header__mainname-container"},[t("h2",{directives:[{name:"show",rawName:"v-show",value:!e.nameEditable,expression:"!nameEditable"},{name:"linkify",rawName:"v-linkify",value:{text:e.name,linkify:e.linkifyName},expression:"{text: name, linkify: linkifyName}"}],staticClass:"app-sidebar-header__mainname",attrs:{"aria-label":e.title,title:e.title,tabindex:e.nameEditable?0:void 0},on:{click:function(t){return t.target!==t.currentTarget?null:e.editName.apply(null,arguments)}}},[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.name)+"\n\t\t\t\t\t\t\t")]),e._v(" "),e.nameEditable?[t("form",{directives:[{name:"click-outside",rawName:"v-click-outside",value:function(){return e.onSubmitName()},expression:"() => onSubmitName()"}],staticClass:"app-sidebar-header__mainname-form",on:{submit:function(t){return t.preventDefault(),e.onSubmitName.apply(null,arguments)}}},[t("input",{directives:[{name:"focus",rawName:"v-focus"}],ref:"nameInput",staticClass:"app-sidebar-header__mainname-input",attrs:{type:"text",placeholder:e.namePlaceholder},domProps:{value:e.name},on:{keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:e.onDismissEditing.apply(null,arguments)},input:e.onNameInput}}),e._v(" "),t("NcButton",{attrs:{type:"tertiary-no-background","aria-label":e.changeNameTranslated,"native-type":"submit"},scopedSlots:e._u([{key:"icon",fn:function(){return[t("ArrowRight",{attrs:{size:20}})]},proxy:!0}],null,!1,1252225425)})],1)]:e._e(),e._v(" "),e.$slots["secondary-actions"]?t("NcActions",{staticClass:"app-sidebar-header__menu",attrs:{"force-menu":e.forceMenu}},[e._t("secondary-actions")],2):e._e()],2),e._v(" "),""!==e.subname.trim()?t("p",{staticClass:"app-sidebar-header__subname",attrs:{"aria-label":e.subtitle,title:e.subtitle}},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.subname)+"\n\t\t\t\t\t\t")]):e._e()])])]),e._v(" "),t("NcButton",{staticClass:"app-sidebar__close",attrs:{title:e.closeTranslated,"aria-label":e.closeTranslated,type:"tertiary"},on:{click:function(t){return t.preventDefault(),e.closeSidebar.apply(null,arguments)}},scopedSlots:e._u([{key:"icon",fn:function(){return[t("Close",{attrs:{size:20}})]},proxy:!0}])}),e._v(" "),e.$slots.description&&!e.empty?t("div",{staticClass:"app-sidebar-header__description"},[e._t("description")],2):e._e()],1),e._v(" "),t("NcAppSidebarTabs",{directives:[{name:"show",rawName:"v-show",value:!e.loading,expression:"!loading"}],ref:"tabs",attrs:{active:e.active},on:{"update:active":e.onUpdateActive}},[e._t("default")],2),e._v(" "),e.loading?t("NcEmptyContent",{scopedSlots:e._u([{key:"icon",fn:function(){return[t("NcLoadingIcon",{attrs:{size:64}})]},proxy:!0}],null,!1,826850984)}):e._e()],1)])}),[],!1,null,"1c6914a9",null);"function"==typeof $()&&$()(H);const W=H.exports})(),i})()))},62574:function(e){!function(t,o){e.exports=o()}(self,(()=>(()=>{"use strict";var e={4909:(e,t,o)=>{o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-4c850128]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar__tab[data-v-4c850128]{display:none;padding:10px;min-height:100%;max-height:100%;height:100%;overflow:auto}.app-sidebar__tab[data-v-4c850128]:focus{border-color:var(--color-primary-element);box-shadow:0 0 .2em var(--color-primary-element);outline:0}.app-sidebar__tab--active[data-v-4c850128]{display:block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebarTab/NcAppSidebarTab.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,YAAA,CACA,eAAA,CACA,eAAA,CACA,WAAA,CACA,aAAA,CAEA,yCACC,yCAAA,CACA,gDAAA,CACA,SAAA,CAGD,2CACC,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.app-sidebar__tab {\n\tdisplay: none;\n\tpadding: 10px;\n\tmin-height: 100%; // fill available height\n\tmax-height: 100%; // scroll inside\n\theight: 100%;\n\toverflow: auto;\n\n\t&:focus {\n\t\tborder-color: var(--color-primary-element);\n\t\tbox-shadow: 0 0 0.2em var(--color-primary-element);\n\t\toutline: 0;\n\t}\n\n\t&--active {\n\t\tdisplay: block;\n\t}\n}\n"],sourceRoot:""}]);const s=r},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},7537:e=>{e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{var t=[];function o(e){for(var o=-1,a=0;a{var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function o(a){var n=t[a];if(void 0!==n)return n.exports;var i=t[a]={id:a,exports:{}};return e[a](i,i.exports,o),i.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var a={};return(()=>{o.r(a),o.d(a,{default:()=>A});const e={name:"NcAppSidebarTab",inject:["registerTab","unregisterTab","getActiveTab"],props:{id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,default:""},order:{type:Number,default:0}},emits:["bottom-reached","scroll"],expose:["id","name","icon","order","renderIcon"],computed:{isActive:function(){return this.getActiveTab()===this.id}},created:function(){this.registerTab(this)},beforeDestroy:function(){this.unregisterTab(this.id)},methods:{onScroll:function(e){this.$el.scrollHeight-this.$el.scrollTop===this.$el.clientHeight&&this.$emit("bottom-reached",e),this.$emit("scroll",e)},renderIcon:function(){var e,t;return null===(e=(t=this.$scopedSlots).icon)||void 0===e?void 0:e.call(t)}}};var t=o(3379),n=o.n(t),i=o(7795),r=o.n(i),s=o(569),c=o.n(s),l=o(3565),u=o.n(l),d=o(9216),m=o.n(d),p=o(4589),h=o.n(p),g=o(4909),v={};v.styleTagTransform=h(),v.setAttributes=u(),v.insert=c().bind(null,"head"),v.domAPI=r(),v.insertStyleElement=m(),n()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var f=function(e,t,o,a,n,i,r,s){var c="function"==typeof e?e.options:e;return t&&(c.render=t,c.staticRenderFns=[],c._compiled=!0),i&&(c._scopeId="data-v-"+i),{exports:e,options:c}}(e,(function(){var e=this,t=e._self._c;return t("section",{staticClass:"app-sidebar__tab",class:{"app-sidebar__tab--active":e.isActive},attrs:{id:"tab-".concat(e.id),"aria-hidden":!e.isActive,"aria-labelledby":e.id,tabindex:"0",role:"tabpanel"},on:{scroll:e.onScroll}},[t("h3",{staticClass:"hidden-visually"},[e._v("\n\t\t"+e._s(e.name)+"\n\t")]),e._v(" "),e._t("default")],2)}),0,0,0,"4c850128");const A=f.exports})(),a})()))},11677:function(e,t,o){var a=o(25108);!function(t,o){e.exports=o()}(self,(()=>(()=>{var e={5166:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcActionLink",mixins:[o(9156).Z],props:{href:{type:String,default:"#",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith("#")||e.startsWith("/")}}},download:{type:String,default:null},target:{type:String,default:"_self",validator:function(e){return e&&(!e.startsWith("_")||["_blank","_self","_parent","_top"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(4402),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9158),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"action"},[t("a",{staticClass:"action-link focusable",attrs:{download:e.download,href:e.href,"aria-label":e.ariaLabel,target:e.target,title:e.title,rel:"nofollow noreferrer noopener",role:"menuitem"},on:{click:e.onClick}},[e._t("icon",(function(){return[t("span",{staticClass:"action-link__icon",class:[e.isIconUrl?"action-link__icon--url":e.icon],style:{backgroundImage:e.isIconUrl?"url(".concat(e.icon,")"):null},attrs:{"aria-hidden":e.ariaHidden}})]})),e._v(" "),e.name?t("p",[t("strong",{staticClass:"action-link__name"},[e._v("\n\t\t\t\t"+e._s(e.name)+"\n\t\t\t")]),e._v(" "),t("br"),e._v(" "),t("span",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t("p",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}}):t("span",{staticClass:"action-link__text"},[e._v(e._s(e.text))]),e._v(" "),e._e()],2)])}),[],!1,null,"df184e4e",null);"function"==typeof k()&&k()(b);const C=b.exports},7664:(e,t,o)=>{"use strict";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),c=o.n(s),l=o(1441),u=o.n(l);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return"NcActionLink"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(c().util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,c,l,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||A,k=t.forceName?A:"",b=null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||b||(b=A),e("NcButton",{class:["action-item action-item--single",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{"aria-label":y,title:b},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?"secondary":"tertiary"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e("template",{slot:"icon"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[r]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),l=o.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[l.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[r(l)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),b=o(7795),C=o.n(b),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),_=o(9546),B={};B.styleTagTransform=E(),B.setAttributes=N(),B.insert=S().bind(null,"head"),B.domAPI=C(),B.insertStyleElement=j(),k()(_.Z,B),_.Z&&_.Z.locals&&_.Z.locals;var z=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,"head"),F.domAPI=C(),F.insertStyleElement=j(),k()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=o(1900),M=o(5727),L=o.n(M),D=(0,T.Z)(A,void 0,void 0,!1,null,"55038265",null);"function"==typeof L()&&L()(D);const G=D.exports},2158:(e,t,n)=>{"use strict";n.d(t,{default:()=>W});var i=n(7664),r=n(5166),s=n(3089),c=n(6492),l=n(9319),u=n(1137),d=n(932),m=n(768),p=n.n(m),h=n(1441),g=n.n(h),v=n(3607),f=n(542);const A=o(62556);var y=n(4262);const k=o(99495);function b(e){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b(e)}function C(){C=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==b(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function w(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function S(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){w(i,a,n,r,s,"next",e)}function s(e){w(i,a,n,r,s,"throw",e)}r(void 0)}))}}var P=(0,A.getBuilder)("nextcloud").persist().build();function N(e,t){e&&P.setItem("user-has-avatar."+e,t)}const x={name:"NcAvatar",directives:{ClickOutside:k.vOnClickOutside},components:{DotsHorizontal:g(),NcActions:i.default,NcActionLink:r.default,NcButton:s.default,NcLoadingIcon:c.default},mixins:[u.iQ],props:{url:{type:String,default:void 0},iconClass:{type:String,default:void 0},user:{type:String,default:void 0},showUserStatus:{type:Boolean,default:!0},showUserStatusCompact:{type:Boolean,default:!0},preloadedUserStatus:{type:Object,default:void 0},isGuest:{type:Boolean,default:!1},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},disableMenu:{type:Boolean,default:!1},tooltipMessage:{type:String,default:null},isNoUser:{type:Boolean,default:!1},menuContainer:{type:[String,Object,Element,Boolean],default:"body"}},data:function(){return{avatarUrlLoaded:null,avatarSrcSetLoaded:null,userDoesNotExist:!1,isAvatarLoaded:!1,isMenuLoaded:!1,contactsMenuLoading:!1,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{avatarAriaLabel:function(){var e,t;if(this.hasMenu)return this.hasStatus&&this.showUserStatus&&this.showUserStatusCompact?(0,d.t)("Avatar of {displayName}, {status}",{displayName:null!==(t=this.displayName)&&void 0!==t?t:this.user,status:this.userStatus.status}):(0,d.t)("Avatar of {displayName}",{displayName:null!==(e=this.displayName)&&void 0!==e?e:this.user})},canDisplayUserStatus:function(){return this.showUserStatus&&this.hasStatus&&["online","away","dnd"].includes(this.userStatus.status)},showUserStatusIconOnAvatar:function(){return this.showUserStatus&&this.showUserStatusCompact&&this.hasStatus&&"dnd"!==this.userStatus.status&&this.userStatus.icon},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},hasMenu:function(){var e;return!this.disableMenu&&(this.isMenuLoaded?this.menu.length>0:!(this.user===(null===(e=(0,v.getCurrentUser)())||void 0===e?void 0:e.uid)||this.userDoesNotExist||this.url))},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){return{"--size":this.size+"px",lineHeight:this.size+"px",fontSize:Math.round(.45*this.size)+"px"}},initialsWrapperStyle:function(){var e=(0,l.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{backgroundColor:"rgba(".concat(t,", ").concat(o,", ").concat(a,", 0.1)")}},initialsStyle:function(){var e=(0,l.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{color:"rgb(".concat(t,", ").concat(o,", ").concat(a,")")}},tooltip:function(){return!this.disableTooltip&&(this.tooltipMessage?this.tooltipMessage:this.displayName)},initials:function(){var e;if(this.shouldShowPlaceholder){var t=this.getUserIdentifier,o=t.indexOf(" ");""===t?e="?":(e=String.fromCodePoint(t.codePointAt(0)),-1!==o&&(e=e.concat(String.fromCodePoint(t.codePointAt(o+1)))))}return e.toUpperCase()},menu:function(){var e,t,o,a=this.contactsMenuActions.map((function(e){return{href:e.hyperlink,icon:e.icon,text:e.title}}));return this.showUserStatus&&(this.userStatus.icon||this.userStatus.message)?[{href:"#",icon:"data:image/svg+xml;utf8,".concat((e=this.userStatus.icon,t=document.createTextNode(e),o=document.createElement("p"),o.appendChild(t),o.innerHTML),""),text:"".concat(this.userStatus.message)}].concat(a):a}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.isMenuLoaded=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl(),(0,f.subscribe)("settings:avatar:updated",this.loadAvatarUrl),(0,f.subscribe)("settings:display-name:updated",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(this.preloadedUserStatus?(this.userStatus.status=this.preloadedUserStatus.status||"",this.userStatus.message=this.preloadedUserStatus.message||"",this.userStatus.icon=this.preloadedUserStatus.icon||"",this.hasStatus=null!==this.preloadedUserStatus.status):this.fetchUserStatus(this.user),(0,f.subscribe)("user_status:status.updated",this.handleUserStatusUpdated))},beforeDestroy:function(){(0,f.unsubscribe)("settings:avatar:updated",this.loadAvatarUrl),(0,f.unsubscribe)("settings:display-name:updated",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(0,f.unsubscribe)("user_status:status.updated",this.handleUserStatusUpdated)},methods:{t:d.t,handleUserStatusUpdated:function(e){this.user===e.userId&&(this.userStatus={status:e.status,icon:e.icon,message:e.message})},toggleMenu:function(){var e=this;return S(C().mark((function t(){return C().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.hasMenu){t.next=2;break}return t.abrupt("return");case 2:if(e.contactsMenuOpenState){t.next=5;break}return t.next=5,e.fetchContactsMenu();case 5:e.contactsMenuOpenState=!e.contactsMenuOpenState;case 6:case"end":return t.stop()}}),t)})))()},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var e=this;return S(C().mark((function t(){var o,a,n;return C().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.contactsMenuLoading=!0,t.prev=1,o=encodeURIComponent(e.user),t.next=5,p().post((0,y.generateUrl)("contactsmenu/findOne"),"shareType=0&shareWith=".concat(o));case 5:a=t.sent,n=a.data,e.contactsMenuActions=n.topAction?[n.topAction].concat(n.actions):n.actions,t.next=13;break;case 10:t.prev=10,t.t0=t.catch(1),e.contactsMenuOpenState=!1;case 13:e.contactsMenuLoading=!1,e.isMenuLoaded=!0;case 15:case"end":return t.stop()}}),t,null,[[1,10]])})))()},loadAvatarUrl:function(){if(this.isAvatarLoaded=!1,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.isAvatarLoaded=!0,void(this.userDoesNotExist=!0);if(this.isUrlDefined)this.updateImageIfValid(this.url);else if(this.size<=64){var e=this.avatarUrlGenerator(this.user,64),t=[e+" 1x",this.avatarUrlGenerator(this.user,512)+" 8x"].join(", ");this.updateImageIfValid(e,t)}else{var o=this.avatarUrlGenerator(this.user,512);this.updateImageIfValid(o)}},avatarUrlGenerator:function(e,t){var o,a="invert(100%)"===window.getComputedStyle(document.body).getPropertyValue("--background-invert-if-dark"),n="/avatar/{user}/{size}"+(a?"/dark":"");this.isGuest&&(n="/avatar/guest/{user}/{size}"+(a?"/dark":""));var i=(0,y.generateUrl)(n,{user:e,size:t});return e===(null===(o=(0,v.getCurrentUser)())||void 0===o?void 0:o.uid)&&"undefined"!=typeof oc_userconfig&&(i+="?v="+oc_userconfig.avatar.version),i},updateImageIfValid:function(e){var t,o,n=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=(t=this.user,"string"==typeof(o=P.getItem("user-has-avatar."+t))?Boolean(o):null);if(this.isUserDefined&&"boolean"==typeof r)return this.isAvatarLoaded=!0,this.avatarUrlLoaded=e,i&&(this.avatarSrcSetLoaded=i),void(!1===r&&(this.userDoesNotExist=!0));var s=new Image;s.onload=function(){n.avatarUrlLoaded=e,i&&(n.avatarSrcSetLoaded=i),n.isAvatarLoaded=!0,N(n.user,!0)},s.onerror=function(){a.debug("Invalid avatar url",e),n.avatarUrlLoaded=null,n.avatarSrcSetLoaded=null,n.userDoesNotExist=!0,n.isAvatarLoaded=!1,N(n.user,!1)},i&&(s.srcset=i),s.src=e}}};var j=n(3379),O=n.n(j),E=n(7795),_=n.n(E),B=n(569),z=n.n(B),F=n(3565),T=n.n(F),M=n(9216),L=n.n(M),D=n(4589),G=n.n(D),U=n(6222),R={};R.styleTagTransform=G(),R.setAttributes=T(),R.insert=z().bind(null,"head"),R.domAPI=_(),R.insertStyleElement=L(),O()(U.Z,R),U.Z&&U.Z.locals&&U.Z.locals;var I=n(1900),q=n(3051),$=n.n(q),H=(0,I.Z)(x,(function(){var e=this,t=e._self._c;return t("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:e.closeMenu,expression:"closeMenu"}],ref:"main",staticClass:"avatardiv popovermenu-wrapper",class:{"avatardiv--unknown":e.userDoesNotExist,"avatardiv--with-menu":e.hasMenu,"avatardiv--with-menu-loading":e.contactsMenuLoading},style:e.avatarStyle,attrs:{title:e.tooltip,tabindex:e.hasMenu?"0":void 0,"aria-label":e.avatarAriaLabel,role:e.hasMenu?"button":void 0},on:{click:e.toggleMenu,keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.toggleMenu.apply(null,arguments)}}},[e._t("icon",(function(){return[e.iconClass?t("div",{staticClass:"avatar-class-icon",class:e.iconClass}):e.isAvatarLoaded&&!e.userDoesNotExist?t("img",{attrs:{src:e.avatarUrlLoaded,srcset:e.avatarSrcSetLoaded,alt:""}}):e._e()]})),e._v(" "),e.hasMenu&&!e.menu.length?t("NcButton",{staticClass:"action-item action-item__menutoggle",attrs:{"aria-label":e.t("Open contact menu"),type:"tertiary-no-background"},scopedSlots:e._u([{key:"icon",fn:function(){return[e.contactsMenuLoading?t("NcLoadingIcon"):t("DotsHorizontal",{attrs:{size:20}})]},proxy:!0}],null,!1,2617833509)}):e.hasMenu?t("NcActions",{attrs:{"force-menu":"","manual-open":"",type:"tertiary-no-background",container:e.menuContainer,open:e.contactsMenuOpenState},scopedSlots:e._u([e.contactsMenuLoading?{key:"icon",fn:function(){return[t("NcLoadingIcon")]},proxy:!0}:null],null,!0)},e._l(e.menu,(function(o,a){return t("NcActionLink",{key:a,attrs:{href:o.href,icon:o.icon}},[e._v("\n\t\t\t"+e._s(o.text)+"\n\t\t")])})),1):e._e(),e._v(" "),e.showUserStatusIconOnAvatar?t("div",{staticClass:"avatardiv__user-status avatardiv__user-status--icon"},[e._v("\n\t\t"+e._s(e.userStatus.icon)+"\n\t")]):e.canDisplayUserStatus?t("div",{staticClass:"avatardiv__user-status",class:"avatardiv__user-status--"+e.userStatus.status}):e._e(),e._v(" "),!e.userDoesNotExist||e.iconClass||e.$slots.icon?e._e():t("div",{staticClass:"avatardiv__initials-wrapper",style:e.initialsWrapperStyle},[t("div",{staticClass:"unknown",style:e.initialsStyle},[e._v("\n\t\t\t"+e._s(e.initials)+"\n\t\t")])])],2)}),[],!1,null,"7de2f7ff",null);"function"==typeof $()&&$()(H);const W=H.exports},3089:(e,t,o)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;tx});const c={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,o,n,i=this,c=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!c,u=null===(n=this.$slots)||void 0===n?void 0:n.icon;c||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:c,ariaLabel:this.ariaLabel},this);var d=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,n=o.isActive,d=o.isExactActive;return e(i.to||!i.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!l,"button-vue--text-only":l&&!u,"button-vue--icon-and-text":u&&l},s(t,"button-vue--vue-".concat(i.realType),i.realType),s(t,"button-vue--wide",i.wide),s(t,"button-vue--".concat(i.flexAlignment),"center"!==i.flexAlignment),s(t,"button-vue--reverse",i.isReverseAligned),s(t,"active",n),s(t,"router-link-exact-active",d),t)],attrs:r({"aria-label":i.ariaLabel,"aria-pressed":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?"button":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?"_self":null,rel:!i.to&&i.href?"nofollow noreferrer noopener":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:r(r({},i.$listeners),{},{click:function(e){"boolean"==typeof i.pressed&&i.$emit("update:pressed",!i.pressed),i.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":i.ariaHidden}},[i.$slots.icon]):null,l?e("span",{class:"button-vue__text"},[c]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(7294),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(2102),P=o.n(S),N=(0,w.Z)(c,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(N);const x=N.exports},4378:(e,t,o)=>{"use strict";o.d(t,{default:()=>k});var a=o(281),n=o(1336);const i={name:"NcEllipsisedOption",components:{NcHighlight:a.default},props:{name:{type:String,default:""},search:{type:String,default:""}},computed:{needsTruncate:function(){return this.name&&this.name.length>=10},split:function(){return this.name.length-Math.min(Math.floor(this.name.length/2),10)},part1:function(){return this.needsTruncate?this.name.slice(0,this.split):this.name},part2:function(){return this.needsTruncate?this.name.slice(this.split):""},highlight1:function(){return this.search?(0,n.Z)(this.name,this.search):[]},highlight2:function(){var e=this;return this.highlight1.map((function(t){return{start:t.start-e.split,end:t.end-e.split}}))}}};var r=o(3379),s=o.n(r),c=o(7795),l=o.n(c),u=o(569),d=o.n(u),m=o(3565),p=o.n(m),h=o(9216),g=o.n(h),v=o(4589),f=o.n(v),A=o(436),y={};y.styleTagTransform=f(),y.setAttributes=p(),y.insert=d().bind(null,"head"),y.domAPI=l(),y.insertStyleElement=g(),s()(A.Z,y),A.Z&&A.Z.locals&&A.Z.locals;const k=(0,o(1900).Z)(i,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"name-parts",attrs:{title:e.name}},[t("NcHighlight",{staticClass:"name-parts__first",attrs:{text:e.part1,search:e.search,highlight:e.highlight1}}),e._v(" "),e.part2?t("NcHighlight",{staticClass:"name-parts__last",attrs:{text:e.part2,search:e.search,highlight:e.highlight2}}):e._e()],1)}),[],!1,null,"3daafbe0",null).exports},281:(e,t,o)=>{"use strict";o.d(t,{default:()=>p});var a=o(1336);function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;t0?this.highlight:(0,a.Z)(this.text,this.search)).forEach((function(e,o){e.end0&&t.push({start:o.start<0?0:o.start,end:o.end>e.text.length?e.text.length:o.end}),t}),[]),t.sort((function(e,t){return e.start-t.start})),t=t.reduce((function(e,t){if(e.length){var o=e.length-1;e[o].end>=t.start?e[o]={start:e[o].start,end:Math.max(e[o].end,t.end)}:e.push(t)}else e.push(t);return e}),[]),t):t},chunks:function(){if(0===this.ranges.length)return[{start:0,end:this.text.length,highlight:!1,text:this.text}];for(var e=[],t=0,o=0;t=this.ranges.length&&t{"use strict";a.d(t,{default:()=>j});const n=o(62466);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function r(){r=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},s=n.iterator||"@@iterator",c=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,s,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,s)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,r,s,c){var l=m(e[a],e,r);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==i(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,c)}),(function(e){n("throw",e,s,c)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,c)}))}c(l.arg)}var r;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[s];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function s(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function c(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){s(i,a,n,r,c,"next",e)}function c(e){s(i,a,n,r,c,"throw",e)}r(void 0)}))}}const l={name:"NcIconSvgWrapper",props:{svg:{type:String,default:""},name:{type:String,default:""}},data:function(){return{cleanSvg:""}},beforeMount:function(){var e=this;return c(r().mark((function t(){return r().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.sanitizeSVG();case 2:case"end":return t.stop()}}),t)})))()},methods:{sanitizeSVG:function(){var e=this;return c(r().mark((function t(){return r().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.svg){t.next=2;break}return t.abrupt("return");case 2:return t.next=4,(0,n.sanitizeSVG)(e.svg);case 4:e.cleanSvg=t.sent;case 5:case"end":return t.stop()}}),t)})))()}}};var u=a(3379),d=a.n(u),m=a(7795),p=a.n(m),h=a(569),g=a.n(h),v=a(3565),f=a.n(v),A=a(9216),y=a.n(A),k=a(4589),b=a.n(k),C=a(2105),w={};w.styleTagTransform=b(),w.setAttributes=f(),w.insert=g().bind(null,"head"),w.domAPI=p(),w.insertStyleElement=y(),d()(C.Z,w),C.Z&&C.Z.locals&&C.Z.locals;var S=a(1900),P=a(1287),N=a.n(P),x=(0,S.Z)(l,(function(){var e=this;return(0,e._self._c)("span",{staticClass:"icon-vue",attrs:{role:"img","aria-hidden":!e.name,"aria-label":e.name},domProps:{innerHTML:e._s(e.cleanSvg)}})}),[],!1,null,"5937dacc",null);"function"==typeof N()&&N()(x);const j=x.exports},2321:(e,t,o)=>{"use strict";o.d(t,{default:()=>x});var a=o(2158),n=o(281),i=o(9598),r=o(1137);const s={name:"NcListItemIcon",components:{NcAvatar:a.default,NcHighlight:n.default,NcIconSvgWrapper:i.default},mixins:[r.iQ],props:{name:{type:String,required:!0},subname:{type:String,default:""},icon:{type:String,default:""},iconSvg:{type:String,default:""},iconName:{type:String,default:""},search:{type:String,default:""},avatarSize:{type:Number,default:32},noMargin:{type:Boolean,default:!1},displayName:{type:String,default:null},isNoUser:{type:Boolean,default:!1},id:{type:String,default:null}},data:function(){return{margin:8}},computed:{hasIcon:function(){return""!==this.icon},hasIconSvg:function(){return""!==this.iconSvg},isValidSubname:function(){var e,t;return""!==(null===(e=this.subname)||void 0===e||null===(t=e.trim)||void 0===t?void 0:t.call(e))},isSizeBigEnough:function(){return this.avatarSize>=32},cssVars:function(){var e=this.noMargin?0:this.margin;return{"--height":this.avatarSize+2*e+"px","--margin":this.margin+"px"}}},beforeMount:function(){this.isNoUser||this.subname||this.fetchUserStatus(this.user)}},c=s;var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(4629),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(8488),P=o.n(S),N=(0,w.Z)(c,(function(){var e=this,t=e._self._c;return t("span",e._g({staticClass:"option",style:e.cssVars,attrs:{id:e.id}},e.$listeners),[t("NcAvatar",e._b({staticClass:"option__avatar",attrs:{"disable-menu":!0,"disable-tooltip":!0,"display-name":e.displayName||e.name,"is-no-user":e.isNoUser,size:e.avatarSize}},"NcAvatar",e.$attrs,!1)),e._v(" "),t("div",{staticClass:"option__details"},[t("NcHighlight",{staticClass:"option__lineone",attrs:{text:e.name,search:e.search}}),e._v(" "),e.isValidSubname&&e.isSizeBigEnough?t("NcHighlight",{staticClass:"option__linetwo",attrs:{text:e.subname,search:e.search}}):e.hasStatus?t("span",[t("span",[e._v(e._s(e.userStatus.icon))]),e._v(" "),t("span",[e._v(e._s(e.userStatus.message))])]):e._e()],1),e._v(" "),e._t("default",(function(){return[e.hasIconSvg?t("NcIconSvgWrapper",{staticClass:"option__icon",attrs:{svg:e.iconSvg,name:e.iconName}}):e.hasIcon?t("span",{staticClass:"icon option__icon",class:e.icon,attrs:{"aria-label":e.iconName}}):e._e()]}))],2)}),[],!1,null,"160648e6",null);"function"==typeof P()&&P()(N);const x=N.exports},6492:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcLoadingIcon",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return["auto","light","dark"].includes(e)},default:"auto"},name:{type:String,default:""}},computed:{colors:function(){var e=["#777","#CCC"];return"light"===this.appearance?e:"dark"===this.appearance?e.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"material-design-icon loading-icon",attrs:{"aria-label":e.name,role:"img"}},[t("svg",{attrs:{width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:e.colors[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"}}),e._v(" "),t("path",{attrs:{fill:e.colors[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"}},[e.name?t("title",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,"27fa1197",null);"function"==typeof k()&&k()(b);const C=b.exports},2297:(e,t,o)=>{"use strict";o.d(t,{default:()=>E});var n=o(9454),i=o(4505),r=o(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,c){var l=m(e[a],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==s(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,c)}),(function(e){n("throw",e,r,c)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,c)}))}c(l.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const u={name:"NcPopover",components:{Dropdown:n.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=c().mark((function e(){var o,a;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,i.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,r.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,"next",e)}function s(e){l(i,a,n,r,s,"throw",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=o(3379),p=o.n(m),h=o(7795),g=o.n(h),v=o(569),f=o.n(v),A=o(3565),y=o.n(A),k=o(9216),b=o.n(k),C=o(4589),w=o.n(C),S=o(1625),P={};P.styleTagTransform=w(),P.setAttributes=y(),P.insert=f().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=b(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var N=o(1900),x=o(2405),j=o.n(x),O=(0,N.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof j()&&j()(O);const E=O.exports},7176:(e,t,a)=>{"use strict";a.d(t,{default:()=>G});const n=o(29960),i=(o(65468),o(50326)),r=o(41622);var s=a.n(r),c=a(8618),l=a.n(c),u=a(4378),d=a(2321),m=a(6492),p=a(3648),h=["inputClass","noWrap","placement","userSelect"];function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function f(e){for(var t=1;t-1}:n.VueSelect.props.filterBy.default},localLabel:function(){return null!==this.label?this.label:this.userSelect?"displayName":n.VueSelect.props.label.default},propsToForward:function(){var e=this.$props,t=(e.inputClass,e.noWrap,e.placement,e.userSelect,f(f({},function(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}(e,h)),{},{calculatePosition:this.localCalculatePosition,filterBy:this.localFilterBy,label:this.localLabel}));return t}}},k=y;var b=a(3379),C=a.n(b),w=a(7795),S=a.n(w),P=a(569),N=a.n(P),x=a(3565),j=a.n(x),O=a(9216),E=a.n(O),_=a(4589),B=a.n(_),z=a(7283),F={};F.styleTagTransform=B(),F.setAttributes=j(),F.insert=N().bind(null,"head"),F.domAPI=S(),F.insertStyleElement=E(),C()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=a(1900),M=a(8220),L=a.n(M),D=(0,T.Z)(k,(function(){var e=this,t=e._self._c;return t("VueSelect",e._g(e._b({staticClass:"select",class:{"select--no-wrap":e.noWrap},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:"search",fn:function(o){var a=o.attributes,n=o.events;return[t("input",e._g(e._b({class:["vs__search",e.inputClass]},"input",a,!1),n))]}},{key:"open-indicator",fn:function(o){var a=o.attributes;return[t("ChevronDown",e._b({attrs:{"fill-color":"var(--vs-controls-color)",size:26}},"ChevronDown",a,!1))]}},{key:"option",fn:function(o){return[e.userSelect?t("NcListItemIcon",e._b({attrs:{name:o[e.localLabel],search:e.search}},"NcListItemIcon",o,!1)):t("NcEllipsisedOption",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:"selected-option",fn:function(o){return[e.userSelect?t("NcListItemIcon",e._b({attrs:{name:o[e.localLabel],search:e.search}},"NcListItemIcon",o,!1)):t("NcEllipsisedOption",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:"spinner",fn:function(o){return[o.loading?t("NcLoadingIcon"):e._e()]}},{key:"no-options",fn:function(){return[e._v("\n\t\t"+e._s(e.t("No results"))+"\n\t")]},proxy:!0},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},"VueSelect",e.propsToForward,!1),e.$listeners))}),[],!1,null,null,null);"function"==typeof L()&&L()(D);const G=D.exports},9319:(e,t,a)=>{"use strict";function n(e,t,o){this.r=e,this.g=t,this.b=o}function i(e,t,o){var a=[];a.push(t);for(var i=function(e,t){var o=new Array(3);return o[0]=(t[1].r-t[0].r)/e,o[1]=(t[1].g-t[0].g)/e,o[2]=(t[1].b-t[0].b)/e,o}(e,[t,o]),r=1;rc});const r=o(2568);var s=a.n(r);const c=function(e){var t=e.toLowerCase();return null===t.match(/^([0-9a-f]{4}-?){8}$/)&&(t=s()(t)),t=t.replace(/[^0-9a-f]/g,""),function(e){e||(e=6);var t=new n(182,70,157),o=new n(221,203,85),a=new n(0,130,201),r=i(e,t,o),s=i(e,o,a),c=i(e,a,t);return r.concat(s).concat(c)}(6)[function(e,t){for(var o=0,a=[],n=0;n{"use strict";o.d(t,{n:()=>i,t:()=>r});var a=(0,o(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};a.addTranslation(e.locale,{translations:{"":t}})}));var n=a.build(),i=n.ngettext.bind(n),r=n.gettext.bind(n)},723:(e,t,o)=>{"use strict";o.d(t,{Z:()=>i});var a=o(2734),n=o.n(a);const i={before:function(){this.$slots.default&&""!==this.text.trim()||(n().util.warn("".concat(this.$options.name," cannot be empty and requires a meaningful text content"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():""}}}},9156:(e,t,o)=>{"use strict";o.d(t,{Z:()=>i});var a=o(723),n=o(6021);const i={mixins:[a.Z],props:{icon:{type:String,default:""},name:{type:String,default:""},title:{type:String,default:""},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:""},ariaHidden:{type:Boolean,default:null}},emits:["click"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit("click",e),this.closeAfterClick){var t=(0,n.Z)(this,"NcActions");t&&t.closeMenu&&t.closeMenu(!1)}}}}},6730:()=>{},1137:(e,t,o)=>{"use strict";o.d(t,{iQ:()=>a.Z}),o(6730),o(8136),o(334),o(9917);var a=o(6863)},8136:()=>{},334:(e,t,o)=>{"use strict";var a=o(2734);new(o.n(a)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit("changed",e)}},created:function(){window.addEventListener("resize",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}})},3648:(e,t,o)=>{"use strict";o.d(t,{Z:()=>n});var a=o(932);const n={methods:{n:a.n,t:a.t}}},9917:(e,t,a)=>{"use strict";a(3330),o(50337),o(95573),o(12917),a(2734);var n="(?:^|\\s)",i="(?:[^a-z]|$)";new RegExp("".concat(n,"(@[a-zA-Z0-9_.@\\-']+)(").concat(i,")"),"gi"),new RegExp("".concat(n,"(@"[a-zA-Z0-9 _.@\\-']+")(").concat(i,")"),"gi")},6863:(e,t,o)=>{"use strict";o.d(t,{Z:()=>m});var n=o(3607),i=o(768),r=o.n(i),s=o(7713),c=o(4262);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function u(){u=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};c(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=m(e[a],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function d(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const m={data:function(){return{hasStatus:!1,userStatus:{status:null,message:null,icon:null}}},methods:{fetchUserStatus:function(e){var t,o=this;return(t=u().mark((function t(){var i,l,d,m,p,h,g,v;return u().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt("return");case 2:if(i=(0,s.getCapabilities)(),Object.prototype.hasOwnProperty.call(i,"user_status")&&i.user_status.enabled){t.next=5;break}return t.abrupt("return");case 5:if((0,n.getCurrentUser)()){t.next=7;break}return t.abrupt("return");case 7:return t.prev=7,t.next=10,r().get((0,c.generateOcsUrl)("apps/user_status/api/v1/statuses/{userId}",{userId:e}));case 10:l=t.sent,d=l.data,m=d.ocs.data,p=m.status,h=m.message,g=m.icon,o.userStatus.status=p,o.userStatus.message=h||"",o.userStatus.icon=g||"",o.hasStatus=!0,t.next=24;break;case 19:if(t.prev=19,t.t0=t.catch(7),404!==t.t0.response.status||0!==(null===(v=t.t0.response.data.ocs)||void 0===v||null===(v=v.data)||void 0===v?void 0:v.length)){t.next=23;break}return t.abrupt("return");case 23:a.error(t.t0);case 24:case"end":return t.stop()}}),t,null,[[7,19]])})),function(){var e=this,o=arguments;return new Promise((function(a,n){var i=t.apply(e,o);function r(e){d(i,a,n,r,s,"next",e)}function s(e){d(i,a,n,r,s,"throw",e)}r(void 0)}))})()}}}},1336:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=[],a=0,n=e.toLowerCase().indexOf(t.toLowerCase(),a),i=0;n>-1&&i{"use strict";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},6021:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=e.$parent;o;){if(o.$options.name===t)return o;o=o.$parent}}},1206:(e,t,o)=>{"use strict";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},4402:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/assets/action.scss","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of `\\n`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},9546:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=r},5155:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=r},6222:(e,t,o)=>{"use strict";o.d(t,{Z:()=>v});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i),s=o(1667),c=o.n(s),l=new URL(o(3423),o.b),u=new URL(o(2605),o.b),d=new URL(o(7127),o.b),m=r()(n()),p=c()(l),h=c()(u),g=c()(d);m.push([e.id,`.material-design-icon[data-v-7de2f7ff]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.avatardiv[data-v-7de2f7ff]{position:relative;display:inline-block;width:var(--size);height:var(--size)}.avatardiv--unknown[data-v-7de2f7ff]{position:relative;background-color:var(--color-main-background)}.avatardiv[data-v-7de2f7ff]:not(.avatardiv--unknown){background-color:var(--color-main-background) !important;box-shadow:0 0 5px rgba(0,0,0,.05) inset}.avatardiv--with-menu[data-v-7de2f7ff]{cursor:pointer}.avatardiv--with-menu .action-item[data-v-7de2f7ff]{position:absolute;top:0;left:0}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle{cursor:pointer;opacity:0}.avatardiv--with-menu[data-v-7de2f7ff]:focus .action-item__menutoggle,.avatardiv--with-menu[data-v-7de2f7ff]:hover .action-item__menutoggle,.avatardiv--with-menu.avatardiv--with-menu-loading[data-v-7de2f7ff] .action-item__menutoggle{opacity:1}.avatardiv--with-menu:focus img[data-v-7de2f7ff],.avatardiv--with-menu:hover img[data-v-7de2f7ff],.avatardiv--with-menu.avatardiv--with-menu-loading img[data-v-7de2f7ff]{opacity:.3}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle,.avatardiv--with-menu img[data-v-7de2f7ff]{transition:opacity var(--animation-quick)}.avatardiv--with-menu[data-v-7de2f7ff] .button-vue,.avatardiv--with-menu[data-v-7de2f7ff] .button-vue__icon{height:var(--size);min-height:var(--size);width:var(--size) !important;min-width:var(--size)}.avatardiv .avatardiv__initials-wrapper[data-v-7de2f7ff]{height:var(--size);width:var(--size);background-color:var(--color-main-background);border-radius:50%}.avatardiv .avatardiv__initials-wrapper .unknown[data-v-7de2f7ff]{position:absolute;top:0;left:0;display:block;width:100%;text-align:center;font-weight:normal}.avatardiv img[data-v-7de2f7ff]{width:100%;height:100%;object-fit:cover}.avatardiv .material-design-icon[data-v-7de2f7ff]{width:var(--size);height:var(--size)}.avatardiv .avatardiv__user-status[data-v-7de2f7ff]{position:absolute;right:-4px;bottom:-4px;max-height:18px;max-width:18px;height:40%;width:40%;line-height:15px;font-size:var(--default-font-size);border:2px solid var(--color-main-background);background-color:var(--color-main-background);background-repeat:no-repeat;background-size:16px;background-position:center;border-radius:50%}.acli:hover .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-background-hover);background-color:var(--color-background-hover)}.acli.active .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-primary-element-light);background-color:var(--color-primary-element-light)}.avatardiv .avatardiv__user-status--online[data-v-7de2f7ff]{background-image:url(${p})}.avatardiv .avatardiv__user-status--dnd[data-v-7de2f7ff]{background-image:url(${h});background-color:#fff}.avatardiv .avatardiv__user-status--away[data-v-7de2f7ff]{background-image:url(${g})}.avatardiv .avatardiv__user-status--icon[data-v-7de2f7ff]{border:none;background-color:rgba(0,0,0,0)}.avatardiv .popovermenu-wrapper[data-v-7de2f7ff]{position:relative;display:inline-block}.avatar-class-icon[data-v-7de2f7ff]{border-radius:50%;background-color:var(--color-background-darker);height:100%}`,"",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAvatar/NcAvatar.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,4BACC,iBAAA,CACA,oBAAA,CACA,iBAAA,CACA,kBAAA,CAEA,qCACC,iBAAA,CACA,6CAAA,CAGD,qDAEC,wDAAA,CACA,wCAAA,CAGD,uCACC,cAAA,CACA,oDACC,iBAAA,CACA,KAAA,CACA,MAAA,CAED,gEACC,cAAA,CACA,SAAA,CAKA,yOACC,SAAA,CAED,0KACC,UAAA,CAGF,2GAEC,yCAAA,CAGA,8GAEC,kBAAA,CACA,sBAAA,CACA,4BAAA,CACA,qBAAA,CAKH,yDACC,kBAAA,CACA,iBAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kEACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,iBAAA,CACA,kBAAA,CAIF,gCAEC,UAAA,CACA,WAAA,CAEA,gBAAA,CAGD,kDACC,iBAAA,CACA,kBAAA,CAGD,oDACC,iBAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,UAAA,CACA,SAAA,CACA,gBAAA,CACA,kCAAA,CACA,6CAAA,CACA,6CAAA,CACA,2BAAA,CACA,oBAAA,CACA,0BAAA,CACA,iBAAA,CAEA,gEACC,0CAAA,CACA,8CAAA,CAED,iEACC,+CAAA,CACA,mDAAA,CAGD,4DACC,wDAAA,CAED,yDACC,wDAAA,CACA,qBAAA,CAED,0DACC,wDAAA,CAED,0DACC,WAAA,CACA,8BAAA,CAIF,iDACC,iBAAA,CACA,oBAAA,CAIF,oCACC,iBAAA,CACA,+CAAA,CACA,WAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.avatardiv {\n\tposition: relative;\n\tdisplay: inline-block;\n\twidth: var(--size);\n\theight: var(--size);\n\n\t&--unknown {\n\t\tposition: relative;\n\t\tbackground-color: var(--color-main-background);\n\t}\n\n\t&:not(&--unknown) {\n\t\t// White/black background for avatars with transparency\n\t\tbackground-color: var(--color-main-background) !important;\n\t\tbox-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;\n\t}\n\n\t&--with-menu {\n\t\tcursor: pointer;\n\t\t.action-item {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t:deep(.action-item__menutoggle) {\n\t\t\tcursor: pointer;\n\t\t\topacity: 0;\n\t\t}\n\t\t&:focus,\n\t\t&:hover,\n\t\t&#{&}-loading {\n\t\t\t:deep(.action-item__menutoggle) {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\timg {\n\t\t\t\topacity: 0.3;\n\t\t\t}\n\t\t}\n\t\t:deep(.action-item__menutoggle),\n\t\timg {\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t}\n\t\t:deep() {\n\t\t\t.button-vue,\n\t\t\t.button-vue__icon {\n\t\t\t\theight: var(--size);\n\t\t\t\tmin-height: var(--size);\n\t\t\t\twidth: var(--size) !important;\n\t\t\t\tmin-width: var(--size);\n\t\t\t}\n\t\t}\n\t}\n\n\t.avatardiv__initials-wrapper {\n\t\theight: var(--size);\n\t\twidth: var(--size);\n\t\tbackground-color: var(--color-main-background);\n\t\tborder-radius: 50%;\n\n\t\t.unknown {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t\ttext-align: center;\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\n\timg {\n\t\t// Cover entire area\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\t// Keep ratio\n\t\tobject-fit: cover;\n\t}\n\n\t.material-design-icon {\n\t\twidth: var(--size);\n\t\theight: var(--size);\n\t}\n\n\t.avatardiv__user-status {\n\t\tposition: absolute;\n\t\tright: -4px;\n\t\tbottom: -4px;\n\t\tmax-height: 18px;\n\t\tmax-width: 18px;\n\t\theight: 40%;\n\t\twidth: 40%;\n\t\tline-height: 15px;\n\t\tfont-size: var(--default-font-size);\n\t\tborder: 2px solid var(--color-main-background);\n\t\tbackground-color: var(--color-main-background);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: 16px;\n\t\tbackground-position: center;\n\t\tborder-radius: 50%;\n\n\t\t.acli:hover & {\n\t\t\tborder-color: var(--color-background-hover);\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t\t.acli.active & {\n\t\t\tborder-color: var(--color-primary-element-light);\n\t\t\tbackground-color: var(--color-primary-element-light);\n\t\t}\n\n\t\t&--online{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-online.svg');\n\t\t}\n\t\t&--dnd{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-dnd.svg');\n\t\t\tbackground-color: #ffffff;\n\t\t}\n\t\t&--away{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-away.svg');\n\t\t}\n\t\t&--icon {\n\t\t\tborder: none;\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t.popovermenu-wrapper {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t}\n}\n\n.avatar-class-icon {\n\tborder-radius: 50%;\n\tbackground-color: var(--color-background-darker);\n\theight: 100%;\n}\n\n"],sourceRoot:""}]);const v=m},7294:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},436:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-3daafbe0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.name-parts[data-v-3daafbe0]{display:flex;max-width:100%;cursor:inherit}.name-parts__first[data-v-3daafbe0]{overflow:hidden;text-overflow:ellipsis}.name-parts__first[data-v-3daafbe0],.name-parts__last[data-v-3daafbe0]{white-space:pre;cursor:inherit}.name-parts__first strong[data-v-3daafbe0],.name-parts__last strong[data-v-3daafbe0]{font-weight:bold}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcEllipsisedOption/NcEllipsisedOption.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,YAAA,CACA,cAAA,CACA,cAAA,CACA,oCACC,eAAA,CACA,sBAAA,CAED,uEAGC,eAAA,CACA,cAAA,CACA,qFACC,gBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.name-parts {\n\tdisplay: flex;\n\tmax-width: 100%;\n\tcursor: inherit;\n\t&__first {\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t}\n\t&__first,\n\t&__last {\n\t\t// prevent whitespace from being trimmed\n\t\twhite-space: pre;\n\t\tcursor: inherit;\n\t\tstrong {\n\t\t\tfont-weight: bold;\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const s=r},2105:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.icon-vue {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: 44px;\n\tmin-height: 44px;\n\topacity: 1;\n\n\t&:deep(svg) {\n\t\tfill: currentColor;\n\t\tmax-width: 20px;\n\t\tmax-height: 20px;\n\t}\n}\n"],sourceRoot:""}]);const s=r},4629:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-160648e6]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.option[data-v-160648e6]{display:flex;align-items:center;width:100%;height:var(--height);cursor:inherit}.option__avatar[data-v-160648e6]{margin-right:var(--margin)}.option__details[data-v-160648e6]{display:flex;flex:1 1;flex-direction:column;justify-content:center;min-width:0}.option__lineone[data-v-160648e6]{color:var(--color-main-text)}.option__linetwo[data-v-160648e6]{color:var(--color-text-maxcontrast)}.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.1em}.option__lineone strong[data-v-160648e6],.option__linetwo strong[data-v-160648e6]{font-weight:bold}.option__icon[data-v-160648e6]{width:44px;height:44px;color:var(--color-text-maxcontrast)}.option__icon.icon[data-v-160648e6]{flex:0 0 44px;opacity:.7;background-position:center;background-size:16px}.option__details[data-v-160648e6],.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6],.option__icon[data-v-160648e6]{cursor:inherit}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcListItemIcon/NcListItemIcon.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,yBACC,YAAA,CACA,kBAAA,CACA,UAAA,CACA,oBAAA,CACA,cAAA,CAEA,iCACC,0BAAA,CAGD,kCACC,YAAA,CACA,QAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAGD,kCACC,4BAAA,CAGD,kCACC,mCAAA,CAGD,oEAEC,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CACA,kFACC,gBAAA,CAIF,+BACC,UChBe,CDiBf,WCjBe,CDkBf,mCAAA,CACA,oCACC,aAAA,CACA,UCHc,CDId,0BAAA,CACA,oBAAA,CAIF,qIAIC,cAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.option {\n\tdisplay: flex;\n\talign-items: center;\n\twidth: 100%;\n\theight: var(--height);\n\tcursor: inherit;\n\n\t&__avatar {\n\t\tmargin-right: var(--margin);\n\t}\n\n\t&__details {\n\t\tdisplay: flex;\n\t\tflex: 1 1;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tmin-width: 0;\n\t}\n\n\t&__lineone {\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&__linetwo {\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t&__lineone,\n\t&__linetwo {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\tline-height: 1.1em;\n\t\tstrong {\n\t\t\tfont-weight: bold;\n\t\t}\n\t}\n\n\t&__icon {\n\t\twidth: $clickable-area;\n\t\theight: $clickable-area;\n\t\tcolor: var(--color-text-maxcontrast);\n\t\t&.icon {\n\t\t\tflex: 0 0 $clickable-area;\n\t\t\topacity: $opacity_normal;\n\t\t\tbackground-position: center;\n\t\t\tbackground-size: 16px;\n\t\t}\n\t}\n\n\t&__details,\n\t&__lineone,\n\t&__linetwo,\n\t&__icon {\n\t\tcursor: inherit;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},8502:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.loading-icon svg{\n\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\n}\n"],sourceRoot:""}]);const s=r},1625:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},6466:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7dba3f6e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.mention-bubble--primary .mention-bubble__content[data-v-7dba3f6e]{color:var(--color-primary-element-text);background-color:var(--color-primary-element)}.mention-bubble__wrapper[data-v-7dba3f6e]{max-width:150px;height:18px;vertical-align:text-bottom;display:inline-flex;align-items:center}.mention-bubble__content[data-v-7dba3f6e]{display:inline-flex;overflow:hidden;align-items:center;max-width:100%;height:20px;-webkit-user-select:none;user-select:none;padding-right:6px;padding-left:2px;border-radius:10px;background-color:var(--color-background-dark)}.mention-bubble__icon[data-v-7dba3f6e]{position:relative;width:16px;height:16px;border-radius:8px;background-color:var(--color-background-darker);background-repeat:no-repeat;background-position:center;background-size:12px}.mention-bubble__icon--with-avatar[data-v-7dba3f6e]{color:inherit;background-size:cover}.mention-bubble__title[data-v-7dba3f6e]{overflow:hidden;margin-left:2px;white-space:nowrap;text-overflow:ellipsis}.mention-bubble__title[data-v-7dba3f6e]::before{content:attr(title)}.mention-bubble__select[data-v-7dba3f6e]{position:absolute;z-index:-1;left:-1000px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcRichContenteditable/NcMentionBubble.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CAAA,mECCC,uCAAA,CACA,6CAAA,CAGD,0CACC,eAXiB,CAajB,WAAA,CACA,0BAAA,CACA,mBAAA,CACA,kBAAA,CAGD,0CACC,mBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,WAzBc,CA0Bd,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBA3Be,CA4Bf,kBAAA,CACA,6CAAA,CAGD,uCACC,iBAAA,CACA,UAjCmB,CAkCnB,WAlCmB,CAmCnB,iBAAA,CACA,+CAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,oDACC,aAAA,CACA,qBAAA,CAIF,wCACC,eAAA,CACA,eAlDe,CAmDf,kBAAA,CACA,sBAAA,CAEA,gDACC,mBAAA,CAKF,yCACC,iBAAA,CACA,UAAA,CACA,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n$bubble-height: 20px;\n$bubble-max-width: 150px;\n$bubble-padding: 2px;\n$bubble-avatar-size: $bubble-height - 2 * $bubble-padding;\n\n.mention-bubble {\n\t&--primary &__content {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: var(--color-primary-element);\n\t}\n\n\t&__wrapper {\n\t\tmax-width: $bubble-max-width;\n\t\t// Align with text\n\t\theight: $bubble-height - $bubble-padding;\n\t\tvertical-align: text-bottom;\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t}\n\n\t&__content {\n\t\tdisplay: inline-flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tmax-width: 100%;\n\t\theight: $bubble-height ;\n\t\t-webkit-user-select: none;\n\t\tuser-select: none;\n\t\tpadding-right: $bubble-padding * 3;\n\t\tpadding-left: $bubble-padding;\n\t\tborder-radius: math.div($bubble-height, 2);\n\t\tbackground-color: var(--color-background-dark);\n\t}\n\n\t&__icon {\n\t\tposition: relative;\n\t\twidth: $bubble-avatar-size;\n\t\theight: $bubble-avatar-size;\n\t\tborder-radius: math.div($bubble-avatar-size, 2);\n\t\tbackground-color: var(--color-background-darker);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center;\n\t\tbackground-size: $bubble-avatar-size - 2 * $bubble-padding;\n\n\t\t&--with-avatar {\n\t\t\tcolor: inherit;\n\t\t\tbackground-size: cover;\n\t\t}\n\t}\n\n\t&__title {\n\t\toverflow: hidden;\n\t\tmargin-left: $bubble-padding;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\t// Put title in ::before so it is not selectable\n\t\t&::before {\n\t\t\tcontent: attr(title);\n\t\t}\n\t}\n\n\t// Hide the mention id so it is selectable\n\t&__select {\n\t\tposition: absolute;\n\t\tz-index: -1;\n\t\tleft: -1000px;\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},7283:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}body{--vs-search-input-color: var(--color-main-text);--vs-search-input-bg: var(--color-main-background);--vs-search-input-placeholder-color: var(--color-text-maxcontrast);--vs-font-size: var(--default-font-size);--vs-line-height: var(--default-line-height);--vs-state-disabled-bg: var(--color-background-hover);--vs-state-disabled-color: var(--color-text-maxcontrast);--vs-state-disabled-controls-color: var(--color-text-maxcontrast);--vs-state-disabled-cursor: not-allowed;--vs-disabled-bg: var(--color-background-hover);--vs-disabled-color: var(--color-text-maxcontrast);--vs-disabled-cursor: not-allowed;--vs-border-color: var(--color-border-maxcontrast);--vs-border-width: 2px;--vs-border-style: solid;--vs-border-radius: var(--border-radius-large);--vs-controls-color: var(--color-text-maxcontrast);--vs-selected-bg: var(--color-background-dark);--vs-selected-color: var(--color-main-text);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: var(--color-main-background);--vs-dropdown-color: var(--color-main-text);--vs-dropdown-z-index: 9999;--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);--vs-dropdown-option-padding: 8px 20px;--vs-dropdown-option--active-bg: var(--color-background-hover);--vs-dropdown-option--active-color: var(--color-main-text);--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);--vs-dropdown-option--deselect-bg: var(--color-error);--vs-dropdown-option--deselect-color: #fff;--vs-transition-duration: 0ms}.v-select.select{min-height:44px;min-width:260px;margin:0}.v-select.select .vs__selected{min-height:36px;padding:0 .5em;border-radius:calc(var(--vs-border-radius) - 4px) !important}.v-select.select .vs__clear{margin-right:2px}.v-select.select.vs--open .vs__dropdown-toggle{border-color:var(--color-primary-element);border-bottom-color:rgba(0,0,0,0)}.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:hover{border-color:var(--color-primary-element)}.v-select.select.vs--disabled .vs__search,.v-select.select.vs--disabled .vs__selected{color:var(--color-text-maxcontrast)}.v-select.select.vs--disabled .vs__clear,.v-select.select.vs--disabled .vs__deselect{display:none}.v-select.select--no-wrap .vs__selected-options{flex-wrap:nowrap;overflow:auto;min-width:unset}.v-select.select--no-wrap .vs__selected-options .vs__selected{min-width:unset}.v-select.select--drop-up.vs--open .vs__dropdown-toggle{border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-color:rgba(0,0,0,0);border-bottom-color:var(--color-primary-element)}.v-select.select .vs__selected-options{min-height:40px}.v-select.select .vs__selected-options .vs__selected~.vs__search[readonly]{position:absolute}.v-select.select.vs--single.vs--loading .vs__selected,.v-select.select.vs--single.vs--open .vs__selected{max-width:100%}.v-select.select.vs--single .vs__selected-options{flex-wrap:nowrap}.vs__dropdown-menu{border-color:var(--color-primary-element) !important;padding:4px !important}.vs__dropdown-menu--floating{width:max-content;position:absolute;top:0;left:0}.vs__dropdown-menu--floating-placement-top{border-radius:var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;border-top-style:var(--vs-border-style) !important;border-bottom-style:none !important;box-shadow:0px -1px 1px 0px var(--color-box-shadow) !important}.vs__dropdown-menu .vs__dropdown-option{border-radius:6px !important}.vs__dropdown-menu .vs__no-options{color:var(--color-text-lighter) !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcSelect/NcSelect.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,KAOC,+CAAA,CACA,kDAAA,CACA,kEAAA,CAGA,wCAAA,CACA,4CAAA,CAGA,qDAAA,CACA,wDAAA,CACA,iEAAA,CACA,uCAAA,CACA,+CAAA,CACA,kDAAA,CACA,iCAAA,CAGA,kDAAA,CACA,sBAAA,CACA,wBAAA,CACA,8CAAA,CAGA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,kDAAA,CACA,kDAAA,CACA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,2BAAA,CACA,iEAAA,CAGA,sCAAA,CAGA,8DAAA,CACA,0DAAA,CAGA,uFAAA,CAGA,qDAAA,CACA,0CAAA,CAGA,6BAAA,CAGD,iBAEC,eC3CgB,CD4ChB,eAAA,CACA,QAAA,CAEA,+BACC,eAAA,CACA,cAAA,CACA,4DAAA,CAGD,4BACC,gBAAA,CAGD,+CACC,yCAAA,CACA,iCAAA,CAGD,yEACC,yCAAA,CAIA,sFAEC,mCAAA,CAGD,qFAEC,YAAA,CAKD,gDACC,gBAAA,CACA,aAAA,CACA,eAAA,CACA,8DACC,eAAA,CAOD,wDACC,iEAAA,CACA,8BAAA,CACA,gDAAA,CAKH,uCAEC,eAAA,CAGA,2EACC,iBAAA,CAOA,yGAEC,cAAA,CAGF,kDACC,gBAAA,CAKH,mBACC,oDAAA,CACA,sBAAA,CAEA,6BAEC,iBAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CAEA,2CACC,4EAAA,CACA,kDAAA,CACA,mCAAA,CACA,8DAAA,CAIF,wCACC,4BAAA,CAGD,mCACC,0CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\nbody {\n\t/**\n\t * Set custom vue-select CSS variables.\n\t * Needs to be on the body (not :root) for theming to apply (see nextcloud/server#36462)\n\t */\n\n\t/* Search Input */\n\t--vs-search-input-color: var(--color-main-text);\n\t--vs-search-input-bg: var(--color-main-background);\n\t--vs-search-input-placeholder-color: var(--color-text-maxcontrast);\n\n\t/* Font */\n\t--vs-font-size: var(--default-font-size);\n\t--vs-line-height: var(--default-line-height);\n\n\t/* Disabled State */\n\t--vs-state-disabled-bg: var(--color-background-hover);\n\t--vs-state-disabled-color: var(--color-text-maxcontrast);\n\t--vs-state-disabled-controls-color: var(--color-text-maxcontrast);\n\t--vs-state-disabled-cursor: not-allowed;\n\t--vs-disabled-bg: var(--color-background-hover);\n\t--vs-disabled-color: var(--color-text-maxcontrast);\n\t--vs-disabled-cursor: not-allowed;\n\n\t/* Borders */\n\t--vs-border-color: var(--color-border-maxcontrast);\n\t--vs-border-width: 2px;\n\t--vs-border-style: solid;\n\t--vs-border-radius: var(--border-radius-large);\n\n\t/* Component Controls: Clear, Open Indicator */\n\t--vs-controls-color: var(--color-text-maxcontrast);\n\n\t/* Selected */\n\t--vs-selected-bg: var(--color-background-dark);\n\t--vs-selected-color: var(--color-main-text);\n\t--vs-selected-border-color: var(--vs-border-color);\n\t--vs-selected-border-style: var(--vs-border-style);\n\t--vs-selected-border-width: var(--vs-border-width);\n\n\t/* Dropdown */\n\t--vs-dropdown-bg: var(--color-main-background);\n\t--vs-dropdown-color: var(--color-main-text);\n\t--vs-dropdown-z-index: 9999;\n\t--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);\n\n\t/* Options */\n\t--vs-dropdown-option-padding: 8px 20px;\n\n\t/* Active State */\n\t--vs-dropdown-option--active-bg: var(--color-background-hover);\n\t--vs-dropdown-option--active-color: var(--color-main-text);\n\n\t/* Keyboard Focus State */\n\t--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);\n\n\t/* Deselect State */\n\t--vs-dropdown-option--deselect-bg: var(--color-error);\n\t--vs-dropdown-option--deselect-color: #fff;\n\n\t/* Transitions */\n\t--vs-transition-duration: 0ms;\n}\n\n.v-select.select {\n\t/* Override default vue-select styles */\n\tmin-height: $clickable-area;\n\tmin-width: 260px;\n\tmargin: 0;\n\n\t.vs__selected {\n\t\tmin-height: 36px;\n\t\tpadding: 0 0.5em;\n\t\tborder-radius: calc(var(--vs-border-radius) - 4px) !important;\n\t}\n\n\t.vs__clear {\n\t\tmargin-right: 2px;\n\t}\n\n\t&.vs--open .vs__dropdown-toggle {\n\t\tborder-color: var(--color-primary-element);\n\t\tborder-bottom-color: transparent;\n\t}\n\n\t&:not(.vs--disabled, .vs--open) .vs__dropdown-toggle:hover {\n\t\tborder-color: var(--color-primary-element);\n\t}\n\n\t&.vs--disabled {\n\t\t.vs__search,\n\t\t.vs__selected {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\n\t\t.vs__clear,\n\t\t.vs__deselect {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t&--no-wrap {\n\t\t.vs__selected-options {\n\t\t\tflex-wrap: nowrap;\n\t\t\toverflow: auto;\n\t\t\tmin-width: unset;\n\t\t\t.vs__selected {\n\t\t\t\tmin-width: unset;\n\t\t\t}\n\t\t}\n\t}\n\n\t&--drop-up {\n\t\t&.vs--open {\n\t\t\t.vs__dropdown-toggle {\n\t\t\t\tborder-radius: 0 0 var(--vs-border-radius) var(--vs-border-radius);\n\t\t\t\tborder-top-color: transparent;\n\t\t\t\tborder-bottom-color: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\t}\n\n\t.vs__selected-options {\n\t\t// If search is hidden, ensure that the height of the search is the same\n\t\tmin-height: 40px; // 36px search height + 4px search margin\n\n\t\t// Hide search from dom if unused to prevent unneeded flex wrap\n\t\t.vs__selected ~ .vs__search[readonly] {\n\t\t\tposition: absolute;\n\t\t}\n\t}\n\n\t&.vs--single {\n\t\t&.vs--loading,\n\t\t&.vs--open {\n\t\t\t.vs__selected {\n\t\t\t\t// Fix `max-width` for `position: absolute`\n\t\t\t\tmax-width: 100%;\n\t\t\t}\n\t\t}\n\t\t.vs__selected-options {\n\t\t\tflex-wrap: nowrap;\n\t\t}\n\t}\n}\n\n.vs__dropdown-menu {\n\tborder-color: var(--color-primary-element) !important;\n\tpadding: 4px !important;\n\n\t&--floating {\n\t\t/* Fallback styles overidden by programmatically set inline styles */\n\t\twidth: max-content;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\n\t\t&-placement-top {\n\t\t\tborder-radius: var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;\n\t\t\tborder-top-style: var(--vs-border-style) !important;\n\t\t\tborder-bottom-style: none !important;\n\t\t\tbox-shadow: 0px -1px 1px 0px var(--color-box-shadow) !important;\n\t\t}\n\t}\n\n\t.vs__dropdown-option {\n\t\tborder-radius: 6px !important;\n\t}\n\n\t.vs__no-options {\n\t\tcolor: var(--color-text-lighter) !important;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function o(e){for(var o=-1,a=0;a{"use strict";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{"use strict";e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},3330:(e,t,o)=>{"use strict";o.d(t,{Z:()=>y});var a=o(4262);const n={name:"NcMentionBubble",props:{id:{type:String,required:!0},title:{type:String,required:!0},icon:{type:String,required:!0},iconUrl:{type:[String,null],default:null},source:{type:String,required:!0},primary:{type:Boolean,default:!1}},computed:{avatarUrl:function(){return this.iconUrl?this.iconUrl:this.id&&"users"===this.source?this.getAvatarUrl(this.id,44):null},mentionText:function(){return this.id.includes(" ")||this.id.includes("/")?'@"'.concat(this.id,'"'):"@".concat(this.id)}},methods:{getAvatarUrl:function(e,t){return(0,a.generateUrl)("/avatar/{user}/{size}",{user:e,size:t})}}};var i=o(3379),r=o.n(i),s=o(7795),c=o.n(s),l=o(569),u=o.n(l),d=o(3565),m=o.n(d),p=o(9216),h=o.n(p),g=o(4589),v=o.n(g),f=o(6466),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,"head"),A.domAPI=c(),A.insertStyleElement=h(),r()(f.Z,A),f.Z&&f.Z.locals&&f.Z.locals;const y=(0,o(1900).Z)(n,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"mention-bubble",class:{"mention-bubble--primary":e.primary},attrs:{contenteditable:"false"}},[t("span",{staticClass:"mention-bubble__wrapper"},[t("span",{staticClass:"mention-bubble__content"},[t("span",{staticClass:"mention-bubble__icon",class:[e.icon,"mention-bubble__icon--".concat(e.avatarUrl?"with-avatar":"")],style:e.avatarUrl?{backgroundImage:"url(".concat(e.avatarUrl,")")}:null}),e._v(" "),t("span",{staticClass:"mention-bubble__title",attrs:{role:"heading",title:e.title}})]),e._v(" "),t("span",{staticClass:"mention-bubble__select",attrs:{role:"none"}},[e._v(e._s(e.mentionText))])])])}),[],!1,null,"7dba3f6e",null).exports},9158:()=>{},5727:()=>{},3051:()=>{},2102:()=>{},6274:()=>{},1287:()=>{},8488:()=>{},9280:()=>{},2405:()=>{},8220:()=>{},4076:()=>{},1900:(e,t,o)=>{"use strict";function a(e,t,o,a,n,i,r,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=o,l._compiled=!0),a&&(l.functional=!0),i&&(l._scopeId="data-v-"+i),r?(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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},l._ssrRegister=c):n&&(c=s?function(){n.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:n),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(e,t){return c.call(t),u(e,t)}}else{var d=l.beforeCreate;l.beforeCreate=d?[].concat(d,c):[c]}return{exports:e,options:l}}o.d(t,{Z:()=>a})},7127:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS00LTRoMjR2MjRILTR6Ii8+PHBhdGggZD0iTTYuOS4xQzMgLjYtLjEgNC0uMSA4YzAgNC40IDMuNiA4IDggOCA0IDAgNy40LTMgOC02LjktMS4yIDEuMy0yLjkgMi4xLTQuNyAyLjEtMy41IDAtNi40LTIuOS02LjQtNi40IDAtMS45LjgtMy42IDIuMS00Ljd6IiBmaWxsPSIjZjRhMzMxIi8+PC9zdmc+Cg=="},2605:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTS00LTRoMjR2MjRILTRWLTR6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhzMy42IDggOCA4IDgtMy42IDgtOC0zLjYtOC04LTh6IiBmaWxsPSIjZWQ0ODRjIi8+PHBhdGggZD0iTTUgNi41aDZjLjggMCAxLjUuNyAxLjUgMS41cy0uNyAxLjUtMS41IDEuNUg1Yy0uOCAwLTEuNS0uNy0xLjUtMS41UzQuMiA2LjUgNSA2LjV6IiBmaWxsPSIjZmRmZmZmIi8+PC9zdmc+Cg=="},3423:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTQuOCAxMS4yaDYuNFY0LjhINC44djYuNHpNOCAwQzMuNiAwIDAgMy42IDAgOHMzLjYgOCA4IDggOC0zLjYgOC04LTMuNi04LTgtOHoiIGZpbGw9IiM0OWIzODIiLz48L3N2Zz4K"},3607:e=>{"use strict";e.exports=o(22200)},768:e=>{"use strict";e.exports=o(21624)},7713:e=>{"use strict";e.exports=o(42515)},542:e=>{"use strict";e.exports=o(57888)},7931:e=>{"use strict";e.exports=o(23955)},4262:e=>{"use strict";e.exports=o(79753)},9454:e=>{"use strict";e.exports=o(73045)},4505:e=>{"use strict";e.exports=o(15303)},2734:e=>{"use strict";e.exports=o(20144)},8618:e=>{"use strict";e.exports=o(82675)},1441:e=>{"use strict";e.exports=o(89115)}},t={};function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,n),i.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.b=document.baseURI||self.location.href,n.nc=void 0;var i={};return(()=>{"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function o(e){for(var o=1;o_});var s=n(4378),c=n(7176),l=n(768),u=n.n(l),d=n(4262);function m(e){return m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},m(e)}function p(){p=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function h(){}function g(){}function v(){}var f={};c(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==m(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function h(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}var g=function e(t){var o={};if(1===t.nodeType){if(t.attributes.length>0){o["@attributes"]={};for(var a=0;a\n\t\t\t\t\t\n\t\t\t\t\t \n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t \n\t\t\t\t\t'});case 4:return t=e.sent,e.abrupt("return",v(t.data));case 6:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){h(i,a,n,r,s,"next",e)}function s(e){h(i,a,n,r,s,"throw",e)}r(void 0)}))});return function(){return t.apply(this,arguments)}}(),A=n(932),y=["fetchTags","optionsFilter","passthru"];function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}function b(){b=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==k(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function S(e){for(var t=1;t=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}(e,y));return t},tags:function(){return this.fetchTags?this.availableTags:this.options}},created:function(){var e,t=this;return(e=b().mark((function e(){var o;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.fetchTags){e.next=2;break}return e.abrupt("return");case 2:return e.prev=2,e.next=5,f();case 5:o=e.sent,t.availableTags=o,e.next=12;break;case 9:e.prev=9,e.t0=e.catch(2),a.error("Loading systemtags failed",e.t0);case 12:case"end":return e.stop()}}),e,null,[[2,9]])})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){C(i,a,n,r,s,"next",e)}function s(e){C(i,a,n,r,s,"throw",e)}r(void 0)}))})()},methods:{handleInput:function(e){this.multiple?this.$emit("input",e.map((function(e){return e.id}))):null===e?this.$emit("input",null):this.$emit("input",e.id)}}};var x=n(1900),j=n(4076),O=n.n(j),E=(0,x.Z)(N,(function(){var e=this,t=e._self._c;return t("NcSelect",e._g(e._b({attrs:{options:e.availableOptions,"close-on-select":!e.multiple,value:e.passthru?e.value:e.localValue},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:"option",fn:function(o){return[t("NcEllipsisedOption",{attrs:{name:e.getOptionLabel(o),search:e.search}})]}},{key:"selected-option",fn:function(o){return[t("NcEllipsisedOption",{attrs:{name:e.getOptionLabel(o),search:e.search}})]}},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},"NcSelect",e.propsToForward,!1),o(o({},e.$listeners),{},{input:e.passthru?e.$listeners.input:e.handleInput})))}),[],!1,null,null,null);"function"==typeof O()&&O()(E);const _=E.exports})(),i})()))},85891:function(e,o,a){"use strict";var n=a(20144),i=a(31352),r=a(69183),s=a(65358),c=a(5656),l=a(77958),u=a(41922),d=a(19755),m=a.n(d),p=a(48033),h=a(80351),g=a.n(h),v=a(10250),f=a.n(v),A=a(45400),y=a.n(A),k=a(93455),b=a.n(k);function C(e){return C="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},C(e)}function w(){w=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==C(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function S(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function P(e){return N.apply(this,arguments)}function N(){var e;return e=w().mark((function e(t){var o,a,n;return w().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,p.Z)({method:"PROPFIND",url:t,data:(0,c.h7)()});case 2:return o=e.sent,a=OCA.Files.App.fileList.filesClient._client.parseMultiStatus(o.data),(n=OCA.Files.App.fileList.filesClient._parseFileInfo(a[0])).get=function(e){return n[e]},n.isDirectory=function(){return"httpd/unix-directory"===n.mimetype},e.abrupt("return",n);case 8:case"end":return e.stop()}}),e)})),N=function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){S(i,a,n,r,s,"next",e)}function s(e){S(i,a,n,r,s,"throw",e)}r(void 0)}))},N.apply(this,arguments)}var x={name:"LegacyView",props:{component:{type:Object,required:!0},fileInfo:{type:Object,default:function(){},required:!0}},watch:{fileInfo:function(e){this.setFileInfo(e)}},mounted:function(){this.component.$el.replaceAll(this.$el),this.setFileInfo(this.fileInfo)},methods:{setFileInfo:function(e){this.component.setFileInfo(new OCA.Files.FileInfoModel(e))}}},j=a(51900),O=(0,j.Z)(x,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,E=a(62574);function _(e){return _="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function B(){B=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new P(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(N([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==_(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=C(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function C(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,C(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function N(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function z(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function F(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){z(i,a,n,r,s,"next",e)}function s(e){z(i,a,n,r,s,"throw",e)}r(void 0)}))}}var T,M={name:"SidebarTab",components:{NcAppSidebarTab:a.n(E)(),NcEmptyContent:b()},props:{fileInfo:{type:Object,default:function(){},required:!0},id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,required:!1},onMount:{type:Function,required:!0},onUpdate:{type:Function,required:!0},onDestroy:{type:Function,required:!0},onScrollBottomReached:{type:Function,default:function(){}}},data:function(){return{loading:!0}},computed:{activeTab:function(){return this.$parent.activeTab}},watch:{fileInfo:function(e,t){var o=this;return F(B().mark((function a(){return B().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(e.id===t.id){a.next=5;break}return o.loading=!0,a.next=4,o.onUpdate(o.fileInfo);case 4:o.loading=!1;case 5:case"end":return a.stop()}}),a)})))()}},mounted:function(){var e=this;return F(B().mark((function t(){return B().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.loading=!0,t.next=3,e.onMount(e.$refs.mount,e.fileInfo,e.$refs.tab);case 3:e.loading=!1;case 4:case"end":return t.stop()}}),t)})))()},beforeDestroy:function(){var e=this;return F(B().mark((function t(){return B().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.onDestroy();case 2:case"end":return t.stop()}}),t)})))()}},L=(0,j.Z)(M,(function(){var e=this,t=e._self._c;return t("NcAppSidebarTab",{ref:"tab",attrs:{id:e.id,name:e.name,icon:e.icon},on:{bottomReached:e.onScrollBottomReached},scopedSlots:e._u([{key:"icon",fn:function(){return[e._t("icon")]},proxy:!0}],null,!0)},[e._v(" "),e.loading?t("NcEmptyContent",{attrs:{icon:"icon-loading"}}):e._e(),e._v(" "),t("div",{ref:"mount"})],1)}),[],!1,null,null,null).exports,D=a(64192),G=a.n(D),U=a(11677),R=a.n(U),I=a(64024),q=a(79753),$=a(14596),H=(0,q.generateRemoteUrl)("dav"),W=(0,$.eI)(H,{headers:{requesttoken:null!==(T=(0,l.IH)())&&void 0!==T?T:""}}),Z=a(23204),V=a.n(Z);function K(e){return K="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function Y(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function J(e,t,o){return(t=function(e){var t=function(e,t){if("object"!==K(e)||null===e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var a=o.call(e,"string");if("object"!==K(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===K(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function Q(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&(e=e.substring(0,t));var o,a=e.split("/");do{o=a[a.length-1],a.pop()}while(!o&&a.length>0);return Number(o)},te=function(e){var t=function(e){for(var t=1;t=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function ce(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function le(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){ce(i,a,n,r,s,"next",e)}function s(e){ce(i,a,n,r,s,"throw",e)}r(void 0)}))}}var ue='\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n',de=function(){var e=le(se().mark((function e(){var t,o;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=1,e.next=4,W.getDirectoryContents("/systemtags",{data:ue,details:!0,glob:"/systemtags/*"});case 4:return t=e.sent,o=t.data,e.abrupt("return",X(o));case 9:throw e.prev=9,e.t0=e.catch(1),oe.error((0,i.Iu)("systemtags","Failed to load tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(){return e.apply(this,arguments)}}(),me=function(){var e=le(se().mark((function e(){var t,o,a;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=(0,q.generateUrl)("/apps/systemtags/lastused"),e.prev=1,e.next=4,p.Z.get(t);case 4:return o=e.sent,a=o.data,e.abrupt("return",a.map(Number));case 9:throw e.prev=9,e.t0=e.catch(1),oe.error((0,i.Iu)("systemtags","Failed to load last used tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load last used tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(){return e.apply(this,arguments)}}(),pe=function(){var e=le(se().mark((function e(t){var o,a,n;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o="/systemtags-relations/files/"+t,e.prev=1,e.next=4,W.getDirectoryContents(o,{data:ue,details:!0,glob:"/systemtags-relations/files/*/*"});case 4:return a=e.sent,n=a.data,e.abrupt("return",X(n));case 9:throw e.prev=9,e.t0=e.catch(1),oe.error((0,i.Iu)("systemtags","Failed to load selected tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load selected tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(t){return e.apply(this,arguments)}}(),he=function(){var e=le(se().mark((function e(t,o){var a,n;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a="/systemtags-relations/files/"+t+"/"+o.id,n=te(o),e.prev=2,e.next=5,W.customRequest(a,{method:"PUT",data:n});case 5:e.next=11;break;case 7:throw e.prev=7,e.t0=e.catch(2),oe.error((0,i.Iu)("systemtags","Failed to select tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to select tag"));case 11:case"end":return e.stop()}}),e,null,[[2,7]])})));return function(t,o){return e.apply(this,arguments)}}(),ge=function(){var e=le(se().mark((function e(t,o){var a,n,r,s,c;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a=te(o),e.prev=2,e.next=5,W.customRequest("/systemtags",{method:"POST",data:a});case 5:if(n=e.sent,r=n.headers,!(s=r.get("content-location"))){e.next=13;break}return c=ie(ie({},a),{},{id:ee(s)}),e.next=12,he(t,c);case 12:return e.abrupt("return",c.id);case 13:throw oe.error((0,i.Iu)("systemtags",'Missing "Content-Location" header')),new Error((0,i.Iu)("systemtags",'Missing "Content-Location" header'));case 17:throw e.prev=17,e.t0=e.catch(2),oe.error((0,i.Iu)("systemtags","Failed to create tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to create tag"));case 21:case"end":return e.stop()}}),e,null,[[2,17]])})));return function(t,o){return e.apply(this,arguments)}}(),ve=function(){var e=le(se().mark((function e(t,o){var a;return se().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a="/systemtags-relations/files/"+t+"/"+o.id,e.prev=1,e.next=4,W.deleteFile(a);case 4:e.next=10;break;case 6:throw e.prev=6,e.t0=e.catch(1),oe.error((0,i.Iu)("systemtags","Failed to delete tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to delete tag"));case 10:case"end":return e.stop()}}),e,null,[[1,6]])})));return function(t,o){return e.apply(this,arguments)}}();function fe(e){return fe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},fe(e)}var Ae=["id","displayName"];function ye(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function ke(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function be(e){for(var t=1;t=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function Se(e,t){var o="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!o){if(Array.isArray(e)||(o=Pe(e))||t&&e&&"number"==typeof e.length){o&&(e=o);var a=0,n=function(){};return{s:n,n:function(){return a>=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,r=!0,s=!1;return{s:function(){o=o.call(e)},n:function(){var e=o.next();return r=e.done,e},e:function(e){s=!0,i=e},f:function(){try{r||null==o.return||o.return()}finally{if(s)throw i}}}}function Pe(e,t){if(e){if("string"==typeof e)return Ne(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?Ne(e,t):void 0}}function Ne(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o0),t.next=11;break;case 8:t.prev=8,t.t0=t.catch(1),(0,I.x2)((0,i.Iu)("systemtags","Failed to load selected tags"));case 11:e.loadingTags=!1;case 12:case"end":return t.stop()}}),t,null,[[1,8]])})))()}}},methods:{t:i.Iu,createOption:function(e){var t,o=Se(this.sortedTags);try{for(o.s();!(t=o.n()).done;){var a=t.value,n=(a.id,a.displayName),i=ye(a,Ae);if(n===e&&Object.entries(i).every((function(e){var t,o,a=(o=2,function(e){if(Array.isArray(e))return e}(t=e)||function(e,t){var o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a,n,i,r,s=[],c=!0,l=!1;try{if(i=(o=o.call(e)).next,0===t){if(Object(o)!==o)return;c=!1}else for(;!(c=(a=i.call(o)).done)&&(s.push(a.value),s.length!==t);c=!0);}catch(e){l=!0,n=e}finally{try{if(!c&&null!=o.return&&(r=o.return(),Object(r)!==r))return}finally{if(l)throw n}}return s}}(t,o)||Pe(t,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),n=a[0],i=a[1];return Oe[n]===i})))return a}}catch(e){o.e(e)}finally{o.f()}return be(be({},Oe),{},{displayName:e})},handleInput:function(e){this.selectedTags=e.filter((function(e){return Boolean(e.id)}))},handleSelect:function(e){var t=this;return je(we().mark((function o(){var a,n;return we().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if((a=e[e.length-1]).id){o.next=3;break}return o.abrupt("return");case 3:return t.loading=!0,o.prev=4,o.next=7,he(t.fileId,a);case 7:n=function(e,t){return e.id===a.id?-1:t.id===a.id?1:0},t.sortedTags.sort(n),o.next=14;break;case 11:o.prev=11,o.t0=o.catch(4),(0,I.x2)((0,i.Iu)("systemtags","Failed to select tag"));case 14:t.loading=!1;case 15:case"end":return o.stop()}}),o,null,[[4,11]])})))()},handleCreate:function(e){var t=this;return je(we().mark((function o(){var a,n;return we().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return t.loading=!0,o.prev=1,o.next=4,ge(t.fileId,e);case 4:a=o.sent,n=be(be({},e),{},{id:a}),t.sortedTags.unshift(n),t.selectedTags.push(n),o.next=13;break;case 10:o.prev=10,o.t0=o.catch(1),(0,I.x2)((0,i.Iu)("systemtags","Failed to create tag"));case 13:t.loading=!1;case 14:case"end":return o.stop()}}),o,null,[[1,10]])})))()},handleDeselect:function(e){var t=this;return je(we().mark((function o(){return we().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return t.loading=!0,o.prev=1,o.next=4,ve(t.fileId,e);case 4:o.next=9;break;case 6:o.prev=6,o.t0=o.catch(1),(0,I.x2)((0,i.Iu)("systemtags","Failed to delete tag"));case 9:t.loading=!1;case 10:case"end":return o.stop()}}),o,null,[[1,6]])})))()}}}),_e=Ee,Be=a(93379),ze=a.n(Be),Fe=a(7795),Te=a.n(Fe),Me=a(90569),Le=a.n(Me),De=a(3565),Ge=a.n(De),Ue=a(19216),Re=a.n(Ue),Ie=a(44589),qe=a.n(Ie),$e=a(85570),He={};He.styleTagTransform=qe(),He.setAttributes=Ge(),He.insert=Le().bind(null,"head"),He.domAPI=Te(),He.insertStyleElement=Re(),ze()($e.Z,He),$e.Z&&$e.Z.locals&&$e.Z.locals;var We=(0,j.Z)(_e,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("div",{staticClass:"system-tags"},[e.loadingTags?t("NcLoadingIcon",{attrs:{name:e.t("systemtags","Loading collaborative tags …"),size:32}}):[t("label",{attrs:{for:"system-tags-input"}},[e._v(e._s(e.t("systemtags","Search or create collaborative tags")))]),e._v(" "),t("NcSelectTags",{staticClass:"system-tags__select",attrs:{"input-id":"system-tags-input",placeholder:e.t("systemtags","Collaborative tags …"),options:e.sortedTags,value:e.selectedTags,"create-option":e.createOption,taggable:!0,passthru:!0,"fetch-tags":!1,loading:e.loading},on:{input:e.handleInput,"option:selected":e.handleSelect,"option:created":e.handleCreate,"option:deselected":e.handleDeselect},scopedSlots:e._u([{key:"no-options",fn:function(){return[e._v("\n\t\t\t\t"+e._s(e.t("systemtags","No tags to select, type to create a new tag"))+"\n\t\t\t")]},proxy:!0}])})]],2)}),[],!1,null,"7746ac6e",null).exports,Ze=a(25108);function Ve(e){return Ve="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ve(e)}function Ke(){Ke=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new P(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(N([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==Ve(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=C(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function C(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,C(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function N(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function Ye(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function Je(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){Ye(i,a,n,r,s,"next",e)}function s(e){Ye(i,a,n,r,s,"throw",e)}r(void 0)}))}}var Qe={name:"Sidebar",components:{LegacyView:O,NcActionButton:y(),NcAppSidebar:f(),NcEmptyContent:b(),SidebarTab:L,SystemTags:We},data:function(){return{Sidebar:OCA.Files.Sidebar.state,showTags:!1,error:null,loading:!0,fileInfo:null,starLoading:!1,isFullScreen:!1,hasLowHeight:!1}},computed:{file:function(){return this.Sidebar.file},tabs:function(){return this.Sidebar.tabs},views:function(){return this.Sidebar.views},davPath:function(){var e=OC.getCurrentUser().uid;return OC.linkToRemote("dav/files/".concat(e).concat((0,s.Ec)(this.file)))},activeTab:function(){return this.Sidebar.activeTab},subtitle:function(){return"".concat(this.size,", ").concat(this.time)},time:function(){return OC.Util.relativeModifiedDate(this.fileInfo.mtime)},fullTime:function(){return g()(this.fileInfo.mtime).format("LLL")},size:function(){return OC.Util.humanFileSize(this.fileInfo.size)},background:function(){return this.getPreviewIfAny(this.fileInfo)},appSidebar:function(){return this.fileInfo?{"data-mimetype":this.fileInfo.mimetype,"star-loading":this.starLoading,active:this.activeTab,background:this.background,class:{"app-sidebar--has-preview":this.fileInfo.hasPreview&&!this.isFullScreen,"app-sidebar--full":this.isFullScreen},compact:this.hasLowHeight||!this.fileInfo.hasPreview||this.isFullScreen,loading:this.loading,starred:this.fileInfo.isFavourited,subname:this.subtitle,subtitle:this.fullTime,name:this.fileInfo.name,title:this.fileInfo.name}:this.error?{key:"error",subname:"",name:"",class:{"app-sidebar--full":this.isFullScreen}}:{loading:this.loading,subname:"",name:"",class:{"app-sidebar--full":this.isFullScreen}}},defaultAction:function(){return this.fileInfo&&OCA.Files&&OCA.Files.App&&OCA.Files.App.fileList&&OCA.Files.App.fileList.fileActions&&OCA.Files.App.fileList.fileActions.getDefaultFileAction&&OCA.Files.App.fileList.fileActions.getDefaultFileAction(this.fileInfo.mimetype,this.fileInfo.type,OC.PERMISSION_READ)},defaultActionListener:function(){return this.defaultAction?"figure-click":null},isSystemTagsEnabled:function(){return OCA&&"SystemTags"in OCA}},created:function(){window.addEventListener("resize",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize)},methods:{canDisplay:function(e){return e.enabled(this.fileInfo)},resetData:function(){var e=this;this.error=null,this.fileInfo=null,this.$nextTick((function(){e.$refs.tabs&&e.$refs.tabs.updateTabs()}))},getPreviewIfAny:function(e){return e.hasPreview&&!this.isFullScreen?OC.generateUrl("/core/preview?fileId=".concat(e.id,"&x=").concat(screen.width,"&y=").concat(screen.height,"&a=true")):this.getIconUrl(e)},getIconUrl:function(e){var t=e.mimetype||"application/octet-stream";return"httpd/unix-directory"===t?"shared"===e.mountType||"shared-root"===e.mountType?OC.MimeType.getIconUrl("dir-shared"):"external-root"===e.mountType?OC.MimeType.getIconUrl("dir-external"):void 0!==e.mountType&&""!==e.mountType?OC.MimeType.getIconUrl("dir-"+e.mountType):e.shareTypes&&(e.shareTypes.indexOf(u.D.SHARE_TYPE_LINK)>-1||e.shareTypes.indexOf(u.D.SHARE_TYPE_EMAIL)>-1)?OC.MimeType.getIconUrl("dir-public"):e.shareTypes&&e.shareTypes.length>0?OC.MimeType.getIconUrl("dir-shared"):OC.MimeType.getIconUrl("dir"):OC.MimeType.getIconUrl(t)},setActiveTab:function(e){OCA.Files.Sidebar.setActiveTab(e),this.tabs.forEach((function(t){try{t.setIsActive(e===t.id)}catch(e){logger.error("Error while setting tab active state",{error:e,id:t.id,tab:t})}}))},toggleStarred:function(e){var o=this;return Je(Ke().mark((function a(){var n,i;return Ke().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.prev=0,o.starLoading=!0,a.next=4,(0,p.Z)({method:"PROPPATCH",url:o.davPath,data:'\n\t\t\t\t\t\t\n\t\t\t\t\t\t'.concat(e?"":"","\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t").concat(e?"":"","\n\t\t\t\t\t\t")});case 4:n="dir"===o.fileInfo.type,i=n?c.gt:c.$B,(0,r.j8)(e?"files:favorites:added":"files:favorites:removed",new i({fileid:o.fileInfo.id,source:o.davPath,root:"/files/".concat((0,l.ts)().uid),mime:n?void 0:o.fileInfo.mimetype})),a.next=13;break;case 9:a.prev=9,a.t0=a.catch(0),OC.Notification.showTemporary(t("files","Unable to change the favourite state of the file")),Ze.error("Unable to change favourite state",a.t0);case 13:o.starLoading=!1;case 14:case"end":return a.stop()}}),a,null,[[0,9]])})))()},onDefaultAction:function(){this.defaultAction&&this.defaultAction.action(this.fileInfo.name,{fileInfo:this.fileInfo,dir:this.fileInfo.dir,fileList:OCA.Files.App.fileList,$file:m()("body")})},toggleTags:function(){this.showTags=!this.showTags},open:function(e){var o=this;return Je(Ke().mark((function a(){return Ke().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(e&&""!==e.trim()){a.next=2;break}throw new Error("Invalid path '".concat(e,"'"));case 2:return o.Sidebar.file=e,o.error=null,o.loading=!0,a.prev=5,a.next=8,P(o.davPath);case 8:o.fileInfo=a.sent,o.fileInfo.dir=o.file.split("/").slice(0,-1).join("/"),o.views.forEach((function(e){e.setFileInfo(o.fileInfo)})),o.$nextTick((function(){o.$refs.tabs&&o.$refs.tabs.updateTabs(),o.setActiveTab(o.Sidebar.activeTab||o.tabs[0].id)})),a.next=19;break;case 14:throw a.prev=14,a.t0=a.catch(5),o.error=t("files","Error while loading the file data"),Ze.error("Error while loading the file data",a.t0),new Error(a.t0);case 19:return a.prev=19,o.loading=!1,a.finish(19);case 22:case"end":return a.stop()}}),a,null,[[5,14,19,22]])})))()},close:function(){this.Sidebar.file="",this.showTags=!1,this.resetData()},setFullScreenMode:function(e){var t,o,a,n;this.isFullScreen=e,e?(null===(t=document.querySelector("#content"))||void 0===t?void 0:t.classList.add("with-sidebar--full"))||null===(o=document.querySelector("#content-vue"))||void 0===o||o.classList.add("with-sidebar--full"):(null===(a=document.querySelector("#content"))||void 0===a?void 0:a.classList.remove("with-sidebar--full"))||null===(n=document.querySelector("#content-vue"))||void 0===n||n.classList.remove("with-sidebar--full")},handleOpening:function(){(0,r.j8)("files:sidebar:opening")},handleOpened:function(){(0,r.j8)("files:sidebar:opened")},handleClosing:function(){(0,r.j8)("files:sidebar:closing")},handleClosed:function(){(0,r.j8)("files:sidebar:closed")},handleWindowResize:function(){this.hasLowHeight=document.documentElement.clientHeight<1024}}},Xe=a(13698),et={};et.styleTagTransform=qe(),et.setAttributes=Ge(),et.insert=Le().bind(null,"head"),et.domAPI=Te(),et.insertStyleElement=Re(),ze()(Xe.Z,et),Xe.Z&&Xe.Z.locals&&Xe.Z.locals;var tt=(0,j.Z)(Qe,(function(){var e=this,t=e._self._c;return e.file?t("NcAppSidebar",e._b({ref:"sidebar",attrs:{"force-menu":!0,tabindex:"0"},on:e._d({close:e.close,"update:active":e.setActiveTab,"update:starred":e.toggleStarred,opening:e.handleOpening,opened:e.handleOpened,closing:e.handleClosing,closed:e.handleClosed},[e.defaultActionListener,function(t){return t.stopPropagation(),t.preventDefault(),e.onDefaultAction.apply(null,arguments)}]),scopedSlots:e._u([e.fileInfo?{key:"description",fn:function(){return[t("div",{staticClass:"sidebar__description"},[e.isSystemTagsEnabled?t("SystemTags",{directives:[{name:"show",rawName:"v-show",value:e.showTags,expression:"showTags"}],attrs:{"file-id":e.fileInfo.id},on:{"has-tags":function(t){return e.showTags=t}}}):e._e(),e._v(" "),e._l(e.views,(function(o){return t("LegacyView",{key:o.cid,attrs:{component:o,"file-info":e.fileInfo}})}))],2)]},proxy:!0}:null,e.fileInfo?{key:"secondary-actions",fn:function(){return[e.isSystemTagsEnabled?t("NcActionButton",{attrs:{"close-after-click":!0,icon:"icon-tag"},on:{click:e.toggleTags}},[e._v("\n\t\t\t"+e._s(e.t("files","Tags"))+"\n\t\t")]):e._e()]},proxy:!0}:null],null,!0)},"NcAppSidebar",e.appSidebar,!1),[e._v(" "),e._v(" "),e.error?t("NcEmptyContent",{attrs:{icon:"icon-error"}},[e._v("\n\t\t"+e._s(e.error)+"\n\t")]):e.fileInfo?e._l(e.tabs,(function(o){return[o.enabled(e.fileInfo)?t("SidebarTab",{directives:[{name:"show",rawName:"v-show",value:!e.loading,expression:"!loading"}],key:o.id,attrs:{id:o.id,name:o.name,icon:o.icon,"on-mount":o.mount,"on-update":o.update,"on-destroy":o.destroy,"on-scroll-bottom-reached":o.scrollBottomReached,"file-info":e.fileInfo},scopedSlots:e._u([void 0!==o.iconSvg?{key:"icon",fn:function(){return[t("span",{staticClass:"svg-icon",domProps:{innerHTML:e._s(o.iconSvg)}})]},proxy:!0}:null],null,!0)}):e._e()]})):e._e()],2):e._e()}),[],!1,null,"7693eba4",null),ot=tt.exports,at=a(25108);function nt(e){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},nt(e)}function it(e,t){for(var o=0;o-1?(at.error("An tab with the same id ".concat(e.id," already exists"),e),!1):(this._state.tabs.push(e),!0)}},{key:"registerSecondaryView",value:function(e){return this._state.views.findIndex((function(t){return t.id===e.id}))>-1?(at.error("A similar view already exists",e),!1):(this._state.views.push(e),!0)}},{key:"file",get:function(){return this._state.file}},{key:"setActiveTab",value:function(e){this._state.activeTab=e}}])&&it(t.prototype,o),Object.defineProperty(t,"prototype",{writable:!1}),e}(),ct=a(57005);function lt(e){return lt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},lt(e)}function ut(e,t){for(var o=0;o0&&void 0!==arguments[0]?arguments[0]:{},a=o.id,n=o.name,i=o.icon,r=o.iconSvg,s=o.mount,c=o.setIsActive,l=o.update,u=o.destroy,d=o.enabled,m=o.scrollBottomReached;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),dt(this,"_id",void 0),dt(this,"_name",void 0),dt(this,"_icon",void 0),dt(this,"_iconSvgSanitized",void 0),dt(this,"_mount",void 0),dt(this,"_setIsActive",void 0),dt(this,"_update",void 0),dt(this,"_destroy",void 0),dt(this,"_enabled",void 0),dt(this,"_scrollBottomReached",void 0),void 0===d&&(d=function(){return!0}),void 0===m&&(m=function(){}),"string"!=typeof a||""===a.trim())throw new Error("The id argument is not a valid string");if("string"!=typeof n||""===n.trim())throw new Error("The name argument is not a valid string");if(("string"!=typeof i||""===i.trim())&&"string"!=typeof r)throw new Error("Missing valid string for icon or iconSvg argument");if("function"!=typeof s)throw new Error("The mount argument should be a function");if(void 0!==c&&"function"!=typeof c)throw new Error("The setIsActive argument should be a function");if("function"!=typeof l)throw new Error("The update argument should be a function");if("function"!=typeof u)throw new Error("The destroy argument should be a function");if("function"!=typeof d)throw new Error("The enabled argument should be a function");if("function"!=typeof m)throw new Error("The scrollBottomReached argument should be a function");this._id=a,this._name=n,this._icon=i,this._mount=s,this._setIsActive=c,this._update=l,this._destroy=u,this._enabled=d,this._scrollBottomReached=m,"string"==typeof r&&(0,ct.t)(r).then((function(e){t._iconSvgSanitized=e}))}var t,o;return t=e,(o=[{key:"id",get:function(){return this._id}},{key:"name",get:function(){return this._name}},{key:"icon",get:function(){return this._icon}},{key:"iconSvg",get:function(){return this._iconSvgSanitized}},{key:"mount",get:function(){return this._mount}},{key:"setIsActive",get:function(){return this._setIsActive||function(){}}},{key:"update",get:function(){return this._update}},{key:"destroy",get:function(){return this._destroy}},{key:"enabled",get:function(){return this._enabled}},{key:"scrollBottomReached",get:function(){return this._scrollBottomReached}}])&&ut(t.prototype,o),Object.defineProperty(t,"prototype",{writable:!1}),e}(),ht=a(25108);n.default.prototype.t=i.Iu,window.OCA.Files||(window.OCA.Files={}),Object.assign(window.OCA.Files,{Sidebar:new st}),Object.assign(window.OCA.Files.Sidebar,{Tab:pt}),ht.debug("OCA.Files.Sidebar initialized"),window.addEventListener("DOMContentLoaded",(function(){var e=document.querySelector("body > .content")||document.querySelector("body > #content");if(e&&!document.getElementById("app-sidebar")){var t=document.createElement("div");t.id="app-sidebar",e.appendChild(t)}var o=new(n.default.extend(ot))({name:"SidebarRoot"});o.$mount("#app-sidebar"),window.OCA.Files.Sidebar.open=o.open,window.OCA.Files.Sidebar.close=o.close,window.OCA.Files.Sidebar.setFullScreenMode=o.setFullScreenMode}))},23204:function(e){"use strict";const t=/[\p{Lu}]/u,o=/[\p{Ll}]/u,a=/^[\p{Lu}](?![\p{Lu}])/gu,n=/([\p{Alpha}\p{N}_]|$)/u,i=/[_.\- ]+/,r=new RegExp("^"+i.source),s=new RegExp(i.source+n.source,"gu"),c=new RegExp("\\d+"+n.source,"gu"),l=(e,n)=>{if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");if(n={pascalCase:!1,preserveConsecutiveUppercase:!1,...n},0===(e=Array.isArray(e)?e.map((e=>e.trim())).filter((e=>e.length)).join("-"):e.trim()).length)return"";const i=!1===n.locale?e=>e.toLowerCase():e=>e.toLocaleLowerCase(n.locale),l=!1===n.locale?e=>e.toUpperCase():e=>e.toLocaleUpperCase(n.locale);return 1===e.length?n.pascalCase?l(e):i(e):(e!==i(e)&&(e=((e,a,n)=>{let i=!1,r=!1,s=!1;for(let c=0;c(a.lastIndex=0,e.replace(a,(e=>t(e)))))(e,i):i(e),n.pascalCase&&(e=l(e.charAt(0))+e.slice(1)),((e,t)=>(s.lastIndex=0,c.lastIndex=0,e.replace(s,((e,o)=>t(o))).replace(c,(e=>t(e)))))(e,l))};e.exports=l,e.exports.default=l},13698:function(e,t,o){"use strict";var a=o(87537),n=o.n(a),i=o(23645),r=o.n(i)()(n());r.push([e.id,'.app-sidebar--has-preview[data-v-7693eba4] .app-sidebar-header__figure{background-size:cover}.app-sidebar--has-preview[data-v-7693eba4][data-mimetype="text/plain"] .app-sidebar-header__figure,.app-sidebar--has-preview[data-v-7693eba4][data-mimetype="text/markdown"] .app-sidebar-header__figure{background-size:contain}.app-sidebar--full[data-v-7693eba4]{position:fixed !important;z-index:2025 !important;top:0 !important;height:100% !important}.app-sidebar[data-v-7693eba4] .app-sidebar-header__description{margin:0 16px 4px 16px !important}.app-sidebar .svg-icon[data-v-7693eba4] svg{width:20px;height:20px;fill:currentColor}.sidebar__description[data-v-7693eba4]{display:flex;flex-direction:column;width:100%;gap:8px 0}',"",{version:3,sources:["webpack://./apps/files/src/views/Sidebar.vue"],names:[],mappings:"AAGE,uEACC,qBAAA,CAKA,yMACC,uBAAA,CAKH,oCACC,yBAAA,CACA,uBAAA,CACA,gBAAA,CACA,sBAAA,CAIA,+DACC,iCAAA,CAKD,4CACC,UAAA,CACA,WAAA,CACA,iBAAA,CAKH,uCACC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA",sourcesContent:['\n.app-sidebar {\n\t&--has-preview:deep {\n\t\t.app-sidebar-header__figure {\n\t\t\tbackground-size: cover;\n\t\t}\n\n\t\t&[data-mimetype="text/plain"],\n\t\t&[data-mimetype="text/markdown"] {\n\t\t\t.app-sidebar-header__figure {\n\t\t\t\tbackground-size: contain;\n\t\t\t}\n\t\t}\n\t}\n\n\t&--full {\n\t\tposition: fixed !important;\n\t\tz-index: 2025 !important;\n\t\ttop: 0 !important;\n\t\theight: 100% !important;\n\t}\n\n\t:deep {\n\t\t.app-sidebar-header__description {\n\t\t\tmargin: 0 16px 4px 16px !important;\n\t\t}\n\t}\n\n\t.svg-icon {\n\t\t::v-deep svg {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n}\n\n.sidebar__description {\n\tdisplay: flex;\n\tflex-direction: column;\n\twidth: 100%;\n\tgap: 8px 0;\n}\n'],sourceRoot:""}]),t.Z=r},85570:function(e,t,o){"use strict";var a=o(87537),n=o.n(a),i=o(23645),r=o.n(i)()(n());r.push([e.id,".system-tags[data-v-7746ac6e]{display:flex;flex-direction:column}.system-tags label[for=system-tags-input][data-v-7746ac6e]{margin-bottom:2px}.system-tags__select[data-v-7746ac6e]{width:100%}.system-tags__select[data-v-7746ac6e] .vs__deselect{padding:0}","",{version:3,sources:["webpack://./apps/systemtags/src/components/SystemTags.vue"],names:[],mappings:"AACA,8BACC,YAAA,CACA,qBAAA,CAEA,2DACC,iBAAA,CAGD,sCACC,UAAA,CAEC,oDACC,SAAA",sourcesContent:['\n.system-tags {\n\tdisplay: flex;\n\tflex-direction: column;\n\n\tlabel[for="system-tags-input"] {\n\t\tmargin-bottom: 2px;\n\t}\n\n\t&__select {\n\t\twidth: 100%;\n\t\t:deep {\n\t\t\t.vs__deselect {\n\t\t\t\tpadding: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n'],sourceRoot:""}]),t.Z=r},46700:function(e,t,o){var a={"./af":42786,"./af.js":42786,"./ar":30867,"./ar-dz":14130,"./ar-dz.js":14130,"./ar-kw":96135,"./ar-kw.js":96135,"./ar-ly":56440,"./ar-ly.js":56440,"./ar-ma":47702,"./ar-ma.js":47702,"./ar-sa":16040,"./ar-sa.js":16040,"./ar-tn":37100,"./ar-tn.js":37100,"./ar.js":30867,"./az":31083,"./az.js":31083,"./be":9808,"./be.js":9808,"./bg":68338,"./bg.js":68338,"./bm":67438,"./bm.js":67438,"./bn":8905,"./bn-bd":76225,"./bn-bd.js":76225,"./bn.js":8905,"./bo":11560,"./bo.js":11560,"./br":1278,"./br.js":1278,"./bs":80622,"./bs.js":80622,"./ca":2468,"./ca.js":2468,"./cs":5822,"./cs.js":5822,"./cv":50877,"./cv.js":50877,"./cy":47373,"./cy.js":47373,"./da":24780,"./da.js":24780,"./de":59740,"./de-at":60217,"./de-at.js":60217,"./de-ch":60894,"./de-ch.js":60894,"./de.js":59740,"./dv":5300,"./dv.js":5300,"./el":50837,"./el.js":50837,"./en-au":78348,"./en-au.js":78348,"./en-ca":77925,"./en-ca.js":77925,"./en-gb":22243,"./en-gb.js":22243,"./en-ie":46436,"./en-ie.js":46436,"./en-il":47207,"./en-il.js":47207,"./en-in":44175,"./en-in.js":44175,"./en-nz":76319,"./en-nz.js":76319,"./en-sg":31662,"./en-sg.js":31662,"./eo":92915,"./eo.js":92915,"./es":55655,"./es-do":55251,"./es-do.js":55251,"./es-mx":96112,"./es-mx.js":96112,"./es-us":71146,"./es-us.js":71146,"./es.js":55655,"./et":5603,"./et.js":5603,"./eu":77763,"./eu.js":77763,"./fa":76959,"./fa.js":76959,"./fi":11897,"./fi.js":11897,"./fil":42549,"./fil.js":42549,"./fo":94694,"./fo.js":94694,"./fr":94470,"./fr-ca":63049,"./fr-ca.js":63049,"./fr-ch":52330,"./fr-ch.js":52330,"./fr.js":94470,"./fy":5044,"./fy.js":5044,"./ga":29295,"./ga.js":29295,"./gd":2101,"./gd.js":2101,"./gl":38794,"./gl.js":38794,"./gom-deva":27884,"./gom-deva.js":27884,"./gom-latn":23168,"./gom-latn.js":23168,"./gu":95349,"./gu.js":95349,"./he":24206,"./he.js":24206,"./hi":30094,"./hi.js":30094,"./hr":30316,"./hr.js":30316,"./hu":22138,"./hu.js":22138,"./hy-am":11423,"./hy-am.js":11423,"./id":29218,"./id.js":29218,"./is":90135,"./is.js":90135,"./it":90626,"./it-ch":10150,"./it-ch.js":10150,"./it.js":90626,"./ja":39183,"./ja.js":39183,"./jv":24286,"./jv.js":24286,"./ka":12105,"./ka.js":12105,"./kk":47772,"./kk.js":47772,"./km":18758,"./km.js":18758,"./kn":79282,"./kn.js":79282,"./ko":33730,"./ko.js":33730,"./ku":1408,"./ku.js":1408,"./ky":33291,"./ky.js":33291,"./lb":36841,"./lb.js":36841,"./lo":55466,"./lo.js":55466,"./lt":57010,"./lt.js":57010,"./lv":37595,"./lv.js":37595,"./me":39861,"./me.js":39861,"./mi":35493,"./mi.js":35493,"./mk":95966,"./mk.js":95966,"./ml":87341,"./ml.js":87341,"./mn":5115,"./mn.js":5115,"./mr":10370,"./mr.js":10370,"./ms":9847,"./ms-my":41237,"./ms-my.js":41237,"./ms.js":9847,"./mt":72126,"./mt.js":72126,"./my":56165,"./my.js":56165,"./nb":64924,"./nb.js":64924,"./ne":16744,"./ne.js":16744,"./nl":93901,"./nl-be":59814,"./nl-be.js":59814,"./nl.js":93901,"./nn":83877,"./nn.js":83877,"./oc-lnc":92135,"./oc-lnc.js":92135,"./pa-in":15858,"./pa-in.js":15858,"./pl":64495,"./pl.js":64495,"./pt":89520,"./pt-br":57971,"./pt-br.js":57971,"./pt.js":89520,"./ro":96459,"./ro.js":96459,"./ru":21793,"./ru.js":21793,"./sd":40950,"./sd.js":40950,"./se":10490,"./se.js":10490,"./si":90124,"./si.js":90124,"./sk":64249,"./sk.js":64249,"./sl":14985,"./sl.js":14985,"./sq":51104,"./sq.js":51104,"./sr":49131,"./sr-cyrl":79915,"./sr-cyrl.js":79915,"./sr.js":49131,"./ss":85893,"./ss.js":85893,"./sv":98760,"./sv.js":98760,"./sw":91172,"./sw.js":91172,"./ta":27333,"./ta.js":27333,"./te":23110,"./te.js":23110,"./tet":52095,"./tet.js":52095,"./tg":27321,"./tg.js":27321,"./th":9041,"./th.js":9041,"./tk":19005,"./tk.js":19005,"./tl-ph":75768,"./tl-ph.js":75768,"./tlh":89444,"./tlh.js":89444,"./tr":72397,"./tr.js":72397,"./tzl":28254,"./tzl.js":28254,"./tzm":51106,"./tzm-latn":30699,"./tzm-latn.js":30699,"./tzm.js":51106,"./ug-cn":9288,"./ug-cn.js":9288,"./uk":67691,"./uk.js":67691,"./ur":13795,"./ur.js":13795,"./uz":6791,"./uz-latn":60588,"./uz-latn.js":60588,"./uz.js":6791,"./vi":65666,"./vi.js":65666,"./x-pseudo":14378,"./x-pseudo.js":14378,"./yo":75805,"./yo.js":75805,"./zh-cn":83839,"./zh-cn.js":83839,"./zh-hk":55726,"./zh-hk.js":55726,"./zh-mo":99807,"./zh-mo.js":99807,"./zh-tw":74152,"./zh-tw.js":74152};function n(e){var t=i(e);return o(t)}function i(e){if(!o.o(a,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return a[e]}n.keys=function(){return Object.keys(a)},n.resolve=i,e.exports=n,n.id=46700},24654:function(){},52361:function(){},94616:function(){},5656:function(e,t,o){"use strict";o.d(t,{$B:function(){return N},RL:function(){return B},_o:function(){return j},gt:function(){return x},h7:function(){return y},pC:function(){return _},rp:function(){return E},sS:function(){return m},tB:function(){return k}});var a=o(77958),n=o(17499),i=o(31352),r=o(62520),s=o(79753),c=o(14596),l=o(26721);(e=>{null===e?(0,n.IY)().setApp("files").build():(0,n.IY)().setApp("files").setUid(e.uid).build()})((0,a.ts)());const u=["B","KB","MB","GB","TB","PB"],d=["B","KiB","MiB","GiB","TiB","PiB"];function m(e,t=!1,o=!1){"string"==typeof e&&(e=Number(e));let a=e>0?Math.floor(Math.log(e)/Math.log(o?1024:1e3)):0;a=Math.min((o?d.length:u.length)-1,a);const n=o?d[a]:u[a];let r=(e/Math.pow(o?1024:1e3,a)).toFixed(1);return!0===t&&0===a?("0.0"!==r?"< 1 ":"0 ")+(o?d[1]:u[1]):(r=a<2?parseFloat(r).toFixed(0):parseFloat(r).toLocaleString((0,i.aj)()),r+" "+n)}var p=(e=>(e.DEFAULT="default",e.HIDDEN="hidden",e))(p||{}),h=(e=>(e[e.NONE=0]="NONE",e[e.CREATE=4]="CREATE",e[e.READ=1]="READ",e[e.UPDATE=2]="UPDATE",e[e.DELETE=8]="DELETE",e[e.SHARE=16]="SHARE",e[e.ALL=31]="ALL",e))(h||{});const g=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],v={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},f=function(){return typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...g]),window._nc_dav_properties.map((e=>`<${e} />`)).join(" ")},A=function(){return typeof window._nc_dav_namespaces>"u"&&(window._nc_dav_namespaces={...v}),Object.keys(window._nc_dav_namespaces).map((e=>`xmlns:${e}="${window._nc_dav_namespaces?.[e]}"`)).join(" ")},y=function(){return`\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t`},k=function(e){return`\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${(0,a.ts)()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${e}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`};var b=(e=>(e.Folder="folder",e.File="file",e))(b||{});const C=function(e,t){return null!==e.match(t)},w=(e,t)=>{if(e.id&&"number"!=typeof e.id)throw new Error("Invalid id type of value");if(!e.source)throw new Error("Missing mandatory source");try{new URL(e.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!e.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(e.mtime&&!(e.mtime instanceof Date))throw new Error("Invalid mtime type");if(e.crtime&&!(e.crtime instanceof Date))throw new Error("Invalid crtime type");if(!e.mime||"string"!=typeof e.mime||!e.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in e&&"number"!=typeof e.size&&void 0!==e.size)throw new Error("Invalid size type");if("permissions"in e&&void 0!==e.permissions&&!("number"==typeof e.permissions&&e.permissions>=h.NONE&&e.permissions<=h.ALL))throw new Error("Invalid permissions");if(e.owner&&null!==e.owner&&"string"!=typeof e.owner)throw new Error("Invalid owner type");if(e.attributes&&"object"!=typeof e.attributes)throw new Error("Invalid attributes type");if(e.root&&"string"!=typeof e.root)throw new Error("Invalid root type");if(e.root&&!e.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(e.root&&!e.source.includes(e.root))throw new Error("Root must be part of the source");if(e.root&&C(e.source,t)){const o=e.source.match(t)[0];if(!e.source.includes((0,r.join)(o,e.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(e.status&&!Object.values(S).includes(e.status))throw new Error("Status must be a valid NodeStatus")};var S=(e=>(e.NEW="new",e.FAILED="failed",e.LOADING="loading",e.LOCKED="locked",e))(S||{});class P{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(e,t){w(e,t||this._knownDavService),this._data=e;const o={set:(e,t,o)=>(this.updateMtime(),Reflect.set(e,t,o)),deleteProperty:(e,t)=>(this.updateMtime(),Reflect.deleteProperty(e,t))};this._attributes=new Proxy(e.attributes||{},o),delete this._data.attributes,t&&(this._knownDavService=t)}get source(){return this._data.source.replace(/\/$/i,"")}get basename(){return(0,r.basename)(this.source)}get extension(){return(0,r.extname)(this.source)}get dirname(){if(this.root){const e=this.source.indexOf(this.root);return(0,r.dirname)(this.source.slice(e+this.root.length)||"/")}const e=new URL(this.source);return(0,r.dirname)(e.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:h.NONE:h.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return C(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,r.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){const e=this.source.indexOf(this.root);return this.source.slice(e+this.root.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(e){this._data.status=e}move(e){w({...this._data,source:e},this._knownDavService),this._data.source=e,this.updateMtime()}rename(e){if(e.includes("/"))throw new Error("Invalid basename");this.move((0,r.dirname)(this.source)+"/"+e)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class N extends P{get type(){return b.File}}class x extends P{constructor(e){super({...e,mime:"httpd/unix-directory"})}get type(){return b.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const j=`/files/${(0,a.ts)()?.uid}`,O=(0,s.generateRemoteUrl)("dav"),E=function(e=O){const t=(0,c.eI)(e,{headers:{requesttoken:(0,a.IH)()||""}});return(0,c.lD)().patch("request",(e=>(e.headers?.method&&(e.method=e.headers.method,delete e.headers.method),(0,l.W)(e)))),t},_=async(e,t="/",o=j)=>(await e.getDirectoryContents(`${o}${t}`,{details:!0,data:`\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((e=>e.filename!==t)).map((e=>B(e,o))),B=function(e,t=j,o=O){const n=e.props,i=function(e=""){let t=h.NONE;return e&&((e.includes("C")||e.includes("K"))&&(t|=h.CREATE),e.includes("G")&&(t|=h.READ),(e.includes("W")||e.includes("N")||e.includes("V"))&&(t|=h.UPDATE),e.includes("D")&&(t|=h.DELETE),e.includes("R")&&(t|=h.SHARE)),t}(n?.permissions),r=(0,a.ts)()?.uid,s={id:n?.fileid||0,source:`${o}${e.filename}`,mtime:new Date(Date.parse(e.lastmod)),mime:e.mime,size:n?.size||Number.parseInt(n.getcontentlength||"0"),permissions:i,owner:r,root:t,attributes:{...e,...n,hasPreview:n?.["has-preview"]}};return delete s.attributes?.props,"file"===e.type?new N(s):new x(s)};var z={};!function(e){const t=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",o="["+t+"]["+t+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",a=new RegExp("^"+o+"$");e.isExist=function(e){return typeof e<"u"},e.isEmptyObject=function(e){return 0===Object.keys(e).length},e.merge=function(e,t,o){if(t){const a=Object.keys(t),n=a.length;for(let i=0;i"u")},e.getAllMatches=function(e,t){const o=[];let a=t.exec(e);for(;a;){const n=[];n.startIndex=t.lastIndex-a[0].length;const i=a.length;for(let e=0;e!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(e,t,o){return e}};F.buildOptions=function(e){return Object.assign({},T,e)},F.defaultOptions=T,!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,z.nameRegexp),new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");var M={};function L(e,t,o){let a;const n={};for(let i=0;i0&&(n[t.textNodeName]=a):void 0!==a&&(n[t.textNodeName]=a),n}function D(e){const t=Object.keys(e);for(let e=0;e`,i=!1;continue}if(c===t.commentPropName){n+=a+`\x3c!--${s[c][0][t.textNodeName]}--\x3e`,i=!0;continue}if("?"===c[0]){const e=H(s[":@"],t),o="?xml"===c?"":a;let r=s[c][0][t.textNodeName];r=0!==r.length?" "+r:"",n+=o+`<${c}${r}${e}?>`,i=!0;continue}let u=a;""!==u&&(u+=t.indentBy);const d=a+`<${c}${H(s[":@"],t)}`,m=q(s[c],t,l,u);-1!==t.unpairedTags.indexOf(c)?t.suppressUnpairedNode?n+=d+">":n+=d+"/>":m&&0!==m.length||!t.suppressEmptyNode?m&&m.endsWith(">")?n+=d+`>${m}${a}`:(n+=d+">",m&&""!==a&&(m.includes("/>")||m.includes("`):n+=d+"/>",i=!0}return n}function $(e){const t=Object.keys(e);for(let e=0;e0&&t.processEntities)for(let o=0;o0&&(o="\n"),q(e,t,"",o)},K={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&"},{regex:new RegExp(">","g"),val:">"},{regex:new RegExp("<","g"),val:"<"},{regex:new RegExp("'","g"),val:"'"},{regex:new RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function Y(e){this.options=Object.assign({},K,e),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=X),this.processTextOrObjNode=J,this.options.format?(this.indentate=Q,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function J(e,t,o){const a=this.j2x(e,o+1);return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,a.attrStr,o):this.buildObjectNode(a.val,t,a.attrStr,o)}function Q(e){return this.options.indentBy.repeat(e)}function X(e){return!(!e.startsWith(this.options.attributeNamePrefix)||e===this.options.textNodeName)&&e.substr(this.attrPrefixLen)}Y.prototype.build=function(e){return this.options.preserveOrder?V(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e={[this.options.arrayNodeName]:e}),this.j2x(e,0).val)},Y.prototype.j2x=function(e,t){let o="",a="";for(let n in e)if(typeof e[n]>"u")this.isAttribute(n)&&(a+="");else if(null===e[n])this.isAttribute(n)?a+="":"?"===n[0]?a+=this.indentate(t)+"<"+n+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+n+"/"+this.tagEndChar;else if(e[n]instanceof Date)a+=this.buildTextValNode(e[n],n,"",t);else if("object"!=typeof e[n]){const i=this.isAttribute(n);if(i)o+=this.buildAttrPairStr(i,""+e[n]);else if(n===this.options.textNodeName){let t=this.options.tagValueProcessor(n,""+e[n]);a+=this.replaceEntitiesValue(t)}else a+=this.buildTextValNode(e[n],n,"",t)}else if(Array.isArray(e[n])){const o=e[n].length;let i="";for(let r=0;r"u"||(null===o?"?"===n[0]?a+=this.indentate(t)+"<"+n+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+n+"/"+this.tagEndChar:"object"==typeof o?this.options.oneListGroup?i+=this.j2x(o,t+1).val:i+=this.processTextOrObjNode(o,n,t):i+=this.buildTextValNode(o,n,"",t))}this.options.oneListGroup&&(i=this.buildObjectNode(i,n,"",t)),a+=i}else if(this.options.attributesGroupName&&n===this.options.attributesGroupName){const t=Object.keys(e[n]),a=t.length;for(let i=0;i"+e+n}},Y.prototype.closeTag=function(e){let t="";return-1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":`>`+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(a)+`\x3c!--${e}--\x3e`+this.newLine;if("?"===t[0])return this.indentate(a)+"<"+t+o+"?"+this.tagEndChar;{let n=this.options.tagValueProcessor(t,e);return n=this.replaceEntitiesValue(n),""===n?this.indentate(a)+"<"+t+o+this.closeTag(t)+this.tagEndChar:this.indentate(a)+"<"+t+o+">"+n+"0&&this.options.processEntities)for(let t=0;t=n)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,n0&&e[u-1][2]>n;u--)e[u]=e[u-1];e[u]=[o,a,n]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=function(e){return Promise.all(Object.keys(r.f).reduce((function(t,o){return r.f[o](e,t),t}),[]))},r.u=function(e){return e+"-"+e+".js?v=3b66be39570778909421"},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o={},a="nextcloud:",r.l=function(e,t,n,i){if(o[e])o[e].push(t);else{var s,c;if(void 0!==n)for(var l=document.getElementsByTagName("script"),u=0;u-1&&!e;)e=o[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=e}(),function(){r.b=document.baseURI||self.location.href;var e={4092:0};r.f.j=function(t,o){var a=r.o(e,t)?e[t]:void 0;if(0!==a)if(a)o.push(a[2]);else{var n=new Promise((function(o,n){a=e[t]=[o,n]}));o.push(a[2]=n);var i=r.p+r.u(t),s=new Error;r.l(i,(function(o){if(r.o(e,t)&&(0!==(a=e[t])&&(e[t]=void 0),a)){var n=o&&("load"===o.type?"missing":o.type),i=o&&o.target&&o.target.src;s.message="Loading chunk "+t+" failed.\n("+n+": "+i+")",s.name="ChunkLoadError",s.type=n,s.request=i,a[1](s)}}),"chunk-"+t,t)}},r.O.j=function(t){return 0===e[t]};var t=function(t,o){var a,n,i=o[0],s=o[1],c=o[2],l=0;if(i.some((function(t){return 0!==e[t]}))){for(a in s)r.o(s,a)&&(r.m[a]=s[a]);if(c)var u=c(r)}for(t&&t(o);l(()=>{var e={7664:(e,t,o)=>{"use strict";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),c=o.n(s),l=o(1441),u=o.n(l);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return"NcActionLink"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(c().util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,c,l,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||A,k=t.forceName?A:"",b=null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||b||(b=A),e("NcButton",{class:["action-item action-item--single",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{"aria-label":y,title:b},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?"secondary":"tertiary"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e("template",{slot:"icon"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[r]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),l=o.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[l.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[r(l)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),b=o(7795),C=o.n(b),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),_=o(9546),B={};B.styleTagTransform=E(),B.setAttributes=N(),B.insert=S().bind(null,"head"),B.domAPI=C(),B.insertStyleElement=j(),k()(_.Z,B),_.Z&&_.Z.locals&&_.Z.locals;var z=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,"head"),F.domAPI=C(),F.insertStyleElement=j(),k()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=o(1900),M=o(5727),L=o.n(M),D=(0,T.Z)(A,void 0,void 0,!1,null,"55038265",null);"function"==typeof L()&&L()(D);const G=D.exports},3089:(e,t,o)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;tx});const c={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,o,n,i=this,c=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!c,u=null===(n=this.$slots)||void 0===n?void 0:n.icon;c||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:c,ariaLabel:this.ariaLabel},this);var d=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,n=o.isActive,d=o.isExactActive;return e(i.to||!i.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!l,"button-vue--text-only":l&&!u,"button-vue--icon-and-text":u&&l},s(t,"button-vue--vue-".concat(i.realType),i.realType),s(t,"button-vue--wide",i.wide),s(t,"button-vue--".concat(i.flexAlignment),"center"!==i.flexAlignment),s(t,"button-vue--reverse",i.isReverseAligned),s(t,"active",n),s(t,"router-link-exact-active",d),t)],attrs:r({"aria-label":i.ariaLabel,"aria-pressed":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?"button":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?"_self":null,rel:!i.to&&i.href?"nofollow noreferrer noopener":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:r(r({},i.$listeners),{},{click:function(e){"boolean"==typeof i.pressed&&i.$emit("update:pressed",!i.pressed),i.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":i.ariaHidden}},[i.$slots.icon]):null,l?e("span",{class:"button-vue__text"},[c]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(7294),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(2102),P=o.n(S),N=(0,w.Z)(c,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(N);const x=N.exports},998:(e,t,a)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t,o){return(t=function(e){var t=function(e,t){if("object"!==n(e)||null===e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var a=o.call(e,"string");if("object"!==n(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===n(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}a.d(t,{default:()=>K});var r=a(6492),s=a(1205),c=a(932);const l={methods:{n:c.n,t:c.t}},u=o(8417);var d=a.n(u);const m=o(86061);var p=a.n(m);const h=o(83461);var g=a.n(h);const v=o(10063);var f=a.n(v);const A=o(66294);var y=a.n(A);const k=o(30886);var b=a.n(k);const C=o(39219);var w=a.n(C);function S(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return P(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?P(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o-1:this.checked===this.value:!0===this.checked},checkboxRadioIconElement:function(){return this.type===x?this.isChecked?f():y():this.type===j?this.isChecked?w():b():this.indeterminate?p():this.isChecked?g():d()}},mounted:function(){if(this.name&&this.type===N&&!Array.isArray(this.checked))throw new Error("When using groups of checkboxes, the updated value will be an array.");if(this.name&&this.type===j)throw new Error("Switches are not made to be used for data sets. Please use checkboxes instead.");if("boolean"!=typeof this.checked&&this.type===j)throw new Error("Switches can only be used with boolean as checked prop.")},methods:{onToggle:function(){if(!this.disabled)if(this.type!==x)if(this.type!==j)if("boolean"!=typeof this.checked){var e=this.getInputsSet().filter((function(e){return e.checked})).map((function(e){return e.value}));this.$emit("update:checked",e)}else this.$emit("update:checked",!this.isChecked);else this.$emit("update:checked",!this.isChecked);else this.$emit("update:checked",this.value)},getInputsSet:function(){return S(document.getElementsByName(this.name))}}};var _=a(3379),B=a.n(_),z=a(7795),F=a.n(z),T=a(569),M=a.n(T),L=a(3565),D=a.n(L),G=a(9216),U=a.n(G),R=a(4589),I=a.n(R),q=a(6267),$={};$.styleTagTransform=I(),$.setAttributes=D(),$.insert=M().bind(null,"head"),$.domAPI=F(),$.insertStyleElement=U(),B()(q.Z,$),q.Z&&q.Z.locals&&q.Z.locals;var H=a(1900),W=a(3768),Z=a.n(W),V=(0,H.Z)(E,(function(){var e,t=this,o=t._self._c;return o(t.wrapperElement,{tag:"component",staticClass:"checkbox-radio-switch",class:(e={},i(e,"checkbox-radio-switch-"+t.type,t.type),i(e,"checkbox-radio-switch--checked",t.isChecked),i(e,"checkbox-radio-switch--disabled",t.disabled),i(e,"checkbox-radio-switch--indeterminate",t.indeterminate),i(e,"checkbox-radio-switch--button-variant",t.buttonVariant),i(e,"checkbox-radio-switch--button-variant-v-grouped",t.buttonVariant&&"vertical"===t.buttonVariantGrouped),i(e,"checkbox-radio-switch--button-variant-h-grouped",t.buttonVariant&&"horizontal"===t.buttonVariantGrouped),e),style:t.cssVars},[o("input",t._g(t._b({staticClass:"checkbox-radio-switch__input",attrs:{id:t.id,disabled:t.disabled,type:t.inputType},domProps:{value:t.value}},"input",t.inputProps,!1),t.inputListeners)),t._v(" "),o("label",{staticClass:"checkbox-radio-switch__label",attrs:{for:t.id}},[o("div",{staticClass:"checkbox-radio-switch__icon"},[t._t("icon",(function(){return[t.loading?o("NcLoadingIcon"):t.buttonVariant?t._e():o(t.checkboxRadioIconElement,{tag:"component",attrs:{size:t.size}})]}),{checked:t.isChecked,loading:t.loading})],2),t._v(" "),o("span",{staticClass:"checkbox-radio-switch__label-text"},[t._t("default")],2)])])}),[],!1,null,"51081647",null);"function"==typeof Z()&&Z()(V);const K=V.exports},9462:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcEmptyContent",props:{name:{type:String,default:""},description:{type:String,default:""}},computed:{hasName:function(){return""!==this.name},hasDescription:function(){var e;return""!==this.description||(null===(e=this.$slots.description)||void 0===e?void 0:e[0])}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(5886),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9258),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"empty-content",attrs:{role:"note"}},[e.$slots.icon?t("div",{staticClass:"empty-content__icon",attrs:{"aria-hidden":"true"}},[e._t("icon")],2):e._e(),e._v(" "),e._t("name",(function(){return[e.hasName?t("h2",{staticClass:"empty-content__name"},[e._v("\n\t\t\t"+e._s(e.name)+"\n\t\t")]):e._e()]})),e._v(" "),e.hasDescription?t("p",[e._t("description",(function(){return[e._v("\n\t\t\t"+e._s(e.description)+"\n\t\t")]}))],2):e._e(),e._v(" "),e.$slots.action?t("div",{staticClass:"empty-content__action"},[e._t("action")],2):e._e()],2)}),[],!1,null,"048f418c",null);"function"==typeof k()&&k()(b);const C=b.exports},6492:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcLoadingIcon",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return["auto","light","dark"].includes(e)},default:"auto"},name:{type:String,default:""}},computed:{colors:function(){var e=["#777","#CCC"];return"light"===this.appearance?e:"dark"===this.appearance?e.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"material-design-icon loading-icon",attrs:{"aria-label":e.name,role:"img"}},[t("svg",{attrs:{width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:e.colors[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"}}),e._v(" "),t("path",{attrs:{fill:e.colors[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"}},[e.name?t("title",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,"27fa1197",null);"function"==typeof k()&&k()(b);const C=b.exports},2297:(e,t,o)=>{"use strict";o.d(t,{default:()=>E});var n=o(9454),i=o(4505),r=o(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,c){var l=m(e[a],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==s(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,c)}),(function(e){n("throw",e,r,c)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,c)}))}c(l.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const u={name:"NcPopover",components:{Dropdown:n.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=c().mark((function e(){var o,a;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,i.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,r.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,"next",e)}function s(e){l(i,a,n,r,s,"throw",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=o(3379),p=o.n(m),h=o(7795),g=o.n(h),v=o(569),f=o.n(v),A=o(3565),y=o.n(A),k=o(9216),b=o.n(k),C=o(4589),w=o.n(C),S=o(1625),P={};P.styleTagTransform=w(),P.setAttributes=y(),P.insert=f().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=b(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var N=o(1900),x=o(2405),j=o.n(x),O=(0,N.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof j()&&j()(O);const E=O.exports},3329:(e,t,o)=>{"use strict";o.d(t,{default:()=>n});const a={name:"NcVNodes",props:{vnodes:{type:[Array,Object],default:null}},render:function(e){var t,o,a;return this.vnodes||(null===(t=this.$slots)||void 0===t?void 0:t.default)||(null===(o=this.$scopedSlots)||void 0===o||null===(a=o.default)||void 0===a?void 0:a.call(o))}},n=(0,o(1900).Z)(a,void 0,void 0,!1,null,null,null).exports},8167:(e,t,o)=>{"use strict";o.d(t,{default:()=>a});const a={inserted:function(e){e.focus()}}},640:(e,t,a)=>{"use strict";a.d(t,{default:()=>r});const n=o(50337);var i=a.n(n);const r=function(e,t){var o;!0===(null===(o=t.value)||void 0===o?void 0:o.linkify)&&(e.innerHTML=function(e){return i()(e,{defaultProtocol:"https",target:"_blank",className:"external linkified",attributes:{rel:"nofollow noopener noreferrer"}})}(t.value.text))}},336:(e,t,o)=>{"use strict";o.d(t,{default:()=>A});var a=o(9454),n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8384),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals,a.options.themes.tooltip.html=!1,a.options.themes.tooltip.delay={show:500,hide:200},a.options.themes.tooltip.distance=10,a.options.themes.tooltip["arrow-padding"]=3;const A=a.VTooltip},932:(e,t,o)=>{"use strict";o.d(t,{n:()=>i,t:()=>r});var a=(0,o(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};a.addTranslation(e.locale,{translations:{"":t}})}));var n=a.build(),i=n.ngettext.bind(n),r=n.gettext.bind(n)},1205:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},1206:(e,t,o)=>{"use strict";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/directives/Tooltip/index.scss"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n/**\n* @copyright Copyright (c) 2016, John Molakvoæ \n* @copyright Copyright (c) 2016, Robin Appelman \n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \n* @copyright Copyright (c) 2016, Erik Pellikka \n* @copyright Copyright (c) 2015, Vincent Petry \n*\n* Bootstrap (http://getbootstrap.com)\n* SCSS copied from version 3.3.5\n* Copyright 2011-2015 Twitter, Inc.\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n*/\n\n$arrow-width: 10px;\n\n.v-popper--theme-tooltip {\n\t&.v-popper__popper {\n\t\tposition: absolute;\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tright: auto;\n\t\tleft: auto;\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\ttext-align: left;\n\t\ttext-align: start;\n\t\topacity: 0;\n\t\tline-height: 1.6;\n\n\t\tline-break: auto;\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t// TOP\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t// BOTTOM\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t// RIGHT\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tright: 100%;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t// LEFT\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tleft: 100%;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t// HIDDEN / SHOWN\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity .15s, visibility .15s;\n\t\t\topacity: 0;\n\t\t}\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity .15s;\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t// CONTENT\n\t.v-popper__inner {\n\t\tmax-width: 350px;\n\t\tpadding: 5px 8px;\n\t\ttext-align: center;\n\t\tcolor: var(--color-main-text);\n\t\tborder-radius: var(--border-radius);\n\t\tbackground-color: var(--color-main-background);\n\t}\n\n\t// ARROW\n\t.v-popper__arrow-container {\n\t\tposition: absolute;\n\t\tz-index: 1;\n\t\twidth: 0;\n\t\theight: 0;\n\t\tmargin: 0;\n\t\tborder-style: solid;\n\t\tborder-color: transparent;\n\t\tborder-width: $arrow-width;\n\t}\n}\n"],sourceRoot:""}]);const s=r},9546:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=r},5155:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=r},2365:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-1c6914a9]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar[data-v-1c6914a9]{z-index:1500;top:0;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:100%;border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:focus{opacity:1;background-color:rgba(127,127,127,.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1c6914a9]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1c6914a9]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1c6914a9]{padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px;padding-top:10px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{z-index:3;position:absolute;top:9px;left:-44px;gap:0}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1c6914a9]{top:6px;right:50px;background-color:rgba(0,0,0,0);position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1c6914a9]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1c6914a9]{padding-right:94px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1c6914a9]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1c6914a9]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1c6914a9]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1c6914a9]{position:relative;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:18px 6px 18px 9px;gap:0 4px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1c6914a9]{padding-left:6px}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__mainname-form[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__mainname-form[data-v-1c6914a9]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__subname[data-v-1c6914a9]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]{box-shadow:none}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]:not([aria-pressed=true]):hover{box-shadow:none;background-color:var(--color-background-hover)}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container[data-v-1c6914a9]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container[data-v-1c6914a9]{display:flex;align-items:center;min-height:44px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9] .linkified{cursor:pointer;text-decoration:underline;margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form[data-v-1c6914a9]{display:flex;flex:1 1 auto;align-items:center}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form input.app-sidebar-header__mainname-input[data-v-1c6914a9]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__menu[data-v-1c6914a9]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,.25);margin-left:5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{padding:0;opacity:.7;font-size:var(--default-font-size)}.app-sidebar .app-sidebar-header__description[data-v-1c6914a9]{display:flex;align-items:center;margin:0 10px}@media only screen and (max-width: 768px){.app-sidebar[data-v-1c6914a9]{width:100vw;max-width:100vw}}.slide-right-leave-active[data-v-1c6914a9],.slide-right-enter-active[data-v-1c6914a9]{transition-duration:var(--animation-quick);transition-property:max-width,min-width}.slide-right-enter-to[data-v-1c6914a9],.slide-right-leave[data-v-1c6914a9]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1c6914a9],.slide-right-leave-to[data-v-1c6914a9]{min-width:0 !important;max-width:0 !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebar.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCYD,8BACC,YAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,iBAAA,CACA,eAAA,CACA,qBAAA,CACA,aAAA,CACA,UAAA,CACA,eA5BmB,CA6BnB,eA5BmB,CA6BnB,WAAA,CACA,yCAAA,CACA,uCAAA,CAGC,sEACC,iBAAA,CACA,WAAA,CACA,OA1BmB,CA2BnB,SA3BmB,CA4BnB,UCjBc,CDkBd,WClBc,CDmBd,UCDc,CDEd,kBAAA,CACA,qOAGC,SCLW,CDMX,sCCFsB,CDQvB,qHACC,kBAAA,CAEA,iJACC,SAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,iBAAA,CACA,aAAA,CAED,+IACC,cAAA,CACA,aAAA,CACA,WAAA,CACA,kBAAA,CACA,gBAlE2B,CAoE3B,yLACC,kBAAA,CAGD,qLACC,SAAA,CACA,iBAAA,CACA,OAAA,CACA,UAAA,CACA,KAAA,CAED,yKACC,OAxEgB,CAyEhB,UAAA,CACA,8BAAA,CACA,iBAAA,CASH,kHACC,iBAAA,CACA,OAtFkB,CAuFlB,UAAA,CAGD,kHACC,kBAAA,CAEA,4JACC,kBAAA,CAMH,4EACC,YAAA,CACA,qBAAA,CAID,0DACC,UAAA,CACA,YAAA,CACA,gBAAA,CACA,2BAAA,CACA,0BAAA,CACA,uBAAA,CACA,uEACC,cAAA,CAKF,wDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,kBAAA,CACA,yBAAA,CACA,SAAA,CAGA,8EACC,gBAAA,CAGD,wNAEC,eAAA,CACA,kBAAA,CAGD,6GACC,eAAA,CAGD,8FACC,YAAA,CACA,WCtIa,CDuIb,UCvIa,CDwIb,sBAAA,CACA,aAAA,CAEA,wHAEC,eAAA,CACA,uJACC,eAAA,CACA,8CAAA,CAMH,4FACC,aAAA,CACA,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAEA,oIACC,YAAA,CACA,kBAAA,CACA,eChKY,CDmKZ,kKACC,SAAA,CACA,eAAA,CACA,cAAA,CACA,gBAtLa,CAyLb,6KACC,cAAA,CACA,yBAAA,CACA,QAAA,CAIF,uKACC,YAAA,CACA,aAAA,CACA,kBAAA,CAEA,gNACC,aAAA,CACA,QAAA,CACA,WA3Mc,CA4Md,cAAA,CACA,gBAAA,CAKF,8JACC,WCjMW,CDkMX,UClMW,CDmMX,kBAAA,CACA,sCC7KoB,CD8KpB,eAAA,CAKF,mPAEC,eAAA,CACA,UAAA,CACA,QAAA,CACA,kBAAA,CACA,sBAAA,CAID,yHACC,SAAA,CACA,UCpMY,CDqMZ,kCAAA,CAMH,+DACC,YAAA,CACA,kBAAA,CACA,aAAA,CAMH,0CACC,8BACC,WAAA,CACA,eAAA,CAAA,CAIF,sFAEC,0CAAA,CACA,uCAAA,CAGD,2EAEC,eA5QmB,CA6QnB,eA5QmB,CA+QpB,2EAEC,sBAAA,CACA,sBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n$sidebar-min-width: 300px;\n$sidebar-max-width: 500px;\n\n$desc-vertical-padding: 18px;\n$desc-vertical-padding-compact: 10px;\n$desc-input-padding: 7px;\n\n// name and subname\n$desc-name-height: 30px;\n$desc-subname-height: 22px;\n$desc-height: $desc-name-height + $desc-subname-height;\n\n$top-buttons-spacing: 6px;\n\n/*\n\tSidebar: to be used within #content\n\tapp-content will be shrinked properly\n*/\n.app-sidebar {\n\tz-index: 1500;\n\ttop: 0;\n\tright: 0;\n\tdisplay: flex;\n\toverflow-x: hidden;\n\toverflow-y: auto;\n\tflex-direction: column;\n\tflex-shrink: 0;\n\twidth: 27vw;\n\tmin-width: $sidebar-min-width;\n\tmax-width: $sidebar-max-width;\n\theight: 100%;\n\tborder-left: 1px solid var(--color-border);\n\tbackground: var(--color-main-background);\n\n\t.app-sidebar-header {\n\t\t> .app-sidebar__close {\n\t\t\tposition: absolute;\n\t\t\tz-index: 100;\n\t\t\ttop: $top-buttons-spacing;\n\t\t\tright: $top-buttons-spacing;\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_normal;\n\t\t\tborder-radius: math.div($clickable-area, 2);\n\t\t\t&:hover,\n\t\t\t&:active,\n\t\t\t&:focus {\n\t\t\t\topacity: $opacity_full;\n\t\t\t\tbackground-color: $action-background-hover;\n\t\t\t}\n\t\t}\n\n\t\t// Compact mode only affects a sidebar with a figure\n\t\t&--compact.app-sidebar-header--with-figure {\n\t\t\t.app-sidebar-header__info {\n\t\t\t\tflex-direction: row;\n\n\t\t\t\t.app-sidebar-header__figure {\n\t\t\t\t\tz-index: 2;\n\t\t\t\t\twidth: $desc-height + $desc-vertical-padding;\n\t\t\t\t\theight: $desc-height + $desc-vertical-padding;\n\t\t\t\t\tmargin: math.div($desc-vertical-padding, 2);\n\t\t\t\t\tborder-radius: 3px;\n\t\t\t\t\tflex: 0 0 auto;\n\t\t\t\t}\n\t\t\t\t.app-sidebar-header__desc {\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tpadding-right: 2 * $clickable-area + $top-buttons-spacing;\n\t\t\t\t\tpadding-top: $desc-vertical-padding-compact;\n\n\t\t\t\t\t&.app-sidebar-header__desc--without-actions {\n\t\t\t\t\t\tpadding-right: #{$clickable-area + $top-buttons-spacing};\n\t\t\t\t\t}\n\n\t\t\t\t\t.app-sidebar-header__tertiary-actions {\n\t\t\t\t\t\tz-index: 3; // above star\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: math.div($desc-vertical-padding, 2);\n\t\t\t\t\t\tleft: -1 * $clickable-area;\n\t\t\t\t\t\tgap: 0; // override gap\n\t\t\t\t\t}\n\t\t\t\t\t.app-sidebar-header__menu {\n\t\t\t\t\t\ttop: $top-buttons-spacing;\n\t\t\t\t\t\tright: $clickable-area + $top-buttons-spacing; // left of the close button\n\t\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// sidebar without figure\n\t\t&:not(.app-sidebar-header--with-figure) {\n\t\t\t// align the menu with the close button\n\t\t\t.app-sidebar-header__menu {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: $top-buttons-spacing;\n\t\t\t\tright: $top-buttons-spacing + $clickable-area;\n\t\t\t}\n\t\t\t// increase the padding to not overlap the menu\n\t\t\t.app-sidebar-header__desc {\n\t\t\t\tpadding-right: #{$clickable-area * 2 + $top-buttons-spacing};\n\n\t\t\t\t&.app-sidebar-header__desc--without-actions {\n\t\t\t\t\tpadding-right: #{$clickable-area + $top-buttons-spacing};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// the container with the figure and the description\n\t\t.app-sidebar-header__info {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t// header background\n\t\t&__figure {\n\t\t\twidth: 100%;\n\t\t\theight: 250px;\n\t\t\tmax-height: 250px;\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-position: center;\n\t\t\tbackground-size: contain;\n\t\t\t&--with-action {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\t\t}\n\n\t\t// description\n\t\t&__desc {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\tpadding: #{$desc-vertical-padding} #{$top-buttons-spacing} #{$desc-vertical-padding} #{math.div($desc-vertical-padding, 2)};\n\t\t\tgap: 0 4px;\n\n\t\t\t// custom overrides\n\t\t\t&--with-tertiary-action {\n\t\t\t\tpadding-left: 6px;\n\t\t\t}\n\n\t\t\t&--editable .app-sidebar-header__mainname-form,\n\t\t\t&--with-subname--editable .app-sidebar-header__mainname-form {\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-bottom: -2px;\n\t\t\t}\n\n\t\t\t&--with-subname--editable .app-sidebar-header__subname {\n\t\t\t\tmargin-top: -2px;\n\t\t\t}\n\n\t\t\t.app-sidebar-header__tertiary-actions {\n\t\t\t\tdisplay: flex;\n\t\t\t\theight: $clickable-area;\n\t\t\t\twidth: $clickable-area;\n\t\t\t\tjustify-content: center;\n\t\t\t\tflex: 0 0 auto;\n\n\t\t\t\t.app-sidebar-header__star {\n\t\t\t\t\t// Override default Button component styles\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\t&:not([aria-pressed='true']):hover {\n\t\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// names\n\t\t\t.app-sidebar-header__name-container {\n\t\t\t\tflex: 1 1 auto;\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tjustify-content: center;\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t.app-sidebar-header__mainname-container {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tmin-height: $clickable-area;\n\n\t\t\t\t\t// main name\n\t\t\t\t\t.app-sidebar-header__mainname {\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\tmin-height: 30px;\n\t\t\t\t\t\tfont-size: 20px;\n\t\t\t\t\t\tline-height: $desc-name-height;\n\n\t\t\t\t\t\t// Needs 'deep' as the link is generated by the linkify directive\n\t\t\t\t\t\t&:deep(.linkified) {\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.app-sidebar-header__mainname-form {\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\t\talign-items: center;\n\n\t\t\t\t\t\tinput.app-sidebar-header__mainname-input {\n\t\t\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t\tpadding: $desc-input-padding;\n\t\t\t\t\t\t\tfont-size: 20px;\n\t\t\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// main menu\n\t\t\t\t\t.app-sidebar-header__menu {\n\t\t\t\t\t\theight: $clickable-area;\n\t\t\t\t\t\twidth: $clickable-area;\n\t\t\t\t\t\tborder-radius: math.div($clickable-area, 2);\n\t\t\t\t\t\tbackground-color: $action-background-hover;\n\t\t\t\t\t\tmargin-left: 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// shared between main and subname\n\t\t\t\t.app-sidebar-header__mainname,\n\t\t\t\t.app-sidebar-header__subname {\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t}\n\n\t\t\t\t// subname\n\t\t\t\t.app-sidebar-header__subname {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\topacity: $opacity_normal;\n\t\t\t\t\tfont-size: var(--default-font-size);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// sidebar description slot\n\t\t&__description {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmargin: 0 10px;\n\t\t}\n\t}\n}\n\n// Make the sidebar full-width on small screens\n@media only screen and (max-width: 768px) {\n\t.app-sidebar {\n\t\twidth: 100vw;\n\t\tmax-width: 100vw;\n\t}\n}\n\n.slide-right-leave-active,\n.slide-right-enter-active {\n\ttransition-duration: var(--animation-quick);\n\ttransition-property: max-width, min-width;\n}\n\n.slide-right-enter-to,\n.slide-right-leave {\n\tmin-width: $sidebar-min-width;\n\tmax-width: $sidebar-max-width;\n}\n\n.slide-right-enter,\n.slide-right-leave-to {\n\tmin-width: 0 !important;\n\tmax-width: 0 !important;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},2887:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-header__description button,.app-sidebar-header__description .button,.app-sidebar-header__description input[type=button],.app-sidebar-header__description input[type=submit],.app-sidebar-header__description input[type=reset]{padding:6px 22px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebar.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCHA,4OAIC,gBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// ! slots specific designs, cannot be scoped\n// if any button inside the description slot, increase visual padding\n.app-sidebar-header__description {\n\tbutton, .button,\n\tinput[type='button'],\n\tinput[type='submit'],\n\tinput[type='reset'] {\n\t\tpadding: 6px 22px;\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},5385:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-3946530b]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-tabs[data-v-3946530b]{display:flex;flex-direction:column;min-height:0;flex:1 1 100%}.app-sidebar-tabs__nav[data-v-3946530b]{display:flex;justify-content:stretch;margin-top:10px;padding:0 4px}.app-sidebar-tabs__tab[data-v-3946530b]{flex:1 1}.app-sidebar-tabs__tab.active[data-v-3946530b]{color:var(--color-primary-element)}.app-sidebar-tabs__tab-caption[data-v-3946530b]{flex:0 1 100%;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:center}.app-sidebar-tabs__tab-icon[data-v-3946530b]{display:flex;align-items:center;justify-content:center;background-size:20px}.app-sidebar-tabs__tab[data-v-3946530b] .checkbox-radio-switch__label{max-width:unset}.app-sidebar-tabs__content[data-v-3946530b]{position:relative;min-height:0;height:100%}.app-sidebar-tabs__content--multiple[data-v-3946530b]>:not(section){display:none}[data-v-3946530b] .checkbox-radio-switch--button-variant.checkbox-radio-switch{border:unset}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebar/NcAppSidebarTabs.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,qBAAA,CACA,YAAA,CACA,aAAA,CAEA,wCACC,YAAA,CACA,uBAAA,CACA,eAAA,CACA,aAAA,CAGD,wCACC,QAAA,CACA,+CACC,kCAAA,CAGD,gDACC,aAAA,CACA,UAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CAGD,6CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,oBAAA,CAID,sEACC,eAAA,CAIF,4CACC,iBAAA,CAEA,YAAA,CACA,WAAA,CAGA,oEACC,YAAA,CAKH,+EACC,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.app-sidebar-tabs {\n\tdisplay: flex;\n\tflex-direction: column;\n\tmin-height: 0;\n\tflex: 1 1 100%;\n\n\t&__nav {\n\t\tdisplay: flex;\n\t\tjustify-content: stretch;\n\t\tmargin-top: 10px;\n\t\tpadding: 0 4px;\n\t}\n\n\t&__tab {\n\t\tflex: 1 1;\n\t\t&.active {\n\t\t\tcolor: var(--color-primary-element);\n\t\t}\n\n\t\t&-caption {\n\t\t\tflex: 0 1 100%;\n\t\t\twidth: 100%;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\ttext-overflow: ellipsis;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t&-icon {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: center;\n\t\t\tbackground-size: 20px;\n\t\t}\n\n\t\t// Override max-width to use all available space\n\t\t:deep(.checkbox-radio-switch__label) {\n\t\t\tmax-width: unset;\n\t\t}\n\t}\n\n\t&__content {\n\t\tposition: relative;\n\t\t// take full available height\n\t\tmin-height: 0;\n\t\theight: 100%;\n\t\t// force the use of the tab component if more than one tab\n\t\t// you can just put raw content if you don't use tabs\n\t\t&--multiple > :not(section) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n:deep(.checkbox-radio-switch--button-variant.checkbox-radio-switch) {\n\tborder: unset;\n}\n"],sourceRoot:""}]);const s=r},7294:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},6267:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-51081647]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-radio-switch[data-v-51081647]{display:flex}.checkbox-radio-switch__input[data-v-51081647]{position:absolute;z-index:-1;opacity:0 !important;width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch__input:focus-visible+label[data-v-51081647]{outline:2px solid var(--color-primary-element) !important}.checkbox-radio-switch__label[data-v-51081647]{display:flex;align-items:center;flex-direction:row;gap:4px;user-select:none;min-height:44px;border-radius:44px;padding:4px 14px;width:100%;max-width:fit-content}.checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch__label *[data-v-51081647]{cursor:pointer}.checkbox-radio-switch__label-text[data-v-51081647]:empty{display:none}.checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element);width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch--disabled .checkbox-radio-switch__label[data-v-51081647]{opacity:.5}.checkbox-radio-switch--disabled .checkbox-radio-switch__label .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-background-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-primary-element-light-hover)}.checkbox-radio-switch-checkbox .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch-switch .checkbox-radio-switch__label[data-v-51081647]{padding:4px 10px}.checkbox-radio-switch-switch:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-text-maxcontrast)}.checkbox-radio-switch-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant.checkbox-radio-switch[data-v-51081647]{border:2px solid var(--color-border-maxcontrast);overflow:hidden}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked[data-v-51081647]{font-weight:bold}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked label[data-v-51081647]{background-color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__label-text[data-v-51081647]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.checkbox-radio-switch--button-variant:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__icon[data-v-51081647]:empty{display:none}.checkbox-radio-switch--button-variant[data-v-51081647]:not(.checkbox-radio-switch--button-variant-v-grouped):not(.checkbox-radio-switch--button-variant-h-grouped),.checkbox-radio-switch--button-variant .checkbox-radio-switch__label[data-v-51081647]{border-radius:calc(var(--default-clickable-area)/2)}.checkbox-radio-switch--button-variant-v-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-basis:100%;max-width:unset}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:last-of-type{border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:last-of-type){border-bottom:0 !important}.checkbox-radio-switch--button-variant-v-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-bottom:2px}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:first-of-type){border-top:0 !important}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:last-of-type{border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:last-of-type){border-right:0 !important}.checkbox-radio-switch--button-variant-h-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-right:2px}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:first-of-type){border-left:0 !important}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label-text[data-v-51081647]{text-align:center}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-direction:column;justify-content:center;width:100%;margin:0;gap:0}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,wCACC,YAAA,CAEA,+CACC,iBAAA,CACA,UAAA,CACA,oBAAA,CACA,sBAAA,CACA,uBAAA,CAGD,mEACC,yDAAA,CAGD,+CACC,YAAA,CACA,kBAAA,CACA,kBAAA,CACA,OAAA,CACA,gBAAA,CACA,eCEe,CDDf,kBCCe,CAAA,gBAAA,CDEf,UAAA,CAEA,qBAAA,CAEA,gGACC,cAAA,CAGD,0DAEC,YAAA,CAIF,gDACC,kCAAA,CACA,sBAAA,CACA,uBAAA,CAGD,gFACC,UCNiB,CDOjB,+GACC,4BAAA,CAIF,2SAEC,8CAAA,CAGD,6PAEC,yDAAA,CAIA,4JACC,gBAAA,CAKF,mHACC,mCAAA,CAID,6IACC,wCAAA,CAOD,8EACC,gDAAA,CACA,eAAA,CAEA,uFACC,gBAAA,CAEA,6FACC,mDAAA,CAMH,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA,CACA,UAAA,CAID,4HACC,4BAAA,CAID,2FACC,YAAA,CAGD,0PAEC,mDArCe,CAyChB,gGACC,eAAA,CAEA,eAAA,CAGA,gFACC,kEA9CoB,CA+CpB,mEA/CoB,CAiDrB,+EACC,qEAlDoB,CAmDpB,sEAnDoB,CAuDrB,qFACC,0BAAA,CACA,mHACC,iBAAA,CAGF,sFACC,uBAAA,CAMD,gFACC,kEArEoB,CAsEpB,qEAtEoB,CAwErB,+EACC,mEAzEoB,CA0EpB,sEA1EoB,CA8ErB,qFACC,yBAAA,CACA,mHACC,gBAAA,CAGF,sFACC,wBAAA,CAGF,qGACC,iBAAA,CAED,gGACC,qBAAA,CACA,sBAAA,CACA,UAAA,CACA,QAAA,CACA,KAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.checkbox-radio-switch {\n\tdisplay: flex;\n\n\t&__input {\n\t\tposition: absolute;\n\t\tz-index: -1;\n\t\topacity: 0 !important; // We need !important, or it gets overwritten by server style\n\t\twidth: var(--icon-size);\n\t\theight: var(--icon-size);\n\t}\n\n\t&__input:focus-visible + label {\n\t\toutline: 2px solid var(--color-primary-element) !important;\n\t}\n\n\t&__label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tflex-direction: row;\n\t\tgap: 4px;\n\t\tuser-select: none;\n\t\tmin-height: $clickable-area;\n\t\tborder-radius: $clickable-area;\n\t\tpadding: 4px $icon-margin;\n\t\t// Set to 100% to make text overflow work on button style\n\t\twidth: 100%;\n\t\t// but restrict to content so plain checkboxes / radio switches do not expand\n\t\tmax-width: fit-content;\n\n\t\t&, * {\n\t\t\tcursor: pointer;\n\t\t}\n\n\t\t&-text:empty {\n\t\t\t// hide text if empty to ensure checkbox outline is a circle instead of oval\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t&__icon > * {\n\t\tcolor: var(--color-primary-element);\n\t\twidth: var(--icon-size);\n\t\theight: var(--icon-size);\n\t}\n\n\t&--disabled &__label {\n\t\topacity: $opacity_disabled;\n\t\t.checkbox-radio-switch__icon > * {\n\t\t\tcolor: var(--color-main-text)\n\t\t}\n\t}\n\n\t&:not(&--disabled, &--checked):focus-within &__label,\n\t&:not(&--disabled, &--checked) &__label:hover {\n\t\tbackground-color: var(--color-background-hover);\n\t}\n\n\t&--checked:not(&--disabled):focus-within &__label,\n\t&--checked:not(&--disabled) &__label:hover {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&-checkbox, &-switch {\n\t\t.checkbox-radio-switch__label {\n\t\t\tpadding: 4px 10px; // we use 24x24px sized MDI icons for checkbox and radiobutton -> (44px - 24 px) / 2 = 10px\n\t\t}\n\t}\n\n\t// Switch specific rules\n\t&-switch:not(&--checked) &__icon > * {\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t// If switch is checked AND disabled, use the fade primary colour\n\t&-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked &__icon > * {\n\t\tcolor: var(--color-primary-element-light);\n\t}\n\n\t$border-radius: calc(var(--default-clickable-area) / 2);\n\t// keep inner border width in mind\n\t$border-radius-outer: calc($border-radius + 2px);\n\n\t&--button-variant.checkbox-radio-switch {\n\t\tborder: 2px solid var(--color-border-maxcontrast);\n\t\toverflow: hidden;\n\n\t\t&--checked {\n\t\t\tfont-weight: bold;\n\n\t\t\tlabel {\n\t\t\t\tbackground-color: var(--color-primary-element-light);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Text overflow of button style\n\t&--button-variant &__label-text {\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t\twhite-space: nowrap;\n\t\twidth: 100%;\n\t}\n\n\t// Set icon color for non active elements to main text color\n\t&--button-variant:not(&--checked) &__icon > * {\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t// Hide icon container if empty to remove virtual padding\n\t&--button-variant &__icon:empty {\n\t\tdisplay: none;\n\t}\n\n\t&--button-variant:not(&--button-variant-v-grouped):not(&--button-variant-h-grouped),\n\t&--button-variant &__label {\n\t\tborder-radius: $border-radius;\n\t}\n\n\t/* Special rules for vertical button groups */\n\t&--button-variant-v-grouped &__label {\n\t\tflex-basis: 100%;\n\t\t// vertically grouped buttons should all have the same width\n\t\tmax-width: unset;\n\t}\n\t&--button-variant-v-grouped {\n\t\t&:first-of-type {\n\t\t\tborder-top-left-radius: $border-radius-outer;\n\t\t\tborder-top-right-radius: $border-radius-outer;\n\t\t}\n\t\t&:last-of-type {\n\t\t\tborder-bottom-left-radius: $border-radius-outer;\n\t\t\tborder-bottom-right-radius: $border-radius-outer;\n\t\t}\n\n\t\t// remove borders between elements\n\t\t&:not(:last-of-type) {\n\t\t\tborder-bottom: 0!important;\n\t\t\t.checkbox-radio-switch__label {\n\t\t\t\tmargin-bottom: 2px;\n\t\t\t}\n\t\t}\n\t\t&:not(:first-of-type) {\n\t\t\tborder-top: 0!important;\n\t\t}\n\t}\n\n\t/* Special rules for horizontal button groups */\n\t&--button-variant-h-grouped {\n\t\t&:first-of-type {\n\t\t\tborder-top-left-radius: $border-radius-outer;\n\t\t\tborder-bottom-left-radius: $border-radius-outer;\n\t\t}\n\t\t&:last-of-type {\n\t\t\tborder-top-right-radius: $border-radius-outer;\n\t\t\tborder-bottom-right-radius: $border-radius-outer;\n\t\t}\n\n\t\t// remove borders between elements\n\t\t&:not(:last-of-type) {\n\t\t\tborder-right: 0!important;\n\t\t\t.checkbox-radio-switch__label {\n\t\t\t\tmargin-right: 2px;\n\t\t\t}\n\t\t}\n\t\t&:not(:first-of-type) {\n\t\t\tborder-left: 0!important;\n\t\t}\n\t}\n\t&--button-variant-h-grouped &__label-text {\n\t\ttext-align: center;\n\t}\n\t&--button-variant-h-grouped &__label {\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t\tmargin: 0;\n\t\tgap: 0;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},5886:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-048f418c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.empty-content[data-v-048f418c]{display:flex;align-items:center;flex-direction:column;margin-top:20vh}.modal-wrapper .empty-content[data-v-048f418c]{margin-top:5vh;margin-bottom:5vh}.empty-content__icon[data-v-048f418c]{display:flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-repeat:no-repeat;background-position:center;background-size:64px}.empty-content__icon[data-v-048f418c] svg{width:64px;height:64px;max-width:64px;max-height:64px}.empty-content__name[data-v-048f418c]{margin-bottom:10px;text-align:center}.empty-content__action[data-v-048f418c]{margin-top:8px}.modal-wrapper .empty-content__action[data-v-048f418c]{margin-top:20px;display:flex}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcEmptyContent/NcEmptyContent.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,gCACC,YAAA,CACA,kBAAA,CACA,qBAAA,CACA,eAAA,CAEA,+CACC,cAAA,CACA,iBAAA,CAGD,sCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kBAAA,CACA,UAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,0CACC,UAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CAIF,sCACC,kBAAA,CACA,iBAAA,CAGD,wCACC,cAAA,CAEA,uDACC,eAAA,CACA,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.empty-content {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: column;\n\tmargin-top: 20vh;\n\n\t.modal-wrapper & {\n\t\tmargin-top: 5vh;\n\t\tmargin-bottom: 5vh;\n\t}\n\n\t&__icon {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 64px;\n\t\theight: 64px;\n\t\tmargin: 0 auto 15px;\n\t\topacity: .4;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center;\n\t\tbackground-size: 64px;\n\n\t\t:deep(svg) {\n\t\t\twidth: 64px;\n\t\t\theight: 64px;\n\t\t\tmax-width: 64px;\n\t\t\tmax-height: 64px;\n\t\t}\n\t}\n\n\t&__name {\n\t\tmargin-bottom: 10px;\n\t\ttext-align: center;\n\t}\n\n\t&__action {\n\t\tmargin-top: 8px;\n\n\t\t.modal-wrapper & {\n\t\t\tmargin-top: 20px;\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const s=r},8502:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.loading-icon svg{\n\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\n}\n"],sourceRoot:""}]);const s=r},1625:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function o(e){for(var o=-1,a=0;a{"use strict";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{"use strict";e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},2112:()=>{},2102:()=>{},3768:()=>{},9258:()=>{},9280:()=>{},2405:()=>{},1900:(e,t,o)=>{"use strict";function a(e,t,o,a,n,i,r,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=o,l._compiled=!0),a&&(l.functional=!0),i&&(l._scopeId="data-v-"+i),r?(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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},l._ssrRegister=c):n&&(c=s?function(){n.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:n),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(e,t){return c.call(t),u(e,t)}}else{var d=l.beforeCreate;l.beforeCreate=d?[].concat(d,c):[c]}return{exports:e,options:l}}o.d(t,{Z:()=>a})},7931:e=>{"use strict";e.exports=o(23955)},9454:e=>{"use strict";e.exports=o(73045)},4505:e=>{"use strict";e.exports=o(15303)},2734:e=>{"use strict";e.exports=o(20144)},1441:e=>{"use strict";e.exports=o(89115)}},t={};function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;var i={};return(()=>{"use strict";n.r(i),n.d(i,{default:()=>W});var e=n(3329);const t={name:"NcAppSidebarTabs",components:{NcCheckboxRadioSwitch:n(998).default,NcVNodes:e.default},provide:function(){var e=this;return{registerTab:this.registerTab,unregisterTab:this.unregisterTab,getActiveTab:function(){return e.activeTab}}},props:{active:{type:String,default:""}},emits:["update:active"],data:function(){return{tabs:[],activeTab:""}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(t){return t.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()}},methods:{setActive:function(e){this.activeTab=e,this.$emit("update:active",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&this.setActive(this.tabs[this.currentTabIndex-1].id),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex0?this.tabs[0].id:""},registerTab:function(e){this.tabs.push(e),this.tabs.sort((function(e,t){return e.order===t.order?OC.Util.naturalSortCompare(e.name,t.name):e.order-t.order})),this.updateActive()},unregisterTab:function(e){var t=this.tabs.findIndex((function(t){return t.id===e}));-1!==t&&this.tabs.splice(t,1),this.activeTab===e&&this.updateActive()}}};var a=n(3379),r=n.n(a),s=n(7795),c=n.n(s),l=n(569),u=n.n(l),d=n(3565),m=n.n(d),p=n(9216),h=n.n(p),g=n(4589),v=n.n(g),f=n(5385),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,"head"),A.domAPI=c(),A.insertStyleElement=h(),r()(f.Z,A),f.Z&&f.Z.locals&&f.Z.locals;var y=n(1900);const k=(0,y.Z)(t,(function(){var e=this,t=e._self._c;return t("div",{staticClass:"app-sidebar-tabs"},[e.hasMultipleTabs?t("div",{staticClass:"app-sidebar-tabs__nav",attrs:{role:"tablist"},on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPreviousTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNextTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusActiveTabContent.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"home",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"end",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments))},function(t){return t.type.indexOf("key")||33===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments)):null},function(t){return t.type.indexOf("key")||34===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments)):null}]}},e._l(e.tabs,(function(o){return t("NcCheckboxRadioSwitch",{key:o.id,staticClass:"app-sidebar-tabs__tab",class:{active:o.id===e.activeTab},attrs:{"aria-controls":"tab-".concat(o.id),"aria-selected":e.activeTab===o.id,"button-variant":!0,checked:e.activeTab===o.id,"data-id":o.id,tabindex:e.activeTab===o.id?0:-1,"button-variant-grouped":"horizontal",role:"tab",type:"button"},on:{"update:checked":function(t){return e.setActive(o.id)}},scopedSlots:e._u([{key:"icon",fn:function(){return[t("NcVNodes",{attrs:{vnodes:o.renderIcon()}},[t("span",{staticClass:"app-sidebar-tabs__tab-icon",class:o.icon})])]},proxy:!0}],null,!0)},[t("span",{staticClass:"app-sidebar-tabs__tab-caption"},[e._v("\n\t\t\t\t"+e._s(o.name)+"\n\t\t\t")])])})),1):e._e(),e._v(" "),t("div",{staticClass:"app-sidebar-tabs__content",class:{"app-sidebar-tabs__content--multiple":e.hasMultipleTabs}},[e._t("default")],2)])}),[],!1,null,"3946530b",null).exports;var b=n(7664),C=n(6492),w=n(3089),S=n(9462),P=n(8167),N=n(640),x=n(336),j=n(932);const O=o(39429);var E=n.n(O);const _=o(82675);var B=n.n(_);const z=o(4777);var F=n.n(z);const T=o(74603);var M=n.n(T);const L=o(99495),D={name:"NcAppSidebar",components:{NcActions:b.default,NcAppSidebarTabs:k,ArrowRight:E(),NcButton:w.default,NcLoadingIcon:C.default,NcEmptyContent:S.default,Close:B(),Star:F(),StarOutline:M()},directives:{focus:P.default,linkify:N.default,ClickOutside:L.vOnClickOutside,Tooltip:x.default},props:{active:{type:String,default:""},name:{type:String,default:"",required:!0},nameEditable:{type:Boolean,default:!1},namePlaceholder:{type:String,default:""},subname:{type:String,default:""},subtitle:{type:String,default:""},background:{type:String,default:""},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyName:{type:Boolean,default:!1},title:{type:String,default:""}},emits:["close","closing","closed","opening","opened","figure-click","update:starred","update:nameEditable","update:name","update:active","submit-name","dismiss-editing"],data:function(){return{changeNameTranslated:(0,j.t)("Change name"),closeTranslated:(0,j.t)("Close sidebar"),favoriteTranslated:(0,j.t)("Favorite"),isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners["figure-click"]}},watch:{starred:function(){this.isStarred=this.starred}},beforeDestroy:function(){this.$emit("closed")},methods:{onBeforeEnter:function(e){this.$emit("opening",e)},onAfterEnter:function(e){this.$emit("opened",e)},onBeforeLeave:function(e){this.$emit("closing",e)},onAfterLeave:function(e){this.$emit("closed",e)},closeSidebar:function(e){this.$emit("close",e)},onFigureClick:function(e){this.$emit("figure-click",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit("update:starred",this.isStarred)},editName:function(){var e=this;this.$emit("update:nameEditable",!0),this.nameEditable&&this.$nextTick((function(){return e.$refs.nameInput.focus()}))},onNameInput:function(e){this.$emit("update:name",e.target.value)},onSubmitName:function(e){this.$emit("update:nameEditable",!1),this.$emit("submit-name",e)},onDismissEditing:function(){this.$emit("update:nameEditable",!1),this.$emit("dismiss-editing")},onUpdateActive:function(e){this.$emit("update:active",e)}}};var G=n(2365),U={};U.styleTagTransform=v(),U.setAttributes=m(),U.insert=u().bind(null,"head"),U.domAPI=c(),U.insertStyleElement=h(),r()(G.Z,U),G.Z&&G.Z.locals&&G.Z.locals;var R=n(2887),I={};I.styleTagTransform=v(),I.setAttributes=m(),I.insert=u().bind(null,"head"),I.domAPI=c(),I.insertStyleElement=h(),r()(R.Z,I),R.Z&&R.Z.locals&&R.Z.locals;var q=n(2112),$=n.n(q),H=(0,y.Z)(D,(function(){var e=this,t=e._self._c;return t("transition",{attrs:{appear:"",name:"slide-right"},on:{"before-enter":e.onBeforeEnter,"after-enter":e.onAfterEnter,"before-leave":e.onBeforeLeave,"after-leave":e.onAfterLeave}},[t("aside",{staticClass:"app-sidebar",attrs:{id:"app-sidebar-vue"}},[t("header",{staticClass:"app-sidebar-header",class:{"app-sidebar-header--with-figure":e.hasFigure,"app-sidebar-header--compact":e.compact}},[t("div",{staticClass:"app-sidebar-header__info"},[e.hasFigure&&!e.empty?t("div",{staticClass:"app-sidebar-header__figure",class:{"app-sidebar-header__figure--with-action":e.hasFigureClickListener},style:{backgroundImage:"url(".concat(e.background,")")},attrs:{tabindex:"0"},on:{click:e.onFigureClick,keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.onFigureClick.apply(null,arguments)}}},[e._t("header")],2):e._e(),e._v(" "),e.empty?e._e():t("div",{staticClass:"app-sidebar-header__desc",class:{"app-sidebar-header__desc--with-tertiary-action":e.canStar||e.$slots["tertiary-actions"],"app-sidebar-header__desc--editable":e.nameEditable&&!e.subname,"app-sidebar-header__desc--with-subname--editable":e.nameEditable&&e.subname,"app-sidebar-header__desc--without-actions":!e.$slots["secondary-actions"]}},[e.canStar||e.$slots["tertiary-actions"]?t("div",{staticClass:"app-sidebar-header__tertiary-actions"},[e._t("tertiary-actions",(function(){return[e.canStar?t("NcButton",{staticClass:"app-sidebar-header__star",attrs:{"aria-label":e.favoriteTranslated,pressed:e.isStarred,type:"secondary"},on:{click:function(t){return t.preventDefault(),e.toggleStarred.apply(null,arguments)}},scopedSlots:e._u([{key:"icon",fn:function(){return[e.starLoading?t("NcLoadingIcon"):e.isStarred?t("Star",{attrs:{size:20}}):t("StarOutline",{attrs:{size:20}})]},proxy:!0}],null,!1,2575459756)}):e._e()]}))],2):e._e(),e._v(" "),t("div",{staticClass:"app-sidebar-header__name-container"},[t("div",{staticClass:"app-sidebar-header__mainname-container"},[t("h2",{directives:[{name:"show",rawName:"v-show",value:!e.nameEditable,expression:"!nameEditable"},{name:"linkify",rawName:"v-linkify",value:{text:e.name,linkify:e.linkifyName},expression:"{text: name, linkify: linkifyName}"}],staticClass:"app-sidebar-header__mainname",attrs:{"aria-label":e.title,title:e.title,tabindex:e.nameEditable?0:void 0},on:{click:function(t){return t.target!==t.currentTarget?null:e.editName.apply(null,arguments)}}},[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.name)+"\n\t\t\t\t\t\t\t")]),e._v(" "),e.nameEditable?[t("form",{directives:[{name:"click-outside",rawName:"v-click-outside",value:function(){return e.onSubmitName()},expression:"() => onSubmitName()"}],staticClass:"app-sidebar-header__mainname-form",on:{submit:function(t){return t.preventDefault(),e.onSubmitName.apply(null,arguments)}}},[t("input",{directives:[{name:"focus",rawName:"v-focus"}],ref:"nameInput",staticClass:"app-sidebar-header__mainname-input",attrs:{type:"text",placeholder:e.namePlaceholder},domProps:{value:e.name},on:{keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:e.onDismissEditing.apply(null,arguments)},input:e.onNameInput}}),e._v(" "),t("NcButton",{attrs:{type:"tertiary-no-background","aria-label":e.changeNameTranslated,"native-type":"submit"},scopedSlots:e._u([{key:"icon",fn:function(){return[t("ArrowRight",{attrs:{size:20}})]},proxy:!0}],null,!1,1252225425)})],1)]:e._e(),e._v(" "),e.$slots["secondary-actions"]?t("NcActions",{staticClass:"app-sidebar-header__menu",attrs:{"force-menu":e.forceMenu}},[e._t("secondary-actions")],2):e._e()],2),e._v(" "),""!==e.subname.trim()?t("p",{staticClass:"app-sidebar-header__subname",attrs:{"aria-label":e.subtitle,title:e.subtitle}},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.subname)+"\n\t\t\t\t\t\t")]):e._e()])])]),e._v(" "),t("NcButton",{staticClass:"app-sidebar__close",attrs:{title:e.closeTranslated,"aria-label":e.closeTranslated,type:"tertiary"},on:{click:function(t){return t.preventDefault(),e.closeSidebar.apply(null,arguments)}},scopedSlots:e._u([{key:"icon",fn:function(){return[t("Close",{attrs:{size:20}})]},proxy:!0}])}),e._v(" "),e.$slots.description&&!e.empty?t("div",{staticClass:"app-sidebar-header__description"},[e._t("description")],2):e._e()],1),e._v(" "),t("NcAppSidebarTabs",{directives:[{name:"show",rawName:"v-show",value:!e.loading,expression:"!loading"}],ref:"tabs",attrs:{active:e.active},on:{"update:active":e.onUpdateActive}},[e._t("default")],2),e._v(" "),e.loading?t("NcEmptyContent",{scopedSlots:e._u([{key:"icon",fn:function(){return[t("NcLoadingIcon",{attrs:{size:64}})]},proxy:!0}],null,!1,826850984)}):e._e()],1)])}),[],!1,null,"1c6914a9",null);"function"==typeof $()&&$()(H);const W=H.exports})(),i})()))},62574:function(e){!function(t,o){e.exports=o()}(self,(()=>(()=>{"use strict";var e={4909:(e,t,o)=>{o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-4c850128]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar__tab[data-v-4c850128]{display:none;padding:10px;min-height:100%;max-height:100%;height:100%;overflow:auto}.app-sidebar__tab[data-v-4c850128]:focus{border-color:var(--color-primary-element);box-shadow:0 0 .2em var(--color-primary-element);outline:0}.app-sidebar__tab--active[data-v-4c850128]{display:block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAppSidebarTab/NcAppSidebarTab.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,YAAA,CACA,eAAA,CACA,eAAA,CACA,WAAA,CACA,aAAA,CAEA,yCACC,yCAAA,CACA,gDAAA,CACA,SAAA,CAGD,2CACC,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.app-sidebar__tab {\n\tdisplay: none;\n\tpadding: 10px;\n\tmin-height: 100%; // fill available height\n\tmax-height: 100%; // scroll inside\n\theight: 100%;\n\toverflow: auto;\n\n\t&:focus {\n\t\tborder-color: var(--color-primary-element);\n\t\tbox-shadow: 0 0 0.2em var(--color-primary-element);\n\t\toutline: 0;\n\t}\n\n\t&--active {\n\t\tdisplay: block;\n\t}\n}\n"],sourceRoot:""}]);const s=r},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},7537:e=>{e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{var t=[];function o(e){for(var o=-1,a=0;a{var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function o(a){var n=t[a];if(void 0!==n)return n.exports;var i=t[a]={id:a,exports:{}};return e[a](i,i.exports,o),i.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var a={};return(()=>{o.r(a),o.d(a,{default:()=>A});const e={name:"NcAppSidebarTab",inject:["registerTab","unregisterTab","getActiveTab"],props:{id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,default:""},order:{type:Number,default:0}},emits:["bottom-reached","scroll"],expose:["id","name","icon","order","renderIcon"],computed:{isActive:function(){return this.getActiveTab()===this.id}},created:function(){this.registerTab(this)},beforeDestroy:function(){this.unregisterTab(this.id)},methods:{onScroll:function(e){this.$el.scrollHeight-this.$el.scrollTop===this.$el.clientHeight&&this.$emit("bottom-reached",e),this.$emit("scroll",e)},renderIcon:function(){var e,t;return null===(e=(t=this.$scopedSlots).icon)||void 0===e?void 0:e.call(t)}}};var t=o(3379),n=o.n(t),i=o(7795),r=o.n(i),s=o(569),c=o.n(s),l=o(3565),u=o.n(l),d=o(9216),m=o.n(d),p=o(4589),h=o.n(p),g=o(4909),v={};v.styleTagTransform=h(),v.setAttributes=u(),v.insert=c().bind(null,"head"),v.domAPI=r(),v.insertStyleElement=m(),n()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var f=function(e,t,o,a,n,i,r,s){var c="function"==typeof e?e.options:e;return t&&(c.render=t,c.staticRenderFns=[],c._compiled=!0),i&&(c._scopeId="data-v-"+i),{exports:e,options:c}}(e,(function(){var e=this,t=e._self._c;return t("section",{staticClass:"app-sidebar__tab",class:{"app-sidebar__tab--active":e.isActive},attrs:{id:"tab-".concat(e.id),"aria-hidden":!e.isActive,"aria-labelledby":e.id,tabindex:"0",role:"tabpanel"},on:{scroll:e.onScroll}},[t("h3",{staticClass:"hidden-visually"},[e._v("\n\t\t"+e._s(e.name)+"\n\t")]),e._v(" "),e._t("default")],2)}),0,0,0,"4c850128");const A=f.exports})(),a})()))},11677:function(e,t,o){var a=o(25108);!function(t,o){e.exports=o()}(self,(()=>(()=>{var e={5166:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcActionLink",mixins:[o(9156).Z],props:{href:{type:String,default:"#",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith("#")||e.startsWith("/")}}},download:{type:String,default:null},target:{type:String,default:"_self",validator:function(e){return e&&(!e.startsWith("_")||["_blank","_self","_parent","_top"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(4402),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9158),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("li",{staticClass:"action"},[t("a",{staticClass:"action-link focusable",attrs:{download:e.download,href:e.href,"aria-label":e.ariaLabel,target:e.target,title:e.title,rel:"nofollow noreferrer noopener",role:"menuitem"},on:{click:e.onClick}},[e._t("icon",(function(){return[t("span",{staticClass:"action-link__icon",class:[e.isIconUrl?"action-link__icon--url":e.icon],style:{backgroundImage:e.isIconUrl?"url(".concat(e.icon,")"):null},attrs:{"aria-hidden":e.ariaHidden}})]})),e._v(" "),e.name?t("p",[t("strong",{staticClass:"action-link__name"},[e._v("\n\t\t\t\t"+e._s(e.name)+"\n\t\t\t")]),e._v(" "),t("br"),e._v(" "),t("span",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t("p",{staticClass:"action-link__longtext",domProps:{textContent:e._s(e.text)}}):t("span",{staticClass:"action-link__text"},[e._v(e._s(e.text))]),e._v(" "),e._e()],2)])}),[],!1,null,"df184e4e",null);"function"==typeof k()&&k()(b);const C=b.exports},7664:(e,t,o)=>{"use strict";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),c=o.n(s),l=o(1441),u=o.n(l);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit("focus",e)},onBlur:function(e){this.$emit("blur",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return"NcActionLink"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(c().util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,c,l,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e("span",{class:["icon",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||A,k=t.forceName?A:"",b=null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||b||(b=A),e("NcButton",{class:["action-item action-item--single",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{"aria-label":y,title:b},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?"secondary":"tertiary"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e("template",{slot:"icon"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e("span",{class:["icon",t.defaultIcon]}):e("DotsHorizontal",{props:{size:20}}));return e("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:"action-item__popper",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:"action-item__popper"}),on:{show:t.openMenu,"after-show":t.onOpen,hide:t.closeMenu}},[e("NcButton",{class:"action-item__menutoggle",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:"trigger",ref:"menuButton",attrs:{"aria-haspopup":a?null:"menu","aria-label":t.menuName?null:t.ariaLabel,"aria-controls":t.opened?t.randomId:null,"aria-expanded":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e("template",{slot:"icon"},[r]),t.menuName]),e("div",{class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:"menu"},[e("ul",{attrs:{id:t.randomId,tabindex:"-1",role:a?null:"menu"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),l=o.filter((function(e){return!s.includes(e)}));return e("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[l.length>0?e("div",{class:["action-item",{"action-item--open":this.opened}]},[r(l)]):null]))}return e("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),b=o(7795),C=o.n(b),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),_=o(9546),B={};B.styleTagTransform=E(),B.setAttributes=N(),B.insert=S().bind(null,"head"),B.domAPI=C(),B.insertStyleElement=j(),k()(_.Z,B),_.Z&&_.Z.locals&&_.Z.locals;var z=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,"head"),F.domAPI=C(),F.insertStyleElement=j(),k()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=o(1900),M=o(5727),L=o.n(M),D=(0,T.Z)(A,void 0,void 0,!1,null,"55038265",null);"function"==typeof L()&&L()(D);const G=D.exports},2158:(e,t,n)=>{"use strict";n.d(t,{default:()=>W});var i=n(7664),r=n(5166),s=n(3089),c=n(6492),l=n(9319),u=n(1137),d=n(932),m=n(768),p=n.n(m),h=n(1441),g=n.n(h),v=n(3607),f=n(542);const A=o(62556);var y=n(4262);const k=o(99495);function b(e){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b(e)}function C(){C=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==b(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function w(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function S(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){w(i,a,n,r,s,"next",e)}function s(e){w(i,a,n,r,s,"throw",e)}r(void 0)}))}}var P=(0,A.getBuilder)("nextcloud").persist().build();function N(e,t){e&&P.setItem("user-has-avatar."+e,t)}const x={name:"NcAvatar",directives:{ClickOutside:k.vOnClickOutside},components:{DotsHorizontal:g(),NcActions:i.default,NcActionLink:r.default,NcButton:s.default,NcLoadingIcon:c.default},mixins:[u.iQ],props:{url:{type:String,default:void 0},iconClass:{type:String,default:void 0},user:{type:String,default:void 0},showUserStatus:{type:Boolean,default:!0},showUserStatusCompact:{type:Boolean,default:!0},preloadedUserStatus:{type:Object,default:void 0},isGuest:{type:Boolean,default:!1},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},disableMenu:{type:Boolean,default:!1},tooltipMessage:{type:String,default:null},isNoUser:{type:Boolean,default:!1},menuContainer:{type:[String,Object,Element,Boolean],default:"body"}},data:function(){return{avatarUrlLoaded:null,avatarSrcSetLoaded:null,userDoesNotExist:!1,isAvatarLoaded:!1,isMenuLoaded:!1,contactsMenuLoading:!1,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{avatarAriaLabel:function(){var e,t;if(this.hasMenu)return this.hasStatus&&this.showUserStatus&&this.showUserStatusCompact?(0,d.t)("Avatar of {displayName}, {status}",{displayName:null!==(t=this.displayName)&&void 0!==t?t:this.user,status:this.userStatus.status}):(0,d.t)("Avatar of {displayName}",{displayName:null!==(e=this.displayName)&&void 0!==e?e:this.user})},canDisplayUserStatus:function(){return this.showUserStatus&&this.hasStatus&&["online","away","dnd"].includes(this.userStatus.status)},showUserStatusIconOnAvatar:function(){return this.showUserStatus&&this.showUserStatusCompact&&this.hasStatus&&"dnd"!==this.userStatus.status&&this.userStatus.icon},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},hasMenu:function(){var e;return!this.disableMenu&&(this.isMenuLoaded?this.menu.length>0:!(this.user===(null===(e=(0,v.getCurrentUser)())||void 0===e?void 0:e.uid)||this.userDoesNotExist||this.url))},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){return{"--size":this.size+"px",lineHeight:this.size+"px",fontSize:Math.round(.45*this.size)+"px"}},initialsWrapperStyle:function(){var e=(0,l.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{backgroundColor:"rgba(".concat(t,", ").concat(o,", ").concat(a,", 0.1)")}},initialsStyle:function(){var e=(0,l.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{color:"rgb(".concat(t,", ").concat(o,", ").concat(a,")")}},tooltip:function(){return!this.disableTooltip&&(this.tooltipMessage?this.tooltipMessage:this.displayName)},initials:function(){var e;if(this.shouldShowPlaceholder){var t=this.getUserIdentifier,o=t.indexOf(" ");""===t?e="?":(e=String.fromCodePoint(t.codePointAt(0)),-1!==o&&(e=e.concat(String.fromCodePoint(t.codePointAt(o+1)))))}return e.toUpperCase()},menu:function(){var e,t,o,a=this.contactsMenuActions.map((function(e){return{href:e.hyperlink,icon:e.icon,text:e.title}}));return this.showUserStatus&&(this.userStatus.icon||this.userStatus.message)?[{href:"#",icon:"data:image/svg+xml;utf8,".concat((e=this.userStatus.icon,t=document.createTextNode(e),o=document.createElement("p"),o.appendChild(t),o.innerHTML),""),text:"".concat(this.userStatus.message)}].concat(a):a}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.isMenuLoaded=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl(),(0,f.subscribe)("settings:avatar:updated",this.loadAvatarUrl),(0,f.subscribe)("settings:display-name:updated",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(this.preloadedUserStatus?(this.userStatus.status=this.preloadedUserStatus.status||"",this.userStatus.message=this.preloadedUserStatus.message||"",this.userStatus.icon=this.preloadedUserStatus.icon||"",this.hasStatus=null!==this.preloadedUserStatus.status):this.fetchUserStatus(this.user),(0,f.subscribe)("user_status:status.updated",this.handleUserStatusUpdated))},beforeDestroy:function(){(0,f.unsubscribe)("settings:avatar:updated",this.loadAvatarUrl),(0,f.unsubscribe)("settings:display-name:updated",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(0,f.unsubscribe)("user_status:status.updated",this.handleUserStatusUpdated)},methods:{t:d.t,handleUserStatusUpdated:function(e){this.user===e.userId&&(this.userStatus={status:e.status,icon:e.icon,message:e.message})},toggleMenu:function(){var e=this;return S(C().mark((function t(){return C().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.hasMenu){t.next=2;break}return t.abrupt("return");case 2:if(e.contactsMenuOpenState){t.next=5;break}return t.next=5,e.fetchContactsMenu();case 5:e.contactsMenuOpenState=!e.contactsMenuOpenState;case 6:case"end":return t.stop()}}),t)})))()},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var e=this;return S(C().mark((function t(){var o,a,n;return C().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.contactsMenuLoading=!0,t.prev=1,o=encodeURIComponent(e.user),t.next=5,p().post((0,y.generateUrl)("contactsmenu/findOne"),"shareType=0&shareWith=".concat(o));case 5:a=t.sent,n=a.data,e.contactsMenuActions=n.topAction?[n.topAction].concat(n.actions):n.actions,t.next=13;break;case 10:t.prev=10,t.t0=t.catch(1),e.contactsMenuOpenState=!1;case 13:e.contactsMenuLoading=!1,e.isMenuLoaded=!0;case 15:case"end":return t.stop()}}),t,null,[[1,10]])})))()},loadAvatarUrl:function(){if(this.isAvatarLoaded=!1,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.isAvatarLoaded=!0,void(this.userDoesNotExist=!0);if(this.isUrlDefined)this.updateImageIfValid(this.url);else if(this.size<=64){var e=this.avatarUrlGenerator(this.user,64),t=[e+" 1x",this.avatarUrlGenerator(this.user,512)+" 8x"].join(", ");this.updateImageIfValid(e,t)}else{var o=this.avatarUrlGenerator(this.user,512);this.updateImageIfValid(o)}},avatarUrlGenerator:function(e,t){var o,a="invert(100%)"===window.getComputedStyle(document.body).getPropertyValue("--background-invert-if-dark"),n="/avatar/{user}/{size}"+(a?"/dark":"");this.isGuest&&(n="/avatar/guest/{user}/{size}"+(a?"/dark":""));var i=(0,y.generateUrl)(n,{user:e,size:t});return e===(null===(o=(0,v.getCurrentUser)())||void 0===o?void 0:o.uid)&&"undefined"!=typeof oc_userconfig&&(i+="?v="+oc_userconfig.avatar.version),i},updateImageIfValid:function(e){var t,o,n=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=(t=this.user,"string"==typeof(o=P.getItem("user-has-avatar."+t))?Boolean(o):null);if(this.isUserDefined&&"boolean"==typeof r)return this.isAvatarLoaded=!0,this.avatarUrlLoaded=e,i&&(this.avatarSrcSetLoaded=i),void(!1===r&&(this.userDoesNotExist=!0));var s=new Image;s.onload=function(){n.avatarUrlLoaded=e,i&&(n.avatarSrcSetLoaded=i),n.isAvatarLoaded=!0,N(n.user,!0)},s.onerror=function(){a.debug("Invalid avatar url",e),n.avatarUrlLoaded=null,n.avatarSrcSetLoaded=null,n.userDoesNotExist=!0,n.isAvatarLoaded=!1,N(n.user,!1)},i&&(s.srcset=i),s.src=e}}};var j=n(3379),O=n.n(j),E=n(7795),_=n.n(E),B=n(569),z=n.n(B),F=n(3565),T=n.n(F),M=n(9216),L=n.n(M),D=n(4589),G=n.n(D),U=n(6222),R={};R.styleTagTransform=G(),R.setAttributes=T(),R.insert=z().bind(null,"head"),R.domAPI=_(),R.insertStyleElement=L(),O()(U.Z,R),U.Z&&U.Z.locals&&U.Z.locals;var I=n(1900),q=n(3051),$=n.n(q),H=(0,I.Z)(x,(function(){var e=this,t=e._self._c;return t("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:e.closeMenu,expression:"closeMenu"}],ref:"main",staticClass:"avatardiv popovermenu-wrapper",class:{"avatardiv--unknown":e.userDoesNotExist,"avatardiv--with-menu":e.hasMenu,"avatardiv--with-menu-loading":e.contactsMenuLoading},style:e.avatarStyle,attrs:{title:e.tooltip,tabindex:e.hasMenu?"0":void 0,"aria-label":e.avatarAriaLabel,role:e.hasMenu?"button":void 0},on:{click:e.toggleMenu,keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.toggleMenu.apply(null,arguments)}}},[e._t("icon",(function(){return[e.iconClass?t("div",{staticClass:"avatar-class-icon",class:e.iconClass}):e.isAvatarLoaded&&!e.userDoesNotExist?t("img",{attrs:{src:e.avatarUrlLoaded,srcset:e.avatarSrcSetLoaded,alt:""}}):e._e()]})),e._v(" "),e.hasMenu&&!e.menu.length?t("NcButton",{staticClass:"action-item action-item__menutoggle",attrs:{"aria-label":e.t("Open contact menu"),type:"tertiary-no-background"},scopedSlots:e._u([{key:"icon",fn:function(){return[e.contactsMenuLoading?t("NcLoadingIcon"):t("DotsHorizontal",{attrs:{size:20}})]},proxy:!0}],null,!1,2617833509)}):e.hasMenu?t("NcActions",{attrs:{"force-menu":"","manual-open":"",type:"tertiary-no-background",container:e.menuContainer,open:e.contactsMenuOpenState},scopedSlots:e._u([e.contactsMenuLoading?{key:"icon",fn:function(){return[t("NcLoadingIcon")]},proxy:!0}:null],null,!0)},e._l(e.menu,(function(o,a){return t("NcActionLink",{key:a,attrs:{href:o.href,icon:o.icon}},[e._v("\n\t\t\t"+e._s(o.text)+"\n\t\t")])})),1):e._e(),e._v(" "),e.showUserStatusIconOnAvatar?t("div",{staticClass:"avatardiv__user-status avatardiv__user-status--icon"},[e._v("\n\t\t"+e._s(e.userStatus.icon)+"\n\t")]):e.canDisplayUserStatus?t("div",{staticClass:"avatardiv__user-status",class:"avatardiv__user-status--"+e.userStatus.status}):e._e(),e._v(" "),!e.userDoesNotExist||e.iconClass||e.$slots.icon?e._e():t("div",{staticClass:"avatardiv__initials-wrapper",style:e.initialsWrapperStyle},[t("div",{staticClass:"unknown",style:e.initialsStyle},[e._v("\n\t\t\t"+e._s(e.initials)+"\n\t\t")])])],2)}),[],!1,null,"7de2f7ff",null);"function"==typeof $()&&$()(H);const W=H.exports},3089:(e,t,o)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;tx});const c={name:"NcButton",props:{alignment:{type:String,default:"center",validator:function(e){return["start","start-reverse","center","center-reverse","end","end-reverse"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(e)},default:"secondary"},nativeType:{type:String,validator:function(e){return-1!==["submit","reset","button"].indexOf(e)},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType:function(){return this.pressed?"primary":!1===this.pressed&&"primary"===this.type?"secondary":this.type},flexAlignment:function(){return this.alignment.split("-")[0]},isReverseAligned:function(){return this.alignment.includes("-")}},render:function(e){var t,o,n,i=this,c=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!c,u=null===(n=this.$slots)||void 0===n?void 0:n.icon;c||this.ariaLabel||a.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:c,ariaLabel:this.ariaLabel},this);var d=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,n=o.isActive,d=o.isExactActive;return e(i.to||!i.href?"button":"a",{class:["button-vue",(t={"button-vue--icon-only":u&&!l,"button-vue--text-only":l&&!u,"button-vue--icon-and-text":u&&l},s(t,"button-vue--vue-".concat(i.realType),i.realType),s(t,"button-vue--wide",i.wide),s(t,"button-vue--".concat(i.flexAlignment),"center"!==i.flexAlignment),s(t,"button-vue--reverse",i.isReverseAligned),s(t,"active",n),s(t,"router-link-exact-active",d),t)],attrs:r({"aria-label":i.ariaLabel,"aria-pressed":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?"button":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?"_self":null,rel:!i.to&&i.href?"nofollow noreferrer noopener":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:r(r({},i.$listeners),{},{click:function(e){"boolean"==typeof i.pressed&&i.$emit("update:pressed",!i.pressed),i.$emit("click",e),null==a||a(e)}})},[e("span",{class:"button-vue__wrapper"},[u?e("span",{class:"button-vue__icon",attrs:{"aria-hidden":i.ariaHidden}},[i.$slots.icon]):null,l?e("span",{class:"button-vue__text"},[c]):null])])};return this.to?e("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(7294),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(2102),P=o.n(S),N=(0,w.Z)(c,void 0,void 0,!1,null,"7aad13a0",null);"function"==typeof P()&&P()(N);const x=N.exports},4378:(e,t,o)=>{"use strict";o.d(t,{default:()=>k});var a=o(281),n=o(1336);const i={name:"NcEllipsisedOption",components:{NcHighlight:a.default},props:{name:{type:String,default:""},search:{type:String,default:""}},computed:{needsTruncate:function(){return this.name&&this.name.length>=10},split:function(){return this.name.length-Math.min(Math.floor(this.name.length/2),10)},part1:function(){return this.needsTruncate?this.name.slice(0,this.split):this.name},part2:function(){return this.needsTruncate?this.name.slice(this.split):""},highlight1:function(){return this.search?(0,n.Z)(this.name,this.search):[]},highlight2:function(){var e=this;return this.highlight1.map((function(t){return{start:t.start-e.split,end:t.end-e.split}}))}}};var r=o(3379),s=o.n(r),c=o(7795),l=o.n(c),u=o(569),d=o.n(u),m=o(3565),p=o.n(m),h=o(9216),g=o.n(h),v=o(4589),f=o.n(v),A=o(436),y={};y.styleTagTransform=f(),y.setAttributes=p(),y.insert=d().bind(null,"head"),y.domAPI=l(),y.insertStyleElement=g(),s()(A.Z,y),A.Z&&A.Z.locals&&A.Z.locals;const k=(0,o(1900).Z)(i,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"name-parts",attrs:{title:e.name}},[t("NcHighlight",{staticClass:"name-parts__first",attrs:{text:e.part1,search:e.search,highlight:e.highlight1}}),e._v(" "),e.part2?t("NcHighlight",{staticClass:"name-parts__last",attrs:{text:e.part2,search:e.search,highlight:e.highlight2}}):e._e()],1)}),[],!1,null,"3daafbe0",null).exports},281:(e,t,o)=>{"use strict";o.d(t,{default:()=>p});var a=o(1336);function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;t0?this.highlight:(0,a.Z)(this.text,this.search)).forEach((function(e,o){e.end0&&t.push({start:o.start<0?0:o.start,end:o.end>e.text.length?e.text.length:o.end}),t}),[]),t.sort((function(e,t){return e.start-t.start})),t=t.reduce((function(e,t){if(e.length){var o=e.length-1;e[o].end>=t.start?e[o]={start:e[o].start,end:Math.max(e[o].end,t.end)}:e.push(t)}else e.push(t);return e}),[]),t):t},chunks:function(){if(0===this.ranges.length)return[{start:0,end:this.text.length,highlight:!1,text:this.text}];for(var e=[],t=0,o=0;t=this.ranges.length&&t{"use strict";a.d(t,{default:()=>j});const n=o(62466);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function r(){r=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},s=n.iterator||"@@iterator",c=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,s,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,s)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,r,s,c){var l=m(e[a],e,r);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==i(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,c)}),(function(e){n("throw",e,s,c)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,c)}))}c(l.arg)}var r;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[s];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function s(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function c(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){s(i,a,n,r,c,"next",e)}function c(e){s(i,a,n,r,c,"throw",e)}r(void 0)}))}}const l={name:"NcIconSvgWrapper",props:{svg:{type:String,default:""},name:{type:String,default:""}},data:function(){return{cleanSvg:""}},beforeMount:function(){var e=this;return c(r().mark((function t(){return r().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.sanitizeSVG();case 2:case"end":return t.stop()}}),t)})))()},methods:{sanitizeSVG:function(){var e=this;return c(r().mark((function t(){return r().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.svg){t.next=2;break}return t.abrupt("return");case 2:return t.next=4,(0,n.sanitizeSVG)(e.svg);case 4:e.cleanSvg=t.sent;case 5:case"end":return t.stop()}}),t)})))()}}};var u=a(3379),d=a.n(u),m=a(7795),p=a.n(m),h=a(569),g=a.n(h),v=a(3565),f=a.n(v),A=a(9216),y=a.n(A),k=a(4589),b=a.n(k),C=a(2105),w={};w.styleTagTransform=b(),w.setAttributes=f(),w.insert=g().bind(null,"head"),w.domAPI=p(),w.insertStyleElement=y(),d()(C.Z,w),C.Z&&C.Z.locals&&C.Z.locals;var S=a(1900),P=a(1287),N=a.n(P),x=(0,S.Z)(l,(function(){var e=this;return(0,e._self._c)("span",{staticClass:"icon-vue",attrs:{role:"img","aria-hidden":!e.name,"aria-label":e.name},domProps:{innerHTML:e._s(e.cleanSvg)}})}),[],!1,null,"5937dacc",null);"function"==typeof N()&&N()(x);const j=x.exports},2321:(e,t,o)=>{"use strict";o.d(t,{default:()=>x});var a=o(2158),n=o(281),i=o(9598),r=o(1137);const s={name:"NcListItemIcon",components:{NcAvatar:a.default,NcHighlight:n.default,NcIconSvgWrapper:i.default},mixins:[r.iQ],props:{name:{type:String,required:!0},subname:{type:String,default:""},icon:{type:String,default:""},iconSvg:{type:String,default:""},iconName:{type:String,default:""},search:{type:String,default:""},avatarSize:{type:Number,default:32},noMargin:{type:Boolean,default:!1},displayName:{type:String,default:null},isNoUser:{type:Boolean,default:!1},id:{type:String,default:null}},data:function(){return{margin:8}},computed:{hasIcon:function(){return""!==this.icon},hasIconSvg:function(){return""!==this.iconSvg},isValidSubname:function(){var e,t;return""!==(null===(e=this.subname)||void 0===e||null===(t=e.trim)||void 0===t?void 0:t.call(e))},isSizeBigEnough:function(){return this.avatarSize>=32},cssVars:function(){var e=this.noMargin?0:this.margin;return{"--height":this.avatarSize+2*e+"px","--margin":this.margin+"px"}}},beforeMount:function(){this.isNoUser||this.subname||this.fetchUserStatus(this.user)}},c=s;var l=o(3379),u=o.n(l),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),b=o(4629),C={};C.styleTagTransform=k(),C.setAttributes=v(),C.insert=h().bind(null,"head"),C.domAPI=m(),C.insertStyleElement=A(),u()(b.Z,C),b.Z&&b.Z.locals&&b.Z.locals;var w=o(1900),S=o(8488),P=o.n(S),N=(0,w.Z)(c,(function(){var e=this,t=e._self._c;return t("span",e._g({staticClass:"option",style:e.cssVars,attrs:{id:e.id}},e.$listeners),[t("NcAvatar",e._b({staticClass:"option__avatar",attrs:{"disable-menu":!0,"disable-tooltip":!0,"display-name":e.displayName||e.name,"is-no-user":e.isNoUser,size:e.avatarSize}},"NcAvatar",e.$attrs,!1)),e._v(" "),t("div",{staticClass:"option__details"},[t("NcHighlight",{staticClass:"option__lineone",attrs:{text:e.name,search:e.search}}),e._v(" "),e.isValidSubname&&e.isSizeBigEnough?t("NcHighlight",{staticClass:"option__linetwo",attrs:{text:e.subname,search:e.search}}):e.hasStatus?t("span",[t("span",[e._v(e._s(e.userStatus.icon))]),e._v(" "),t("span",[e._v(e._s(e.userStatus.message))])]):e._e()],1),e._v(" "),e._t("default",(function(){return[e.hasIconSvg?t("NcIconSvgWrapper",{staticClass:"option__icon",attrs:{svg:e.iconSvg,name:e.iconName}}):e.hasIcon?t("span",{staticClass:"icon option__icon",class:e.icon,attrs:{"aria-label":e.iconName}}):e._e()]}))],2)}),[],!1,null,"160648e6",null);"function"==typeof P()&&P()(N);const x=N.exports},6492:(e,t,o)=>{"use strict";o.d(t,{default:()=>C});const a={name:"NcLoadingIcon",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return["auto","light","dark"].includes(e)},default:"auto"},name:{type:String,default:""}},computed:{colors:function(){var e=["#777","#CCC"];return"light"===this.appearance?e:"dark"===this.appearance?e.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),c=o(569),l=o.n(c),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=l().bind(null,"head"),f.domAPI=s(),f.insertStyleElement=p(),i()(v.Z,f),v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),b=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"material-design-icon loading-icon",attrs:{"aria-label":e.name,role:"img"}},[t("svg",{attrs:{width:e.size,height:e.size,viewBox:"0 0 24 24"}},[t("path",{attrs:{fill:e.colors[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"}}),e._v(" "),t("path",{attrs:{fill:e.colors[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"}},[e.name?t("title",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,"27fa1197",null);"function"==typeof k()&&k()(b);const C=b.exports},2297:(e,t,o)=>{"use strict";o.d(t,{default:()=>E});var n=o(9454),i=o(4505),r=o(1206);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",l=n.toStringTag||"@@toStringTag";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,c){var l=m(e[a],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==s(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,c)}),(function(e){n("throw",e,r,c)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,c)}))}c(l.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const u={name:"NcPopover",components:{Dropdown:n.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=c().mark((function e(){var o,a;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt("return");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt("return");case 7:t.$focusTrap=(0,i.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,r.L)()}),t.$focusTrap.activate();case 9:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,"next",e)}function s(e){l(i,a,n,r,s,"throw",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){a.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit("after-show"),e.useFocusTrap()}))},afterHide:function(){this.$emit("after-hide"),this.clearFocusTrap()}}},d=u;var m=o(3379),p=o.n(m),h=o(7795),g=o.n(h),v=o(569),f=o.n(v),A=o(3565),y=o.n(A),k=o(9216),b=o.n(k),C=o(4589),w=o.n(C),S=o(1625),P={};P.styleTagTransform=w(),P.setAttributes=y(),P.insert=f().bind(null,"head"),P.domAPI=g(),P.insertStyleElement=b(),p()(S.Z,P),S.Z&&S.Z.locals&&S.Z.locals;var N=o(1900),x=o(2405),j=o.n(x),O=(0,N.Z)(d,(function(){var e=this;return(0,e._self._c)("Dropdown",e._g(e._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":e.popoverBaseClass},on:{"apply-show":e.afterShow,"apply-hide":e.afterHide},scopedSlots:e._u([{key:"popper",fn:function(){return[e._t("default")]},proxy:!0}],null,!0)},"Dropdown",e.$attrs,!1),e.$listeners),[e._t("trigger")],2)}),[],!1,null,null,null);"function"==typeof j()&&j()(O);const E=O.exports},7176:(e,t,a)=>{"use strict";a.d(t,{default:()=>G});const n=o(29960),i=(o(65468),o(50326)),r=o(41622);var s=a.n(r),c=a(8618),l=a.n(c),u=a(4378),d=a(2321),m=a(6492),p=a(3648),h=["inputClass","noWrap","placement","userSelect"];function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function f(e){for(var t=1;t-1}:n.VueSelect.props.filterBy.default},localLabel:function(){return null!==this.label?this.label:this.userSelect?"displayName":n.VueSelect.props.label.default},propsToForward:function(){var e=this.$props,t=(e.inputClass,e.noWrap,e.placement,e.userSelect,f(f({},function(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}(e,h)),{},{calculatePosition:this.localCalculatePosition,filterBy:this.localFilterBy,label:this.localLabel}));return t}}},k=y;var b=a(3379),C=a.n(b),w=a(7795),S=a.n(w),P=a(569),N=a.n(P),x=a(3565),j=a.n(x),O=a(9216),E=a.n(O),_=a(4589),B=a.n(_),z=a(7283),F={};F.styleTagTransform=B(),F.setAttributes=j(),F.insert=N().bind(null,"head"),F.domAPI=S(),F.insertStyleElement=E(),C()(z.Z,F),z.Z&&z.Z.locals&&z.Z.locals;var T=a(1900),M=a(8220),L=a.n(M),D=(0,T.Z)(k,(function(){var e=this,t=e._self._c;return t("VueSelect",e._g(e._b({staticClass:"select",class:{"select--no-wrap":e.noWrap},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:"search",fn:function(o){var a=o.attributes,n=o.events;return[t("input",e._g(e._b({class:["vs__search",e.inputClass]},"input",a,!1),n))]}},{key:"open-indicator",fn:function(o){var a=o.attributes;return[t("ChevronDown",e._b({attrs:{"fill-color":"var(--vs-controls-color)",size:26}},"ChevronDown",a,!1))]}},{key:"option",fn:function(o){return[e.userSelect?t("NcListItemIcon",e._b({attrs:{name:o[e.localLabel],search:e.search}},"NcListItemIcon",o,!1)):t("NcEllipsisedOption",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:"selected-option",fn:function(o){return[e.userSelect?t("NcListItemIcon",e._b({attrs:{name:o[e.localLabel],search:e.search}},"NcListItemIcon",o,!1)):t("NcEllipsisedOption",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:"spinner",fn:function(o){return[o.loading?t("NcLoadingIcon"):e._e()]}},{key:"no-options",fn:function(){return[e._v("\n\t\t"+e._s(e.t("No results"))+"\n\t")]},proxy:!0},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},"VueSelect",e.propsToForward,!1),e.$listeners))}),[],!1,null,null,null);"function"==typeof L()&&L()(D);const G=D.exports},9319:(e,t,a)=>{"use strict";function n(e,t,o){this.r=e,this.g=t,this.b=o}function i(e,t,o){var a=[];a.push(t);for(var i=function(e,t){var o=new Array(3);return o[0]=(t[1].r-t[0].r)/e,o[1]=(t[1].g-t[0].g)/e,o[2]=(t[1].b-t[0].b)/e,o}(e,[t,o]),r=1;rc});const r=o(2568);var s=a.n(r);const c=function(e){var t=e.toLowerCase();return null===t.match(/^([0-9a-f]{4}-?){8}$/)&&(t=s()(t)),t=t.replace(/[^0-9a-f]/g,""),function(e){e||(e=6);var t=new n(182,70,157),o=new n(221,203,85),a=new n(0,130,201),r=i(e,t,o),s=i(e,o,a),c=i(e,a,t);return r.concat(s).concat(c)}(6)[function(e,t){for(var o=0,a=[],n=0;n{"use strict";o.d(t,{n:()=>i,t:()=>r});var a=(0,o(7931).getGettextBuilder)().detectLocale();[{locale:"af",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ar",translations:{"{tag} (invisible)":"{tag} (غير مرئي)","{tag} (restricted)":"{tag} (مقيد)","a few seconds ago":"منذ عدة ثوانٍ مضت",Actions:"الإجراءات",'Actions for item with name "{name}"':'إجراءات على العنصر المُسمَّى "{name}"',Activities:"الحركات","Animals & Nature":"الحيوانات والطبيعة","Any link":"أيَّ رابطٍ","Anything shared with the same group of people will show up here":"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا","Avatar of {displayName}":"الرمز التجسيدي avatar ـ {displayName} ","Avatar of {displayName}, {status}":"الرمز التجسيدي لـ {displayName}، {status}",Back:"عودة","Back to provider selection":"عودة إلى اختيار المُزوِّد","Cancel changes":"إلغاء التغييرات","Change name":"تغيير الاسم",Choose:"إختَر","Clear search":"محو البحث","Clear text":"محو النص",Close:"أغلِق","Close modal":"أغلِق النافذة الصُّورِية","Close navigation":"أغلِق المُتصفِّح","Close sidebar":"قفل الشريط الجانبي","Close Smart Picker":"أغلِق اللاقط الذكي Smart Picker","Collapse menu":"طَيّ القائمة","Confirm changes":"تأكيد التغييرات",Custom:"مُخصَّص","Edit item":"تعديل عنصر","Enter link":"أدخِل الرابط","Error getting related resources. Please contact your system administrator if you have any questions.":"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.","External documentation for {name}":"التوثيق الخارجي لـ {name}",Favorite:"المُفضَّلة",Flags:"الأعلام","Food & Drink":"الطعام والشراب","Frequently used":"شائعة الاستعمال",Global:"شامل","Go back to the list":"عودة إلى القائمة","Hide password":"إخفاء كلمة المرور",'Load more "{options}""':'حمّل "{options}"" أكثر',"Message limit of {count} characters reached":"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف","More items …":"عناصر أخرى ...","More options":"خيارات أخرى ...",Next:"التالي","No emoji found":"لم يتم العثور على أي إيموجي emoji","No link provider found":"لا يوجد أيّ مزود روابط link provider","No results":"ليس هناك أية نتيجة",Objects:"أشياء","Open contact menu":"إفتَح قائمة جهات الاتصال",'Open link to "{resourceName}"':'إفتَح الرابط إلى "{resourceName}"',"Open menu":"إفتَح القائمة","Open navigation":"إفتَح المتصفح","Open settings menu":"إفتَح قائمة الإعدادات","Password is secure":"كلمة المرور مُؤمّنة","Pause slideshow":"تجميد عرض الشرائح","People & Body":"ناس و أجسام","Pick a date":"إختَر التاريخ","Pick a date and a time":"إختَر التاريخ و الوقت","Pick a month":"إختَر الشهر","Pick a time":"إختَر الوقت","Pick a week":"إختَر الأسبوع","Pick a year":"إختَر السنة","Pick an emoji":"إختَر رمز إيموجي emoji","Please select a time zone:":"الرجاء تحديد المنطقة الزمنية:",Previous:"السابق","Provider icon":"أيقونة المُزوِّد","Raw link {options}":" الرابط الخام raw link ـ {options}","Related resources":"مصادر ذات صلة",Search:"بحث","Search emoji":"بحث عن إيموجي emoji","Search results":"نتائج البحث","sec. ago":"ثانية مضت","seconds ago":"ثوان مضت","Select a tag":"إختَر سِمَةً tag","Select provider":"إختَر مٌزوِّداً",Settings:"الإعدادات","Settings navigation":"إعدادات التّصفُّح","Show password":"أظهِر كلمة المرور","Smart Picker":"اللاقط الذكي smart picker","Smileys & Emotion":"وجوهٌ ضاحكة و مشاعر","Start slideshow":"إبدإ العرض","Start typing to search":"إبدإ كتابة مفردات البحث",Submit:"إرسال",Symbols:"رموز","Travel & Places":"سفر و أماكن","Type to search time zone":"أكتُب للبحث عن منطقة زمنية","Unable to search the group":"تعذّر البحث في المجموعة","Undo changes":"تراجع عن التغييرات",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل "@" للإشارة إلى شخص ما، و استخدم ":" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:"ast",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"az",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"be",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bg",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bn_BD",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"br",translations:{"{tag} (invisible)":"{tag} (diwelus)","{tag} (restricted)":"{tag} (bevennet)","a few seconds ago":"",Actions:"Oberioù",'Actions for item with name "{name}"':"",Activities:"Oberiantizoù","Animals & Nature":"Loened & Natur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Dibab","Clear search":"","Clear text":"",Close:"Serriñ","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Personelañ","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bannieloù","Food & Drink":"Boued & Evajoù","Frequently used":"Implijet alies",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Da heul","No emoji found":"Emoji ebet kavet","No link provider found":"","No results":"Disoc'h ebet",Objects:"Traoù","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Arsav an diaporama","People & Body":"Tud & Korf","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Choaz un emoji","Please select a time zone:":"",Previous:"A-raok","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Klask","Search emoji":"","Search results":"Disoc'hoù an enklask","sec. ago":"","seconds ago":"","Select a tag":"Choaz ur c'hlav","Select provider":"",Settings:"Arventennoù","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileyioù & Fromoù","Start slideshow":"Kregiñ an diaporama","Start typing to search":"",Submit:"",Symbols:"Arouezioù","Travel & Places":"Beaj & Lec'hioù","Type to search time zone":"","Unable to search the group":"Dibosupl eo klask ar strollad","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"bs",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ca",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"Activitats","Animals & Nature":"Animals i natura","Any link":"","Anything shared with the same group of people will show up here":"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancel·la els canvis","Change name":"",Choose:"Tria","Clear search":"","Clear text":"Netejar text",Close:"Tanca","Close modal":"Tancar el mode","Close navigation":"Tanca la navegació","Close sidebar":"Tancar la barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmeu els canvis",Custom:"Personalitzat","Edit item":"Edita l'element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferit",Flags:"Marques","Food & Drink":"Menjar i begudes","Frequently used":"Utilitzats recentment",Global:"Global","Go back to the list":"Torna a la llista","Hide password":"Amagar contrasenya",'Load more "{options}""':"","Message limit of {count} characters reached":"S'ha arribat al límit de {count} caràcters per missatge","More items …":"Més artícles...","More options":"",Next:"Següent","No emoji found":"No s'ha trobat cap emoji","No link provider found":"","No results":"Sense resultats",Objects:"Objectes","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Obre la navegació","Open settings menu":"","Password is secure":"Contrasenya segura
","Pause slideshow":"Atura la presentació","People & Body":"Persones i cos","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Trieu un emoji","Please select a time zone:":"Seleccioneu una zona horària:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionats",Search:"Cerca","Search emoji":"","Search results":"Resultats de cerca","sec. ago":"","seconds ago":"","Select a tag":"Seleccioneu una etiqueta","Select provider":"",Settings:"Paràmetres","Settings navigation":"Navegació d'opcions","Show password":"Mostrar contrasenya","Smart Picker":"","Smileys & Emotion":"Cares i emocions","Start slideshow":"Inicia la presentació","Start typing to search":"",Submit:"Envia",Symbols:"Símbols","Travel & Places":"Viatges i llocs","Type to search time zone":"Escriviu per cercar la zona horària","Unable to search the group":"No es pot cercar el grup","Undo changes":"Desfés els canvis",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escriu missatge, fes servir "@" per esmentar algú, fes servir ":" per autocompletar emojis...'}},{locale:"cs",translations:{"{tag} (invisible)":"{tag} (neviditelné)","{tag} (restricted)":"{tag} (omezené)","a few seconds ago":"před několika sekundami",Actions:"Akce",'Actions for item with name "{name}"':"Akce pro položku s názvem „{name}“",Activities:"Aktivity","Animals & Nature":"Zvířata a příroda","Any link":"Jakýkoli odkaz","Anything shared with the same group of people will show up here":"Cokoli nasdíleného stejné skupině lidí se zobrazí zde","Avatar of {displayName}":"Zástupný obrázek uživatele {displayName}","Avatar of {displayName}, {status}":"Zástupný obrázek uživatele {displayName}, {status}",Back:"Zpět","Back to provider selection":"Zpět na výběr poskytovatele","Cancel changes":"Zrušit změny","Change name":"Změnit název",Choose:"Zvolit","Clear search":"Vyčistit vyhledávání","Clear text":"Čitelný text",Close:"Zavřít","Close modal":"Zavřít dialogové okno","Close navigation":"Zavřít navigaci","Close sidebar":"Zavřít postranní panel","Close Smart Picker":"Zavřít inteligentní výběr","Collapse menu":"Sbalit nabídku","Confirm changes":"Potvrdit změny",Custom:"Uživatelsky určené","Edit item":"Upravit položku","Enter link":"Zadat odkaz","Error getting related resources. Please contact your system administrator if you have any questions.":"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.","External documentation for {name}":"Externí dokumentace pro {name}",Favorite:"Oblíbené",Flags:"Příznaky","Food & Drink":"Jídlo a pití","Frequently used":"Často používané",Global:"Globální","Go back to the list":"Jít zpět na seznam","Hide password":"Skrýt heslo",'Load more "{options}""':"Načíst více „{options}“","Message limit of {count} characters reached":"Dosaženo limitu počtu ({count}) znaků zprávy","More items …":"Další položky…","More options":"Další volby",Next:"Následující","No emoji found":"Nenalezeno žádné emoji","No link provider found":"Nenalezen žádný poskytovatel odkazů","No results":"Nic nenalezeno",Objects:"Objekty","Open contact menu":"Otevřít nabídku kontaktů",'Open link to "{resourceName}"':"Otevřít odkaz na „{resourceName}“","Open menu":"Otevřít nabídku","Open navigation":"Otevřít navigaci","Open settings menu":"Otevřít nabídku nastavení","Password is secure":"Heslo je bezpečné","Pause slideshow":"Pozastavit prezentaci","People & Body":"Lidé a tělo","Pick a date":"Vybrat datum","Pick a date and a time":"Vybrat datum a čas","Pick a month":"Vybrat měsíc","Pick a time":"Vybrat čas","Pick a week":"Vybrat týden","Pick a year":"Vybrat rok","Pick an emoji":"Vybrat emoji","Please select a time zone:":"Vyberte časovou zónu:",Previous:"Předchozí","Provider icon":"Ikona poskytovatele","Raw link {options}":"Holý odkaz {options}","Related resources":"Související prostředky",Search:"Hledat","Search emoji":"Hledat emoji","Search results":"Výsledky hledání","sec. ago":"sek. před","seconds ago":"sekund předtím","Select a tag":"Vybrat štítek","Select provider":"Vybrat poskytovatele",Settings:"Nastavení","Settings navigation":"Pohyb po nastavení","Show password":"Zobrazit heslo","Smart Picker":"Inteligentní výběr","Smileys & Emotion":"Úsměvy a emoce","Start slideshow":"Spustit prezentaci","Start typing to search":"Vyhledávejte psaním",Submit:"Odeslat",Symbols:"Symboly","Travel & Places":"Cestování a místa","Type to search time zone":"Psaním vyhledejte časovou zónu","Unable to search the group":"Nedaří se hledat skupinu","Undo changes":"Vzít změny zpět",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…"}},{locale:"cy_GB",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"da",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (begrænset)","a few seconds ago":"et par sekunder siden",Actions:"Handlinger",'Actions for item with name "{name}"':'Handlinger for element med navnet "{name}"',Activities:"Aktiviteter","Animals & Nature":"Dyr & Natur","Any link":"Ethvert link","Anything shared with the same group of people will show up here":"Alt der deles med samme gruppe af personer vil vises her","Avatar of {displayName}":"Avatar af {displayName}","Avatar of {displayName}, {status}":"Avatar af {displayName}, {status}",Back:"Tilbage","Back to provider selection":"Tilbage til udbydervalg","Cancel changes":"Annuller ændringer","Change name":"Ændre navn",Choose:"Vælg","Clear search":"Ryd søgning","Clear text":"Ryd tekst",Close:"Luk","Close modal":"Luk vindue","Close navigation":"Luk navigation","Close sidebar":"Luk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekræft ændringer",Custom:"Brugerdefineret","Edit item":"Rediger emne","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flag","Food & Drink":"Mad & Drikke","Frequently used":"Ofte brugt",Global:"Global","Go back to the list":"Tilbage til listen","Hide password":"Skjul kodeord",'Load more "{options}""':"","Message limit of {count} characters reached":"Begrænsning på {count} tegn er nået","More items …":"Mere ...","More options":"",Next:"Videre","No emoji found":"Ingen emoji fundet","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åbn navigation","Open settings menu":"","Password is secure":"Kodeordet er sikkert","Pause slideshow":"Suspender fremvisning","People & Body":"Mennesker & Menneskekroppen","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vælg en emoji","Please select a time zone:":"Vælg venligst en tidszone:",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterede emner",Search:"Søg","Search emoji":"","Search results":"Søgeresultater","sec. ago":"","seconds ago":"","Select a tag":"Vælg et mærke","Select provider":"",Settings:"Indstillinger","Settings navigation":"Naviger i indstillinger","Show password":"Vis kodeord","Smart Picker":"","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start fremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Rejser & Rejsemål","Type to search time zone":"Indtast for at søge efter tidszone","Unable to search the group":"Kan ikke søge på denne gruppe","Undo changes":"Fortryd ændringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv besked, brug "@" for at nævne nogen, brug ":" til emoji-autofuldførelse ...'}},{locale:"de",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"",Actions:"Aktionen",'Actions for item with name "{name}"':"",Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Änderungen verwerfen","Change name":"",Choose:"Auswählen","Clear search":"","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':"","Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"","No results":"Keine Ergebnisse",Objects:"Gegenstände","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigation öffnen","Open settings menu":"","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte wählen Sie eine Zeitzone:",Previous:"Vorherige","Provider icon":"","Raw link {options}":"","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"","Search results":"Suchergebnisse","sec. ago":"","seconds ago":"","Select a tag":"Schlagwort auswählen","Select provider":"",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um Zeitzone zu suchen","Unable to search the group":"Die Gruppe konnte nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"de_DE",translations:{"{tag} (invisible)":"{tag} (unsichtbar)","{tag} (restricted)":"{tag} (eingeschränkt)","a few seconds ago":"vor ein paar Sekunden",Actions:"Aktionen",'Actions for item with name "{name}"':'Aktionen für Element mit dem Namen "{name}“',Activities:"Aktivitäten","Animals & Nature":"Tiere & Natur","Any link":"Irgendein Link","Anything shared with the same group of people will show up here":"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt","Avatar of {displayName}":"Avatar von {displayName}","Avatar of {displayName}, {status}":"Avatar von {displayName}, {status}",Back:"Zurück","Back to provider selection":"Zurück zur Anbieterauswahl","Cancel changes":"Änderungen verwerfen","Change name":"Namen ändern",Choose:"Auswählen","Clear search":"Suche leeren","Clear text":"Klartext",Close:"Schließen","Close modal":"Modal schließen","Close navigation":"Navigation schließen","Close sidebar":"Seitenleiste schließen","Close Smart Picker":"Intelligente Auswahl schließen","Collapse menu":"Menü einklappen","Confirm changes":"Änderungen bestätigen",Custom:"Benutzerdefiniert","Edit item":"Objekt bearbeiten","Enter link":"Link eingeben","Error getting related resources. Please contact your system administrator if you have any questions.":"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.","External documentation for {name}":"Externe Dokumentation für {name}",Favorite:"Favorit",Flags:"Flaggen","Food & Drink":"Essen & Trinken","Frequently used":"Häufig verwendet",Global:"Global","Go back to the list":"Zurück zur Liste","Hide password":"Passwort verbergen",'Load more "{options}""':'Weitere "{options}“ laden',"Message limit of {count} characters reached":"Nachrichtenlimit von {count} Zeichen erreicht","More items …":"Weitere Elemente …","More options":"Mehr Optionen",Next:"Weiter","No emoji found":"Kein Emoji gefunden","No link provider found":"Kein Linkanbieter gefunden","No results":"Keine Ergebnisse",Objects:"Objekte","Open contact menu":"Kontaktmenü öffnen",'Open link to "{resourceName}"':'Link zu "{resourceName}“ öffnen',"Open menu":"Menü öffnen","Open navigation":"Navigation öffnen","Open settings menu":"Einstellungsmenü öffnen","Password is secure":"Passwort ist sicher","Pause slideshow":"Diashow pausieren","People & Body":"Menschen & Körper","Pick a date":"Ein Datum auswählen","Pick a date and a time":"Datum und Uhrzeit auswählen","Pick a month":"Einen Monat auswählen","Pick a time":"Eine Uhrzeit auswählen","Pick a week":"Eine Woche auswählen","Pick a year":"Ein Jahr auswählen","Pick an emoji":"Ein Emoji auswählen","Please select a time zone:":"Bitte eine Zeitzone auswählen:",Previous:"Vorherige","Provider icon":"Anbietersymbol","Raw link {options}":"Unverarbeiteter Link {Optionen}","Related resources":"Verwandte Ressourcen",Search:"Suche","Search emoji":"Emoji suchen","Search results":"Suchergebnisse","sec. ago":"Sek. zuvor","seconds ago":"Sekunden zuvor","Select a tag":"Schlagwort auswählen","Select provider":"Anbieter auswählen",Settings:"Einstellungen","Settings navigation":"Einstellungen für die Navigation","Show password":"Passwort anzeigen","Smart Picker":"Intelligente Auswahl","Smileys & Emotion":"Smileys & Emotionen","Start slideshow":"Diashow starten","Start typing to search":"Mit der Eingabe beginnen, um zu suchen",Submit:"Einreichen",Symbols:"Symbole","Travel & Places":"Reisen & Orte","Type to search time zone":"Tippen, um eine Zeitzone zu suchen","Unable to search the group":"Die Gruppe kann nicht durchsucht werden","Undo changes":"Änderungen rückgängig machen",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Nachricht schreiben, "@" um jemanden zu erwähnen, ":" für die automatische Vervollständigung von Emojis …'}},{locale:"el",translations:{"{tag} (invisible)":"{tag} (αόρατο)","{tag} (restricted)":"{tag} (περιορισμένο)","a few seconds ago":"",Actions:"Ενέργειες",'Actions for item with name "{name}"':"",Activities:"Δραστηριότητες","Animals & Nature":"Ζώα & Φύση","Any link":"","Anything shared with the same group of people will show up here":"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ","Avatar of {displayName}":"Άβαταρ του {displayName}","Avatar of {displayName}, {status}":"Άβαταρ του {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ακύρωση αλλαγών","Change name":"",Choose:"Επιλογή","Clear search":"","Clear text":"Εκκαθάριση κειμένου",Close:"Κλείσιμο","Close modal":"Βοηθητικό κλείσιμο","Close navigation":"Κλείσιμο πλοήγησης","Close sidebar":"Κλείσιμο πλευρικής μπάρας","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Επιβεβαίωση αλλαγών",Custom:"Προσαρμογή","Edit item":"Επεξεργασία","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Αγαπημένα",Flags:"Σημαίες","Food & Drink":"Φαγητό & Ποτό","Frequently used":"Συχνά χρησιμοποιούμενο",Global:"Καθολικό","Go back to the list":"Επιστροφή στην αρχική λίστα ","Hide password":"Απόκρυψη κωδικού πρόσβασης",'Load more "{options}""':"","Message limit of {count} characters reached":"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος","More items …":"Περισσότερα στοιχεία …","More options":"",Next:"Επόμενο","No emoji found":"Δεν βρέθηκε emoji","No link provider found":"","No results":"Κανένα αποτέλεσμα",Objects:"Αντικείμενα","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Άνοιγμα πλοήγησης","Open settings menu":"","Password is secure":"Ο κωδικός πρόσβασης είναι ασφαλής","Pause slideshow":"Παύση προβολής διαφανειών","People & Body":"Άνθρωποι & Σώμα","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Επιλέξτε ένα emoji","Please select a time zone:":"Παρακαλούμε επιλέξτε μια ζώνη ώρας:",Previous:"Προηγούμενο","Provider icon":"","Raw link {options}":"","Related resources":"Σχετικοί πόροι",Search:"Αναζήτηση","Search emoji":"","Search results":"Αποτελέσματα αναζήτησης","sec. ago":"","seconds ago":"","Select a tag":"Επιλογή ετικέτας","Select provider":"",Settings:"Ρυθμίσεις","Settings navigation":"Πλοήγηση ρυθμίσεων","Show password":"Εμφάνιση κωδικού πρόσβασης","Smart Picker":"","Smileys & Emotion":"Φατσούλες & Συναίσθημα","Start slideshow":"Έναρξη προβολής διαφανειών","Start typing to search":"",Submit:"Υποβολή",Symbols:"Σύμβολα","Travel & Places":"Ταξίδια & Τοποθεσίες","Type to search time zone":"Πληκτρολογήστε για αναζήτηση ζώνης ώρας","Unable to search the group":"Δεν είναι δυνατή η αναζήτηση της ομάδας","Undo changes":"Αναίρεση Αλλαγών",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε "@" για να αναφέρετε κάποιον, χρησιμοποιείστε ":" για αυτόματη συμπλήρωση emoji …'}},{locale:"en_GB",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"a few seconds ago",Actions:"Actions",'Actions for item with name "{name}"':'Actions for item with name "{name}"',Activities:"Activities","Animals & Nature":"Animals & Nature","Any link":"Any link","Anything shared with the same group of people will show up here":"Anything shared with the same group of people will show up here","Avatar of {displayName}":"Avatar of {displayName}","Avatar of {displayName}, {status}":"Avatar of {displayName}, {status}",Back:"Back","Back to provider selection":"Back to provider selection","Cancel changes":"Cancel changes","Change name":"Change name",Choose:"Choose","Clear search":"Clear search","Clear text":"Clear text",Close:"Close","Close modal":"Close modal","Close navigation":"Close navigation","Close sidebar":"Close sidebar","Close Smart Picker":"Close Smart Picker","Collapse menu":"Collapse menu","Confirm changes":"Confirm changes",Custom:"Custom","Edit item":"Edit item","Enter link":"Enter link","Error getting related resources. Please contact your system administrator if you have any questions.":"Error getting related resources. Please contact your system administrator if you have any questions.","External documentation for {name}":"External documentation for {name}",Favorite:"Favourite",Flags:"Flags","Food & Drink":"Food & Drink","Frequently used":"Frequently used",Global:"Global","Go back to the list":"Go back to the list","Hide password":"Hide password",'Load more "{options}""':'Load more "{options}""',"Message limit of {count} characters reached":"Message limit of {count} characters reached","More items …":"More items …","More options":"More options",Next:"Next","No emoji found":"No emoji found","No link provider found":"No link provider found","No results":"No results",Objects:"Objects","Open contact menu":"Open contact menu",'Open link to "{resourceName}"':'Open link to "{resourceName}"',"Open menu":"Open menu","Open navigation":"Open navigation","Open settings menu":"Open settings menu","Password is secure":"Password is secure","Pause slideshow":"Pause slideshow","People & Body":"People & Body","Pick a date":"Pick a date","Pick a date and a time":"Pick a date and a time","Pick a month":"Pick a month","Pick a time":"Pick a time","Pick a week":"Pick a week","Pick a year":"Pick a year","Pick an emoji":"Pick an emoji","Please select a time zone:":"Please select a time zone:",Previous:"Previous","Provider icon":"Provider icon","Raw link {options}":"Raw link {options}","Related resources":"Related resources",Search:"Search","Search emoji":"Search emoji","Search results":"Search results","sec. ago":"sec. ago","seconds ago":"seconds ago","Select a tag":"Select a tag","Select provider":"Select provider",Settings:"Settings","Settings navigation":"Settings navigation","Show password":"Show password","Smart Picker":"Smart Picker","Smileys & Emotion":"Smileys & Emotion","Start slideshow":"Start slideshow","Start typing to search":"Start typing to search",Submit:"Submit",Symbols:"Symbols","Travel & Places":"Travel & Places","Type to search time zone":"Type to search time zone","Unable to search the group":"Unable to search the group","Undo changes":"Undo changes",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Write message, use "@" to mention someone, use ":" for emoji autocompletion …'}},{locale:"eo",translations:{"{tag} (invisible)":"{tag} (kaŝita)","{tag} (restricted)":"{tag} (limigita)","a few seconds ago":"",Actions:"Agoj",'Actions for item with name "{name}"':"",Activities:"Aktiveco","Animals & Nature":"Bestoj & Naturo","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Elektu","Clear search":"","Clear text":"",Close:"Fermu","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Propra","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flagoj","Food & Drink":"Manĝaĵo & Trinkaĵo","Frequently used":"Ofte uzataj",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"La limo je {count} da literoj atingita","More items …":"","More options":"",Next:"Sekva","No emoji found":"La emoĝio forestas","No link provider found":"","No results":"La rezulto forestas",Objects:"Objektoj","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Payzi bildprezenton","People & Body":"Homoj & Korpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Elekti emoĝion ","Please select a time zone:":"",Previous:"Antaŭa","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Serĉi","Search emoji":"","Search results":"Serĉrezultoj","sec. ago":"","seconds ago":"","Select a tag":"Elektu etikedon","Select provider":"",Settings:"Agordo","Settings navigation":"Agorda navigado","Show password":"","Smart Picker":"","Smileys & Emotion":"Ridoj kaj Emocioj","Start slideshow":"Komenci bildprezenton","Start typing to search":"",Submit:"",Symbols:"Signoj","Travel & Places":"Vojaĵoj & Lokoj","Type to search time zone":"","Unable to search the group":"Ne eblas serĉi en la grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restringido)","a few seconds ago":"hace unos pocos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingrese enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Banderas","Food & Drink":"Comida y bebida","Frequently used":"Usado con frecuenca",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"El mensaje ha alcanzado el límite de {count} caracteres","More items …":"Más ítems...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No hay ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":" Ningún resultado",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de ajustes","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar la presentación ","People & Body":"Personas y cuerpos","Pick a date":"Seleccione una fecha","Pick a date and a time":"Seleccione una fecha y hora","Pick a month":"Seleccione un mes","Pick a time":"Seleccione una hora","Pick a week":"Seleccione una semana","Pick a year":"Seleccione un año","Pick an emoji":"Elegir un emoji","Please select a time zone:":"Por favor elige un huso de horario:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de la búsqueda","sec. ago":"hace segundos","seconds ago":"segundos atrás","Select a tag":"Seleccione una etiqueta","Select provider":"Seleccione proveedor",Settings:"Ajustes","Settings navigation":"Navegación por ajustes","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Smileys y emoticonos","Start slideshow":"Iniciar la presentación","Start typing to search":"Comience a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y lugares","Type to search time zone":"Escribe para buscar un huso de horario","Unable to search the group":"No es posible buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, utilice "@" para mencionar a alguien, utilice ":" para autocompletado de emojis ...'}},{locale:"es_419",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_AR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CL",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_CR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_DO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_EC",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restricted)","a few seconds ago":"hace unos segundos",Actions:"Acciones",'Actions for item with name "{name}"':'Acciones para el elemento con nombre "{name}"',Activities:"Actividades","Animals & Nature":"Animales y Naturaleza","Any link":"Cualquier enlace","Anything shared with the same group of people will show up here":"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Atrás","Back to provider selection":"Volver a la selección de proveedor","Cancel changes":"Cancelar cambios","Change name":"Cambiar nombre",Choose:"Elegir","Clear search":"Limpiar búsqueda","Clear text":"Limpiar texto",Close:"Cerrar","Close modal":"Cerrar modal","Close navigation":"Cerrar navegación","Close sidebar":"Cerrar barra lateral","Close Smart Picker":"Cerrar selector inteligente","Collapse menu":"Ocultar menú","Confirm changes":"Confirmar cambios",Custom:"Personalizado","Edit item":"Editar elemento","Enter link":"Ingresar enlace","Error getting related resources. Please contact your system administrator if you have any questions.":"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.","External documentation for {name}":"Documentación externa para {name}",Favorite:"Favorito",Flags:"Marcas","Food & Drink":"Comida y Bebida","Frequently used":"Frecuentemente utilizado",Global:"Global","Go back to the list":"Volver a la lista","Hide password":"Ocultar contraseña",'Load more "{options}""':'Cargar más "{options}"',"Message limit of {count} characters reached":"Se ha alcanzado el límite de caracteres del mensaje {count}","More items …":"Más elementos...","More options":"Más opciones",Next:"Siguiente","No emoji found":"No se encontró ningún emoji","No link provider found":"No se encontró ningún proveedor de enlaces","No results":"Sin resultados",Objects:"Objetos","Open contact menu":"Abrir menú de contactos",'Open link to "{resourceName}"':'Abrir enlace a "{resourceName}"',"Open menu":"Abrir menú","Open navigation":"Abrir navegación","Open settings menu":"Abrir menú de configuración","Password is secure":"La contraseña es segura","Pause slideshow":"Pausar presentación de diapositivas","People & Body":"Personas y Cuerpo","Pick a date":"Seleccionar una fecha","Pick a date and a time":"Seleccionar una fecha y una hora","Pick a month":"Seleccionar un mes","Pick a time":"Seleccionar una semana","Pick a week":"Seleccionar una semana","Pick a year":"Seleccionar un año","Pick an emoji":"Seleccionar un emoji","Please select a time zone:":"Por favor, selecciona una zona horaria:",Previous:"Anterior","Provider icon":"Ícono del proveedor","Raw link {options}":"Enlace directo {options}","Related resources":"Recursos relacionados",Search:"Buscar","Search emoji":"Buscar emoji","Search results":"Resultados de búsqueda","sec. ago":"hace segundos","seconds ago":"Segundos atrás","Select a tag":"Seleccionar una etiqueta","Select provider":"Seleccionar proveedor",Settings:"Configuraciones","Settings navigation":"Navegación de configuraciones","Show password":"Mostrar contraseña","Smart Picker":"Selector inteligente","Smileys & Emotion":"Caritas y Emociones","Start slideshow":"Iniciar presentación de diapositivas","Start typing to search":"Comienza a escribir para buscar",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viajes y Lugares","Type to search time zone":"Escribe para buscar la zona horaria","Unable to search the group":"No se puede buscar en el grupo","Undo changes":"Deshacer cambios",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escribir mensaje, usar "@" para mencionar a alguien, usar ":" para autocompletar emojis...'}},{locale:"es_GT",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_HN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_MX",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_NI",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PR",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_PY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_SV",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"es_UY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"et_EE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"eu",translations:{"{tag} (invisible)":"{tag} (ikusezina)","{tag} (restricted)":"{tag} (mugatua)","a few seconds ago":"",Actions:"Ekintzak",'Actions for item with name "{name}"':"",Activities:"Jarduerak","Animals & Nature":"Animaliak eta Natura","Any link":"","Anything shared with the same group of people will show up here":"Pertsona-talde berarekin partekatutako edozer agertuko da hemen","Avatar of {displayName}":"{displayName}-(e)n irudia","Avatar of {displayName}, {status}":"{displayName} -(e)n irudia, {status}",Back:"","Back to provider selection":"","Cancel changes":"Ezeztatu aldaketak","Change name":"",Choose:"Aukeratu","Clear search":"","Clear text":"Garbitu testua",Close:"Itxi","Close modal":"Itxi modala","Close navigation":"Itxi nabigazioa","Close sidebar":"Itxi albo-barra","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Baieztatu aldaketak",Custom:"Pertsonalizatua","Edit item":"Editatu elementua","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Gogokoa",Flags:"Banderak","Food & Drink":"Janaria eta edariak","Frequently used":"Askotan erabilia",Global:"Globala","Go back to the list":"Bueltatu zerrendara","Hide password":"Ezkutatu pasahitza",'Load more "{options}""':"","Message limit of {count} characters reached":"Mezuaren {count} karaketere-limitera heldu zara","More items …":"Elementu gehiago …","More options":"",Next:"Hurrengoa","No emoji found":"Ez da emojirik aurkitu","No link provider found":"","No results":"Emaitzarik ez",Objects:"Objektuak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Ireki nabigazioa","Open settings menu":"","Password is secure":"Pasahitza segurua da","Pause slideshow":"Pausatu diaporama","People & Body":"Jendea eta gorputza","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Hautatu emoji bat","Please select a time zone:":"Mesedez hautatu ordu-zona bat:",Previous:"Aurrekoa","Provider icon":"","Raw link {options}":"","Related resources":"Erlazionatutako baliabideak",Search:"Bilatu","Search emoji":"","Search results":"Bilaketa emaitzak","sec. ago":"","seconds ago":"","Select a tag":"Hautatu etiketa bat","Select provider":"",Settings:"Ezarpenak","Settings navigation":"Nabigazio ezarpenak","Show password":"Erakutsi pasahitza","Smart Picker":"","Smileys & Emotion":"Smileyak eta emozioa","Start slideshow":"Hasi diaporama","Start typing to search":"",Submit:"Bidali",Symbols:"Sinboloak","Travel & Places":"Bidaiak eta lekuak","Type to search time zone":"Idatzi ordu-zona bat bilatzeko","Unable to search the group":"Ezin izan da taldea bilatu","Undo changes":"Aldaketak desegin",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Idatzi mezua, erabili "@" norbait aipatzeko, erabili ":" emojiak automatikoki osatzeko...'}},{locale:"fa",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fi",translations:{"{tag} (invisible)":"{tag} (näkymätön)","{tag} (restricted)":"{tag} (rajoitettu)","a few seconds ago":"",Actions:"Toiminnot",'Actions for item with name "{name}"':"",Activities:"Aktiviteetit","Animals & Nature":"Eläimet & luonto","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Käyttäjän {displayName} avatar","Avatar of {displayName}, {status}":"Käyttäjän {displayName} avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Peruuta muutokset","Change name":"",Choose:"Valitse","Clear search":"","Clear text":"",Close:"Sulje","Close modal":"","Close navigation":"Sulje navigaatio","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Vahvista muutokset",Custom:"Mukautettu","Edit item":"Muokkaa kohdetta","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Liput","Food & Drink":"Ruoka & juoma","Frequently used":"Usein käytetyt",Global:"Yleinen","Go back to the list":"Siirry takaisin listaan","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Viestin merkken enimmäisimäärä {count} täynnä ","More items …":"","More options":"",Next:"Seuraava","No emoji found":"Emojia ei löytynyt","No link provider found":"","No results":"Ei tuloksia",Objects:"Esineet & asiat","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Avaa navigaatio","Open settings menu":"","Password is secure":"","Pause slideshow":"Keskeytä diaesitys","People & Body":"Ihmiset & keho","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Valitse emoji","Please select a time zone:":"Valitse aikavyöhyke:",Previous:"Edellinen","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Etsi","Search emoji":"","Search results":"Hakutulokset","sec. ago":"","seconds ago":"","Select a tag":"Valitse tagi","Select provider":"",Settings:"Asetukset","Settings navigation":"Asetusnavigaatio","Show password":"","Smart Picker":"","Smileys & Emotion":"Hymiöt & tunteet","Start slideshow":"Aloita diaesitys","Start typing to search":"",Submit:"Lähetä",Symbols:"Symbolit","Travel & Places":"Matkustus & kohteet","Type to search time zone":"Kirjoita etsiäksesi aikavyöhyke","Unable to search the group":"Ryhmää ei voi hakea","Undo changes":"Kumoa muutokset",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"fr",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (restreint)","a few seconds ago":"il y a quelques instants",Actions:"Actions",'Actions for item with name "{name}"':"",Activities:"Activités","Animals & Nature":"Animaux & Nature","Any link":"","Anything shared with the same group of people will show up here":"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Retour","Back to provider selection":"","Cancel changes":"Annuler les modifications","Change name":"Modifier le nom",Choose:"Choisir","Clear search":"Effacer la recherche","Clear text":"Effacer le texte",Close:"Fermer","Close modal":"Fermer la fenêtre","Close navigation":"Fermer la navigation","Close sidebar":"Fermer la barre latérale","Close Smart Picker":"","Collapse menu":"Réduire le menu","Confirm changes":"Confirmer les modifications",Custom:"Personnalisé","Edit item":"Éditer l'élément","Enter link":"Saisissez le lien","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"Documentation externe pour {name}",Favorite:"Favori",Flags:"Drapeaux","Food & Drink":"Nourriture & Boissons","Frequently used":"Utilisés fréquemment",Global:"Global","Go back to the list":"Retourner à la liste","Hide password":"Cacher le mot de passe",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de messages de {count} caractères atteinte","More items …":"Plus d'éléments...","More options":"Plus d'options",Next:"Suivant","No emoji found":"Pas d’émoji trouvé","No link provider found":"","No results":"Aucun résultat",Objects:"Objets","Open contact menu":"Ouvrir le menu Contact",'Open link to "{resourceName}"':"","Open menu":"Ouvrir le menu","Open navigation":"Ouvrir la navigation","Open settings menu":"Ouvrir le menu Paramètres","Password is secure":"Le mot de passe est sécurisé","Pause slideshow":"Mettre le diaporama en pause","People & Body":"Personnes & Corps","Pick a date":"Sélectionner une date","Pick a date and a time":"Sélectionner une date et une heure","Pick a month":"Sélectionner un mois","Pick a time":"Sélectionner une heure","Pick a week":"Sélectionner une semaine","Pick a year":"Sélectionner une année","Pick an emoji":"Choisissez un émoji","Please select a time zone:":"Sélectionnez un fuseau horaire : ",Previous:"Précédent","Provider icon":"","Raw link {options}":"","Related resources":"Ressources liées",Search:"Chercher","Search emoji":"Rechercher un emoji","Search results":"Résultats de recherche","sec. ago":"","seconds ago":"","Select a tag":"Sélectionnez une balise","Select provider":"",Settings:"Paramètres","Settings navigation":"Navigation dans les paramètres","Show password":"Afficher le mot de passe","Smart Picker":"","Smileys & Emotion":"Smileys & Émotions","Start slideshow":"Démarrer le diaporama","Start typing to search":"",Submit:"Valider",Symbols:"Symboles","Travel & Places":"Voyage & Lieux","Type to search time zone":"Saisissez les premiers lettres pour rechercher un fuseau horaire","Unable to search the group":"Impossible de chercher le groupe","Undo changes":"Annuler les changements",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Écrire un message, utiliser "@" pour mentionner une personne, ":" pour l\'autocomplétion des émojis...'}},{locale:"gd",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"gl",translations:{"{tag} (invisible)":"{tag} (invisíbel)","{tag} (restricted)":"{tag} (restrinxido)","a few seconds ago":"",Actions:"Accións",'Actions for item with name "{name}"':"",Activities:"Actividades","Animals & Nature":"Animais e natureza","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"Cancelar os cambios","Change name":"",Choose:"Escoller","Clear search":"","Clear text":"",Close:"Pechar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirma os cambios",Custom:"Personalizado","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Bandeiras","Food & Drink":"Comida e bebida","Frequently used":"Usado con frecuencia",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Acadouse o límite de {count} caracteres por mensaxe","More items …":"","More options":"",Next:"Seguinte","No emoji found":"Non se atopou ningún «emoji»","No link provider found":"","No results":"Sen resultados",Objects:"Obxectos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pausar o diaporama","People & Body":"Persoas e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolla un «emoji»","Please select a time zone:":"",Previous:"Anterir","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Buscar","Search emoji":"","Search results":"Resultados da busca","sec. ago":"","seconds ago":"","Select a tag":"Seleccione unha etiqueta","Select provider":"",Settings:"Axustes","Settings navigation":"Navegación polos axustes","Show password":"","Smart Picker":"","Smileys & Emotion":"Sorrisos e emocións","Start slideshow":"Iniciar o diaporama","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolos","Travel & Places":"Viaxes e lugares","Type to search time zone":"","Unable to search the group":"Non foi posíbel buscar o grupo","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"he",translations:{"{tag} (invisible)":"{tag} (נסתר)","{tag} (restricted)":"{tag} (מוגבל)","a few seconds ago":"לפני מספר שניות",Actions:"פעולות",'Actions for item with name "{name}"':"פעולות לפריט בשם „{name}”",Activities:"פעילויות","Animals & Nature":"חיות וטבע","Any link":"קישור כלשהו","Anything shared with the same group of people will show up here":"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן","Avatar of {displayName}":"תמונה ייצוגית של {displayName}","Avatar of {displayName}, {status}":"תמונה ייצוגית של {displayName}, {status}",Back:"חזרה","Back to provider selection":"חזרה לבחירת ספק","Cancel changes":"ביטול שינויים","Change name":"החלפת שם",Choose:"בחירה","Clear search":"פינוי חיפוש","Clear text":"פינוי טקסט",Close:"סגירה","Close modal":"סגירת החלונית","Close navigation":"סגירת הניווט","Close sidebar":"סגירת סרגל הצד","Close Smart Picker":"סגירת הבורר החכם","Collapse menu":"צמצום התפריט","Confirm changes":"אישור השינויים",Custom:"בהתאמה אישית","Edit item":"עריכת פריט","Enter link":"מילוי קישור","Error getting related resources. Please contact your system administrator if you have any questions.":"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.","External documentation for {name}":"תיעוד חיצוני עבור {name}",Favorite:"למועדפים",Flags:"דגלים","Food & Drink":"מזון ומשקאות","Frequently used":"בשימוש תדיר",Global:"כללי","Go back to the list":"חזרה לרשימה","Hide password":"הסתרת סיסמה",'Load more "{options}""':"טעינת „{options}” נוספות","Message limit of {count} characters reached":"הגעת למגבלה של {count} תווים","More items …":"פריטים נוספים…","More options":"אפשרויות נוספות",Next:"הבא","No emoji found":"לא נמצא אמוג׳י","No link provider found":"לא נמצא ספק קישורים","No results":"אין תוצאות",Objects:"חפצים","Open contact menu":"פתיחת תפריט קשר",'Open link to "{resourceName}"':"פתיחת קישור אל „{resourceName}”","Open menu":"פתיחת תפריט","Open navigation":"פתיחת ניווט","Open settings menu":"פתיחת תפריט הגדרות","Password is secure":"הסיסמה מאובטחת","Pause slideshow":"השהיית מצגת","People & Body":"אנשים וגוף","Pick a date":"נא לבחור תאריך","Pick a date and a time":"נא לבחור תאריך ושעה","Pick a month":"נא לבחור חודש","Pick a time":"נא לבחור שעה","Pick a week":"נא לבחור שבוע","Pick a year":"נא לבחור שנה","Pick an emoji":"נא לבחור אמוג׳י","Please select a time zone:":"נא לבחור אזור זמן:",Previous:"הקודם","Provider icon":"סמל ספק","Raw link {options}":"קישור גולמי {options}","Related resources":"משאבים קשורים",Search:"חיפוש","Search emoji":"חיפוש אמוג׳י","Search results":"תוצאות חיפוש","sec. ago":"לפני מספר שניות","seconds ago":"לפני מס׳ שניות","Select a tag":"בחירת תגית","Select provider":"בחירת ספק",Settings:"הגדרות","Settings navigation":"ניווט בהגדרות","Show password":"הצגת סיסמה","Smart Picker":"בורר חכם","Smileys & Emotion":"חייכנים ורגשונים","Start slideshow":"התחלת המצגת","Start typing to search":"התחלת הקלדה מחפשת",Submit:"הגשה",Symbols:"סמלים","Travel & Places":"טיולים ומקומות","Type to search time zone":"יש להקליד כדי לחפש אזור זמן","Unable to search the group":"לא ניתן לחפש בקבוצה","Undo changes":"ביטול שינויים",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…"}},{locale:"hi_IN",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hsb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"hu",translations:{"{tag} (invisible)":"{tag} (láthatatlan)","{tag} (restricted)":"{tag} (korlátozott)","a few seconds ago":"",Actions:"Műveletek",'Actions for item with name "{name}"':"",Activities:"Tevékenységek","Animals & Nature":"Állatok és természet","Any link":"","Anything shared with the same group of people will show up here":"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni","Avatar of {displayName}":"{displayName} profilképe","Avatar of {displayName}, {status}":"{displayName} profilképe, {status}",Back:"","Back to provider selection":"","Cancel changes":"Változtatások elvetése","Change name":"",Choose:"Válassszon","Clear search":"","Clear text":"Szöveg törlése",Close:"Bezárás","Close modal":"Ablak bezárása","Close navigation":"Navigáció bezárása","Close sidebar":"Oldalsáv bezárása","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Változtatások megerősítése",Custom:"Egyéni","Edit item":"Elem szerkesztése","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Kedvenc",Flags:"Zászlók","Food & Drink":"Étel és ital","Frequently used":"Gyakran használt",Global:"Globális","Go back to the list":"Ugrás vissza a listához","Hide password":"Jelszó elrejtése",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} karakteres üzenetkorlát elérve","More items …":"További elemek...","More options":"",Next:"Következő","No emoji found":"Nem található emodzsi","No link provider found":"","No results":"Nincs találat",Objects:"Tárgyak","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigáció megnyitása","Open settings menu":"","Password is secure":"A jelszó biztonságos","Pause slideshow":"Diavetítés szüneteltetése","People & Body":"Emberek és test","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Válasszon egy emodzsit","Please select a time zone:":"Válasszon időzónát:",Previous:"Előző","Provider icon":"","Raw link {options}":"","Related resources":"Kapcsolódó erőforrások",Search:"Keresés","Search emoji":"","Search results":"Találatok","sec. ago":"","seconds ago":"","Select a tag":"Válasszon címkét","Select provider":"",Settings:"Beállítások","Settings navigation":"Navigáció a beállításokban","Show password":"Jelszó megjelenítése","Smart Picker":"","Smileys & Emotion":"Mosolyok és érzelmek","Start slideshow":"Diavetítés indítása","Start typing to search":"",Submit:"Beküldés",Symbols:"Szimbólumok","Travel & Places":"Utazás és helyek","Type to search time zone":"Gépeljen az időzóna kereséséhez","Unable to search the group":"A csoport nem kereshető","Undo changes":"Változtatások visszavonása",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…"}},{locale:"hy",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ia",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"id",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ig",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"is",translations:{"{tag} (invisible)":"{tag} (ósýnilegt)","{tag} (restricted)":"{tag} (takmarkað)","a few seconds ago":"",Actions:"Aðgerðir",'Actions for item with name "{name}"':"",Activities:"Aðgerðir","Animals & Nature":"Dýr og náttúra","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Velja","Clear search":"","Clear text":"",Close:"Loka","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Sérsniðið","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Flögg","Food & Drink":"Matur og drykkur","Frequently used":"Oftast notað",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Næsta","No emoji found":"Ekkert tjáningartákn fannst","No link provider found":"","No results":"Engar niðurstöður",Objects:"Hlutir","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Gera hlé á skyggnusýningu","People & Body":"Fólk og líkami","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Veldu tjáningartákn","Please select a time zone:":"",Previous:"Fyrri","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Leita","Search emoji":"","Search results":"Leitarniðurstöður","sec. ago":"","seconds ago":"","Select a tag":"Veldu merki","Select provider":"",Settings:"Stillingar","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"Broskallar og tilfinningar","Start slideshow":"Byrja skyggnusýningu","Start typing to search":"",Submit:"",Symbols:"Tákn","Travel & Places":"Staðir og ferðalög","Type to search time zone":"","Unable to search the group":"Get ekki leitað í hópnum","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"it",translations:{"{tag} (invisible)":"{tag} (invisibile)","{tag} (restricted)":"{tag} (limitato)","a few seconds ago":"",Actions:"Azioni",'Actions for item with name "{name}"':"",Activities:"Attività","Animals & Nature":"Animali e natura","Any link":"","Anything shared with the same group of people will show up here":"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui","Avatar of {displayName}":"Avatar di {displayName}","Avatar of {displayName}, {status}":"Avatar di {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Annulla modifiche","Change name":"",Choose:"Scegli","Clear search":"","Clear text":"Cancella il testo",Close:"Chiudi","Close modal":"Chiudi il messaggio modale","Close navigation":"Chiudi la navigazione","Close sidebar":"Chiudi la barra laterale","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Conferma modifiche",Custom:"Personalizzato","Edit item":"Modifica l'elemento","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Preferito",Flags:"Bandiere","Food & Drink":"Cibo e bevande","Frequently used":"Usati di frequente",Global:"Globale","Go back to the list":"Torna all'elenco","Hide password":"Nascondi la password",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite dei messaggi di {count} caratteri raggiunto","More items …":"Più elementi ...","More options":"",Next:"Successivo","No emoji found":"Nessun emoji trovato","No link provider found":"","No results":"Nessun risultato",Objects:"Oggetti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Apri la navigazione","Open settings menu":"","Password is secure":"La password è sicura","Pause slideshow":"Presentazione in pausa","People & Body":"Persone e corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Scegli un emoji","Please select a time zone:":"Si prega di selezionare un fuso orario:",Previous:"Precedente","Provider icon":"","Raw link {options}":"","Related resources":"Risorse correlate",Search:"Cerca","Search emoji":"","Search results":"Risultati di ricerca","sec. ago":"","seconds ago":"","Select a tag":"Seleziona un'etichetta","Select provider":"",Settings:"Impostazioni","Settings navigation":"Navigazione delle impostazioni","Show password":"Mostra la password","Smart Picker":"","Smileys & Emotion":"Faccine ed emozioni","Start slideshow":"Avvia presentazione","Start typing to search":"",Submit:"Invia",Symbols:"Simboli","Travel & Places":"Viaggi e luoghi","Type to search time zone":"Digita per cercare un fuso orario","Unable to search the group":"Impossibile cercare il gruppo","Undo changes":"Cancella i cambiamenti",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrivi un messaggio, "@" per menzionare qualcuno, ":" per il completamento automatico delle emoji ...'}},{locale:"ja",translations:{"{tag} (invisible)":"{タグ} (不可視)","{tag} (restricted)":"{タグ} (制限付)","a few seconds ago":"",Actions:"操作",'Actions for item with name "{name}"':"",Activities:"アクティビティ","Animals & Nature":"動物と自然","Any link":"","Anything shared with the same group of people will show up here":"同じグループで共有しているものは、全てここに表示されます","Avatar of {displayName}":"{displayName} のアバター","Avatar of {displayName}, {status}":"{displayName}, {status} のアバター",Back:"","Back to provider selection":"","Cancel changes":"変更をキャンセル","Change name":"",Choose:"選択","Clear search":"","Clear text":"テキストをクリア",Close:"閉じる","Close modal":"モーダルを閉じる","Close navigation":"ナビゲーションを閉じる","Close sidebar":"サイドバーを閉じる","Close Smart Picker":"","Collapse menu":"","Confirm changes":"変更を承認",Custom:"カスタム","Edit item":"編集","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"お気に入り",Flags:"国旗","Food & Drink":"食べ物と飲み物","Frequently used":"よく使うもの",Global:"全体","Go back to the list":"リストに戻る","Hide password":"パスワードを非表示",'Load more "{options}""':"","Message limit of {count} characters reached":"{count} 文字のメッセージ上限に達しています","More items …":"他のアイテム","More options":"",Next:"次","No emoji found":"絵文字が見つかりません","No link provider found":"","No results":"なし",Objects:"物","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"ナビゲーションを開く","Open settings menu":"","Password is secure":"パスワードは保護されています","Pause slideshow":"スライドショーを一時停止","People & Body":"様々な人と体の部位","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"絵文字を選択","Please select a time zone:":"タイムゾーンを選んで下さい:",Previous:"前","Provider icon":"","Raw link {options}":"","Related resources":"関連リソース",Search:"検索","Search emoji":"","Search results":"検索結果","sec. ago":"","seconds ago":"","Select a tag":"タグを選択","Select provider":"",Settings:"設定","Settings navigation":"ナビゲーション設定","Show password":"パスワードを表示","Smart Picker":"","Smileys & Emotion":"感情表現","Start slideshow":"スライドショーを開始","Start typing to search":"",Submit:"提出",Symbols:"記号","Travel & Places":"旅行と場所","Type to search time zone":"タイムゾーン検索のため入力してください","Unable to search the group":"グループを検索できません","Undo changes":"変更を取り消し",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'メッセージを記入、"@"でメンション、":"で絵文字の自動補完 ...'}},{locale:"ka",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ka_GE",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kab",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"km",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"kn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ko",translations:{"{tag} (invisible)":"{tag}(숨김)","{tag} (restricted)":"{tag}(제한)","a few seconds ago":"방금 전",Actions:"",'Actions for item with name "{name}"':"",Activities:"활동","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"la",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lb",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lo",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lt_LT",translations:{"{tag} (invisible)":"{tag} (nematoma)","{tag} (restricted)":"{tag} (apribota)","a few seconds ago":"",Actions:"Veiksmai",'Actions for item with name "{name}"':"",Activities:"Veiklos","Animals & Nature":"Gyvūnai ir gamta","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Pasirinkti","Clear search":"","Clear text":"",Close:"Užverti","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"Tinkinti","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vėliavos","Food & Drink":"Maistas ir gėrimai","Frequently used":"Dažniausiai naudoti",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Pasiekta {count} simbolių žinutės riba","More items …":"","More options":"",Next:"Kitas","No emoji found":"Nerasta jaustukų","No link provider found":"","No results":"Nėra rezultatų",Objects:"Objektai","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pristabdyti skaidrių rodymą","People & Body":"Žmonės ir kūnas","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Pasirinkti jaustuką","Please select a time zone:":"",Previous:"Ankstesnis","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Ieškoti","Search emoji":"","Search results":"Paieškos rezultatai","sec. ago":"","seconds ago":"","Select a tag":"Pasirinkti žymę","Select provider":"",Settings:"Nustatymai","Settings navigation":"Naršymas nustatymuose","Show password":"","Smart Picker":"","Smileys & Emotion":"Šypsenos ir emocijos","Start slideshow":"Pradėti skaidrių rodymą","Start typing to search":"",Submit:"Pateikti",Symbols:"Simboliai","Travel & Places":"Kelionės ir vietos","Type to search time zone":"","Unable to search the group":"Nepavyko atlikti paiešką grupėje","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"lv",translations:{"{tag} (invisible)":"{tag} (neredzams)","{tag} (restricted)":"{tag} (ierobežots)","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Izvēlēties","Clear search":"","Clear text":"",Close:"Aizvērt","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Nākamais","No emoji found":"","No link provider found":"","No results":"Nav rezultātu",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzēt slaidrādi","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Iepriekšējais","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Izvēlēties birku","Select provider":"",Settings:"Iestatījumi","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Sākt slaidrādi","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mk",translations:{"{tag} (invisible)":"{tag} (невидливо)","{tag} (restricted)":"{tag} (ограничено)","a few seconds ago":"",Actions:"Акции",'Actions for item with name "{name}"':"",Activities:"Активности","Animals & Nature":"Животни & Природа","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар на {displayName}","Avatar of {displayName}, {status}":"Аватар на {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Откажи ги промените","Change name":"",Choose:"Избери","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Затвори модал","Close navigation":"Затвори навигација","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Потврди ги промените",Custom:"Прилагодени","Edit item":"Уреди","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Фаворити",Flags:"Знамиња","Food & Drink":"Храна & Пијалоци","Frequently used":"Најчесто користени",Global:"Глобално","Go back to the list":"Врати се на листата","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Ограничувањето на должината на пораката од {count} карактери е надминато","More items …":"","More options":"",Next:"Следно","No emoji found":"Не се пронајдени емотикони","No link provider found":"","No results":"Нема резултати",Objects:"Објекти","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Отвори навигација","Open settings menu":"","Password is secure":"","Pause slideshow":"Пузирај слајдшоу","People & Body":"Луѓе & Тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Избери емотикон","Please select a time zone:":"Изберете временска зона:",Previous:"Предходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Барај","Search emoji":"","Search results":"Резултати од барувањето","sec. ago":"","seconds ago":"","Select a tag":"Избери ознака","Select provider":"",Settings:"Параметри","Settings navigation":"Параметри за навигација","Show password":"","Smart Picker":"","Smileys & Emotion":"Смешковци & Емотикони","Start slideshow":"Стартувај слајдшоу","Start typing to search":"",Submit:"Испрати",Symbols:"Симболи","Travel & Places":"Патувања & Места","Type to search time zone":"Напишете за да пребарате временска зона","Unable to search the group":"Неможе да се принајде групата","Undo changes":"Врати ги промените",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mn",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"mr",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ms_MY",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"my",translations:{"{tag} (invisible)":"{tag} (ကွယ်ဝှက်ထား)","{tag} (restricted)":"{tag} (ကန့်သတ်)","a few seconds ago":"",Actions:"လုပ်ဆောင်ချက်များ",'Actions for item with name "{name}"':"",Activities:"ပြုလုပ်ဆောင်တာများ","Animals & Nature":"တိရစ္ဆာန်များနှင့် သဘာဝ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"{displayName} ၏ ကိုယ်ပွား","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်","Change name":"",Choose:"ရွေးချယ်ရန်","Clear search":"","Clear text":"",Close:"ပိတ်ရန်","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"ပြောင်းလဲမှုများ အတည်ပြုရန်",Custom:"အလိုကျချိန်ညှိမှု","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"အလံများ","Food & Drink":"အစားအသောက်","Frequently used":"မကြာခဏအသုံးပြုသော",Global:"ကမ္ဘာလုံးဆိုင်ရာ","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ","More items …":"","More options":"",Next:"နောက်သို့ဆက်ရန်","No emoji found":"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ","No link provider found":"","No results":"ရလဒ်မရှိပါ",Objects:"အရာဝတ္ထုများ","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"စလိုက်ရှိုး ခေတ္တရပ်ရန်","People & Body":"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"အီမိုဂျီရွေးရန်","Please select a time zone:":"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ",Previous:"ယခင်","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"ရှာဖွေရန်","Search emoji":"","Search results":"ရှာဖွေမှု ရလဒ်များ","sec. ago":"","seconds ago":"","Select a tag":"tag ရွေးချယ်ရန်","Select provider":"",Settings:"ချိန်ညှိချက်များ","Settings navigation":"ချိန်ညှိချက်အညွှန်း","Show password":"","Smart Picker":"","Smileys & Emotion":"စမိုင်လီများနှင့် အီမိုရှင်း","Start slideshow":"စလိုက်ရှိုးအား စတင်ရန်","Start typing to search":"",Submit:"တင်သွင်းရန်",Symbols:"သင်္ကေတများ","Travel & Places":"ခရီးသွားလာခြင်းနှင့် နေရာများ","Type to search time zone":"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ","Unable to search the group":"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nb",translations:{"{tag} (invisible)":"{tag} (usynlig)","{tag} (restricted)":"{tag} (beskyttet)","a few seconds ago":"",Actions:"Handlinger",'Actions for item with name "{name}"':"",Activities:"Aktiviteter","Animals & Nature":"Dyr og natur","Any link":"","Anything shared with the same group of people will show up here":"Alt som er delt med den samme gruppen vil vises her","Avatar of {displayName}":"Avataren til {displayName}","Avatar of {displayName}, {status}":"{displayName}'s avatar, {status}",Back:"","Back to provider selection":"","Cancel changes":"Avbryt endringer","Change name":"",Choose:"Velg","Clear search":"","Clear text":"Fjern tekst",Close:"Lukk","Close modal":"Lukk modal","Close navigation":"Lukk navigasjon","Close sidebar":"Lukk sidepanel","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Bekreft endringer",Custom:"Tilpasset","Edit item":"Rediger","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favoritt",Flags:"Flagg","Food & Drink":"Mat og drikke","Frequently used":"Ofte brukt",Global:"Global","Go back to the list":"Gå tilbake til listen","Hide password":"Skjul passord",'Load more "{options}""':"","Message limit of {count} characters reached":"Karakter begrensing {count} nådd i melding","More items …":"Flere gjenstander...","More options":"",Next:"Neste","No emoji found":"Fant ingen emoji","No link provider found":"","No results":"Ingen resultater",Objects:"Objekter","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Åpne navigasjon","Open settings menu":"","Password is secure":"Passordet er sikkert","Pause slideshow":"Pause lysbildefremvisning","People & Body":"Mennesker og kropp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Velg en emoji","Please select a time zone:":"Vennligst velg tidssone",Previous:"Forrige","Provider icon":"","Raw link {options}":"","Related resources":"Relaterte ressurser",Search:"Søk","Search emoji":"","Search results":"Søkeresultater","sec. ago":"","seconds ago":"","Select a tag":"Velg en merkelapp","Select provider":"",Settings:"Innstillinger","Settings navigation":"Navigasjonsinstillinger","Show password":"Vis passord","Smart Picker":"","Smileys & Emotion":"Smilefjes og følelser","Start slideshow":"Start lysbildefremvisning","Start typing to search":"",Submit:"Send",Symbols:"Symboler","Travel & Places":"Reise og steder","Type to search time zone":"Tast for å søke etter tidssone","Unable to search the group":"Kunne ikke søke i gruppen","Undo changes":"Tilbakestill endringer",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv melding, bruk "@" for å nevne noen, bruk ":" for autofullføring av emoji...'}},{locale:"ne",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nl",translations:{"{tag} (invisible)":"{tag} (onzichtbaar)","{tag} (restricted)":"{tag} (beperkt)","a few seconds ago":"",Actions:"Acties",'Actions for item with name "{name}"':"",Activities:"Activiteiten","Animals & Nature":"Dieren & Natuur","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar van {displayName}","Avatar of {displayName}, {status}":"Avatar van {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Wijzigingen annuleren","Change name":"",Choose:"Kies","Clear search":"","Clear text":"",Close:"Sluiten","Close modal":"","Close navigation":"Navigatie sluiten","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Wijzigingen bevestigen",Custom:"Aangepast","Edit item":"Item bewerken","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlaggen","Food & Drink":"Eten & Drinken","Frequently used":"Vaak gebruikt",Global:"Globaal","Go back to the list":"Ga terug naar de lijst","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Berichtlimiet van {count} karakters bereikt","More items …":"","More options":"",Next:"Volgende","No emoji found":"Geen emoji gevonden","No link provider found":"","No results":"Geen resultaten",Objects:"Objecten","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Navigatie openen","Open settings menu":"","Password is secure":"","Pause slideshow":"Pauzeer diavoorstelling","People & Body":"Mensen & Lichaam","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Kies een emoji","Please select a time zone:":"Selecteer een tijdzone:",Previous:"Vorige","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Zoeken","Search emoji":"","Search results":"Zoekresultaten","sec. ago":"","seconds ago":"","Select a tag":"Selecteer een label","Select provider":"",Settings:"Instellingen","Settings navigation":"Instellingen navigatie","Show password":"","Smart Picker":"","Smileys & Emotion":"Smileys & Emotie","Start slideshow":"Start diavoorstelling","Start typing to search":"",Submit:"Verwerken",Symbols:"Symbolen","Travel & Places":"Reizen & Plaatsen","Type to search time zone":"Type om de tijdzone te zoeken","Unable to search the group":"Kan niet in de groep zoeken","Undo changes":"Wijzigingen ongedaan maken",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"nn_NO",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"oc",translations:{"{tag} (invisible)":"{tag} (invisible)","{tag} (restricted)":"{tag} (limit)","a few seconds ago":"",Actions:"Accions",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"Causir","Clear search":"","Clear text":"",Close:"Tampar","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"Seguent","No emoji found":"","No link provider found":"","No results":"Cap de resultat",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"Metre en pausa lo diaporama","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"Precedent","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"Seleccionar una etiqueta","Select provider":"",Settings:"Paramètres","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"Lançar lo diaporama","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pl",translations:{"{tag} (invisible)":"{tag} (niewidoczna)","{tag} (restricted)":"{tag} (ograniczona)","a few seconds ago":"",Actions:"Działania",'Actions for item with name "{name}"':"",Activities:"Aktywność","Animals & Nature":"Zwierzęta i natura","Any link":"","Anything shared with the same group of people will show up here":"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób","Avatar of {displayName}":"Awatar {displayName}","Avatar of {displayName}, {status}":"Awatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anuluj zmiany","Change name":"",Choose:"Wybierz","Clear search":"","Clear text":"Wyczyść tekst",Close:"Zamknij","Close modal":"Zamknij modal","Close navigation":"Zamknij nawigację","Close sidebar":"Zamknij pasek boczny","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potwierdź zmiany",Custom:"Zwyczajne","Edit item":"Edytuj element","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Ulubiony",Flags:"Flagi","Food & Drink":"Jedzenie i picie","Frequently used":"Często używane",Global:"Globalnie","Go back to the list":"Powrót do listy","Hide password":"Ukryj hasło",'Load more "{options}""':"","Message limit of {count} characters reached":"Przekroczono limit wiadomości wynoszący {count} znaków","More items …":"Więcej pozycji…","More options":"",Next:"Następny","No emoji found":"Nie znaleziono emoji","No link provider found":"","No results":"Brak wyników",Objects:"Obiekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otwórz nawigację","Open settings menu":"","Password is secure":"Hasło jest bezpieczne","Pause slideshow":"Wstrzymaj pokaz slajdów","People & Body":"Ludzie i ciało","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Wybierz emoji","Please select a time zone:":"Wybierz strefę czasową:",Previous:"Poprzedni","Provider icon":"","Raw link {options}":"","Related resources":"Powiązane zasoby",Search:"Szukaj","Search emoji":"","Search results":"Wyniki wyszukiwania","sec. ago":"","seconds ago":"","Select a tag":"Wybierz etykietę","Select provider":"",Settings:"Ustawienia","Settings navigation":"Ustawienia nawigacji","Show password":"Pokaż hasło","Smart Picker":"","Smileys & Emotion":"Buźki i emotikony","Start slideshow":"Rozpocznij pokaz slajdów","Start typing to search":"",Submit:"Wyślij",Symbols:"Symbole","Travel & Places":"Podróże i miejsca","Type to search time zone":"Wpisz, aby wyszukać strefę czasową","Unable to search the group":"Nie można przeszukać grupy","Undo changes":"Cofnij zmiany",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Napisz wiadomość, "@" aby o kimś wspomnieć, ":" dla autouzupełniania emoji…'}},{locale:"ps",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"pt_BR",translations:{"{tag} (invisible)":"{tag} (invisível)","{tag} (restricted)":"{tag} (restrito) ","a few seconds ago":"",Actions:"Ações",'Actions for item with name "{name}"':"",Activities:"Atividades","Animals & Nature":"Animais & Natureza","Any link":"","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Cancelar alterações","Change name":"",Choose:"Escolher","Clear search":"","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida & Bebida","Frequently used":"Mais usados",Global:"Global","Go back to the list":"Volte para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':"","Message limit of {count} characters reached":"Limite de mensagem de {count} caracteres atingido","More items …":"Mais itens …","More options":"",Next:"Próximo","No emoji found":"Nenhum emoji encontrado","No link provider found":"","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Abrir navegação","Open settings menu":"","Password is secure":"A senha é segura","Pause slideshow":"Pausar apresentação de slides","People & Body":"Pessoas & Corpo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Selecione um fuso horário: ",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"","Search results":"Resultados da pesquisa","sec. ago":"","seconds ago":"","Select a tag":"Selecionar uma tag","Select provider":"",Settings:"Configurações","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"","Smileys & Emotion":"Smiles & Emoções","Start slideshow":"Iniciar apresentação de slides","Start typing to search":"",Submit:"Enviar",Symbols:"Símbolo","Travel & Places":"Viagem & Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não foi possível pesquisar o grupo","Undo changes":"Desfazer modificações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva mensagens, use "@" para mencionar algum, use ":" for autocompletar emoji …'}},{locale:"pt_PT",translations:{"{tag} (invisible)":"{tag} (invisivel)","{tag} (restricted)":"{tag} (restrito)","a few seconds ago":"alguns segundos atrás",Actions:"Ações",'Actions for item with name "{name}"':'Ações para objeto com o nome "[name]"',Activities:"Atividades","Animals & Nature":"Animais e Natureza","Any link":"Qualquer link","Anything shared with the same group of people will show up here":"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui","Avatar of {displayName}":"Avatar de {displayName}","Avatar of {displayName}, {status}":"Avatar de {displayName}, {status}",Back:"Voltar atrás","Back to provider selection":"Voltar à seleção de fornecedor","Cancel changes":"Cancelar alterações","Change name":"Alterar nome",Choose:"Escolher","Clear search":"Limpar a pesquisa","Clear text":"Limpar texto",Close:"Fechar","Close modal":"Fechar modal","Close navigation":"Fechar navegação","Close sidebar":"Fechar barra lateral","Close Smart Picker":'Fechar "Smart Picker"',"Collapse menu":"Comprimir menu","Confirm changes":"Confirmar alterações",Custom:"Personalizado","Edit item":"Editar item","Enter link":"Introduzir link","Error getting related resources. Please contact your system administrator if you have any questions.":"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.","External documentation for {name}":"Documentação externa para {name}",Favorite:"Favorito",Flags:"Bandeiras","Food & Drink":"Comida e Bebida","Frequently used":"Mais utilizados",Global:"Global","Go back to the list":"Voltar para a lista","Hide password":"Ocultar a senha",'Load more "{options}""':'Obter mais "{options}""',"Message limit of {count} characters reached":"Atingido o limite de {count} carateres da mensagem.","More items …":"Mais itens …","More options":"Mais opções",Next:"Seguinte","No emoji found":"Nenhum emoji encontrado","No link provider found":"Nenhum fornecedor de link encontrado","No results":"Sem resultados",Objects:"Objetos","Open contact menu":"Abrir o menu de contato",'Open link to "{resourceName}"':'Abrir link para "{resourceName}"',"Open menu":"Abrir menu","Open navigation":"Abrir navegação","Open settings menu":"Abrir menu de configurações","Password is secure":"A senha é segura","Pause slideshow":"Pausar diaporama","People & Body":"Pessoas e Corpo","Pick a date":"Escolha uma data","Pick a date and a time":"Escolha uma data e um horário","Pick a month":"Escolha um mês","Pick a time":"Escolha um horário","Pick a week":"Escolha uma semana","Pick a year":"Escolha um ano","Pick an emoji":"Escolha um emoji","Please select a time zone:":"Por favor, selecione um fuso horário: ",Previous:"Anterior","Provider icon":"Icon do fornecedor","Raw link {options}":"Link inicial {options}","Related resources":"Recursos relacionados",Search:"Pesquisar","Search emoji":"Pesquisar emoji","Search results":"Resultados da pesquisa","sec. ago":"seg. atrás","seconds ago":"segundos atrás","Select a tag":"Selecionar uma etiqueta","Select provider":"Escolha de fornecedor",Settings:"Definições","Settings navigation":"Navegação de configurações","Show password":"Mostrar senha","Smart Picker":"Smart Picker","Smileys & Emotion":"Sorrisos e Emoções","Start slideshow":"Iniciar diaporama","Start typing to search":"Comece a digitar para pesquisar",Submit:"Submeter",Symbols:"Símbolos","Travel & Places":"Viagem e Lugares","Type to search time zone":"Digite para pesquisar o fuso horário ","Unable to search the group":"Não é possível pesquisar o grupo","Undo changes":"Anular alterações",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Escreva a mensagem, use "@" para mencionar alguém, use ":" para obter um emoji …'}},{locale:"ro",translations:{"{tag} (invisible)":"{tag} (invizibil)","{tag} (restricted)":"{tag} (restricționat)","a few seconds ago":"",Actions:"Acțiuni",'Actions for item with name "{name}"':"",Activities:"Activități","Animals & Nature":"Animale și natură","Any link":"","Anything shared with the same group of people will show up here":"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici","Avatar of {displayName}":"Avatarul lui {displayName}","Avatar of {displayName}, {status}":"Avatarul lui {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Anulează modificările","Change name":"",Choose:"Alegeți","Clear search":"","Clear text":"Șterge textul",Close:"Închideți","Close modal":"Închideți modulul","Close navigation":"Închideți navigarea","Close sidebar":"Închide bara laterală","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Confirmați modificările",Custom:"Personalizat","Edit item":"Editați elementul","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Favorit",Flags:"Marcaje","Food & Drink":"Alimente și băuturi","Frequently used":"Utilizate frecvent",Global:"Global","Go back to the list":"Întoarceți-vă la listă","Hide password":"Ascunde parola",'Load more "{options}""':"","Message limit of {count} characters reached":"Limita mesajului de {count} caractere a fost atinsă","More items …":"Mai multe articole ...","More options":"",Next:"Următorul","No emoji found":"Nu s-a găsit niciun emoji","No link provider found":"","No results":"Nu există rezultate",Objects:"Obiecte","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Deschideți navigația","Open settings menu":"","Password is secure":"Parola este sigură","Pause slideshow":"Pauză prezentare de diapozitive","People & Body":"Oameni și corp","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Alege un emoji","Please select a time zone:":"Vă rugăm să selectați un fus orar:",Previous:"Anterior","Provider icon":"","Raw link {options}":"","Related resources":"Resurse legate",Search:"Căutare","Search emoji":"","Search results":"Rezultatele căutării","sec. ago":"","seconds ago":"","Select a tag":"Selectați o etichetă","Select provider":"",Settings:"Setări","Settings navigation":"Navigare setări","Show password":"Arată parola","Smart Picker":"","Smileys & Emotion":"Zâmbete și emoții","Start slideshow":"Începeți prezentarea de diapozitive","Start typing to search":"",Submit:"Trimiteți",Symbols:"Simboluri","Travel & Places":"Călătorii și locuri","Type to search time zone":"Tastați pentru a căuta fusul orar","Unable to search the group":"Imposibilitatea de a căuta în grup","Undo changes":"Anularea modificărilor",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Scrie un mesaj, folosește "@" pentru a menționa pe cineva, folosește ":" pentru autocompletarea cu emoji ...'}},{locale:"ru",translations:{"{tag} (invisible)":"{tag} (невидимое)","{tag} (restricted)":"{tag} (ограниченное)","a few seconds ago":"",Actions:"Действия ",'Actions for item with name "{name}"':"",Activities:"События","Animals & Nature":"Животные и природа ","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Фотография {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Отменить изменения","Change name":"",Choose:"Выберите","Clear search":"","Clear text":"",Close:"Закрыть","Close modal":"Закрыть модальное окно","Close navigation":"Закрыть навигацию","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Подтвердить изменения",Custom:"Пользовательское","Edit item":"Изменить элемент","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Флаги","Food & Drink":"Еда, напиток","Frequently used":"Часто используемый",Global:"Глобальный","Go back to the list":"Вернуться к списку","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Достигнуто ограничение на количество символов в {count}","More items …":"","More options":"",Next:"Следующее","No emoji found":"Эмодзи не найдено","No link provider found":"","No results":"Результаты отсуствуют",Objects:"Объекты","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Открыть навигацию","Open settings menu":"","Password is secure":"","Pause slideshow":"Приостановить показ слйдов","People & Body":"Люди и тело","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Выберите эмодзи","Please select a time zone:":"Пожалуйста, выберите часовой пояс:",Previous:"Предыдущее","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Поиск","Search emoji":"","Search results":"Результаты поиска","sec. ago":"","seconds ago":"","Select a tag":"Выберите метку","Select provider":"",Settings:"Параметры","Settings navigation":"Навигация по настройкам","Show password":"","Smart Picker":"","Smileys & Emotion":"Смайлики и эмоции","Start slideshow":"Начать показ слайдов","Start typing to search":"",Submit:"Утвердить",Symbols:"Символы","Travel & Places":"Путешествия и места","Type to search time zone":"Введите для поиска часового пояса","Unable to search the group":"Невозможно найти группу","Undo changes":"Отменить изменения",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sc",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"si",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sk",translations:{"{tag} (invisible)":"{tag} (neviditeľný)","{tag} (restricted)":"{tag} (obmedzený)","a few seconds ago":"",Actions:"Akcie",'Actions for item with name "{name}"':"",Activities:"Aktivity","Animals & Nature":"Zvieratá a príroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar {displayName}","Avatar of {displayName}, {status}":"Avatar {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Zrušiť zmeny","Change name":"",Choose:"Vybrať","Clear search":"","Clear text":"",Close:"Zatvoriť","Close modal":"","Close navigation":"Zavrieť navigáciu","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdiť zmeny",Custom:"Zvyk","Edit item":"Upraviť položku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"Vlajky","Food & Drink":"Jedlo a nápoje","Frequently used":"Často používané",Global:"Globálne","Go back to the list":"Naspäť na zoznam","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Limit správy na {count} znakov dosiahnutý","More items …":"","More options":"",Next:"Ďalší","No emoji found":"Nenašli sa žiadne emodži","No link provider found":"","No results":"Žiadne výsledky",Objects:"Objekty","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvoriť navigáciu","Open settings menu":"","Password is secure":"","Pause slideshow":"Pozastaviť prezentáciu","People & Body":"Ľudia a telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Vyberte si emodži","Please select a time zone:":"Prosím vyberte časovú zónu:",Previous:"Predchádzajúci","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Hľadať","Search emoji":"","Search results":"Výsledky vyhľadávania","sec. ago":"","seconds ago":"","Select a tag":"Vybrať štítok","Select provider":"",Settings:"Nastavenia","Settings navigation":"Navigácia v nastaveniach","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajlíky a emócie","Start slideshow":"Začať prezentáciu","Start typing to search":"",Submit:"Odoslať",Symbols:"Symboly","Travel & Places":"Cestovanie a miesta","Type to search time zone":"Začníte písať pre vyhľadávanie časovej zóny","Unable to search the group":"Skupinu sa nepodarilo nájsť","Undo changes":"Vrátiť zmeny",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sl",translations:{"{tag} (invisible)":"{tag} (nevidno)","{tag} (restricted)":"{tag} (omejeno)","a few seconds ago":"",Actions:"Dejanja",'Actions for item with name "{name}"':"",Activities:"Dejavnosti","Animals & Nature":"Živali in Narava","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Podoba {displayName}","Avatar of {displayName}, {status}":"Prikazna slika {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Prekliči spremembe","Change name":"",Choose:"Izbor","Clear search":"","Clear text":"Počisti besedilo",Close:"Zapri","Close modal":"Zapri pojavno okno","Close navigation":"Zapri krmarjenje","Close sidebar":"Zapri stransko vrstico","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potrdi spremembe",Custom:"Po meri","Edit item":"Uredi predmet","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Priljubljeno",Flags:"Zastavice","Food & Drink":"Hrana in Pijača","Frequently used":"Pogostost uporabe",Global:"Splošno","Go back to the list":"Vrni se na seznam","Hide password":"Skrij geslo",'Load more "{options}""':"","Message limit of {count} characters reached":"Dosežena omejitev {count} znakov na sporočilo.","More items …":"Več predmetov ...","More options":"",Next:"Naslednji","No emoji found":"Ni najdenih izraznih ikon","No link provider found":"","No results":"Ni zadetkov",Objects:"Predmeti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Odpri krmarjenje","Open settings menu":"","Password is secure":"Geslo je varno","Pause slideshow":"Ustavi predstavitev","People & Body":"Ljudje in Telo","Pick a date":"Izbor datuma","Pick a date and a time":"Izbor datuma in časa","Pick a month":"Izbor meseca","Pick a time":"Izbor časa","Pick a week":"Izbor tedna","Pick a year":"Izbor leta","Pick an emoji":"Izbor izrazne ikone","Please select a time zone:":"Izbor časovnega pasu:",Previous:"Predhodni","Provider icon":"","Raw link {options}":"","Related resources":"Povezani viri",Search:"Iskanje","Search emoji":"","Search results":"Zadetki iskanja","sec. ago":"","seconds ago":"","Select a tag":"Izbor oznake","Select provider":"",Settings:"Nastavitve","Settings navigation":"Krmarjenje nastavitev","Show password":"Pokaži geslo","Smart Picker":"","Smileys & Emotion":"Izrazne ikone","Start slideshow":"Začni predstavitev","Start typing to search":"",Submit:"Pošlji",Symbols:"Simboli","Travel & Places":"Potovanja in Kraji","Type to search time zone":"Vpišite niz za iskanje časovnega pasu","Unable to search the group":"Ni mogoče iskati po skupini","Undo changes":"Razveljavi spremembe",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sq",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr",translations:{"{tag} (invisible)":"{tag} (nevidljivo)","{tag} (restricted)":"{tag} (ograničeno)","a few seconds ago":"",Actions:"Radnje",'Actions for item with name "{name}"':"",Activities:"Aktivnosti","Animals & Nature":"Životinje i Priroda","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"Avatar za {displayName}","Avatar of {displayName}, {status}":"Avatar za {displayName}, {status}",Back:"","Back to provider selection":"","Cancel changes":"Otkaži izmene","Change name":"",Choose:"Изаберите","Clear search":"","Clear text":"",Close:"Затвори","Close modal":"Zatvori modal","Close navigation":"Zatvori navigaciju","Close sidebar":"Zatvori bočnu traku","Close Smart Picker":"","Collapse menu":"","Confirm changes":"Potvrdite promene",Custom:"Po meri","Edit item":"Uredi stavku","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"Omiljeni",Flags:"Zastave","Food & Drink":"Hrana i Piće","Frequently used":"Često korišćeno",Global:"Globalno","Go back to the list":"Natrag na listu","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"Dostignuto je ograničenje za poruke od {count} znakova","More items …":"","More options":"",Next:"Следеће","No emoji found":"Nije pronađen nijedan emodži","No link provider found":"","No results":"Нема резултата",Objects:"Objekti","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"Otvori navigaciju","Open settings menu":"","Password is secure":"","Pause slideshow":"Паузирај слајд шоу","People & Body":"Ljudi i Telo","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"Izaberi emodži","Please select a time zone:":"Molimo izaberite vremensku zonu:",Previous:"Претходно","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"Pretraži","Search emoji":"","Search results":"Rezultati pretrage","sec. ago":"","seconds ago":"","Select a tag":"Изаберите ознаку","Select provider":"",Settings:"Поставке","Settings navigation":"Navigacija u podešavanjima","Show password":"","Smart Picker":"","Smileys & Emotion":"Smajli i Emocije","Start slideshow":"Покрени слајд шоу","Start typing to search":"",Submit:"Prihvati",Symbols:"Simboli","Travel & Places":"Putovanja i Mesta","Type to search time zone":"Ukucaj da pretražiš vremenske zone","Unable to search the group":"Nije moguće pretražiti grupu","Undo changes":"Poništi promene",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sr@latin",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"sv",translations:{"{tag} (invisible)":"{tag} (osynlig)","{tag} (restricted)":"{tag} (begränsad)","a few seconds ago":"några sekunder sedan",Actions:"Åtgärder",'Actions for item with name "{name}"':'Åtgärder för objekt med namn "{name}"',Activities:"Aktiviteter","Animals & Nature":"Djur & Natur","Any link":"Vilken länk som helst","Anything shared with the same group of people will show up here":"Något som delats med samma grupp av personer kommer att visas här","Avatar of {displayName}":"{displayName}s avatar","Avatar of {displayName}, {status}":"{displayName}s avatar, {status}",Back:"Tillbaka","Back to provider selection":"Tillbaka till leverantörsval","Cancel changes":"Avbryt ändringar","Change name":"Ändra namn",Choose:"Välj","Clear search":"Rensa sökning","Clear text":"Ta bort text",Close:"Stäng","Close modal":"Stäng modal","Close navigation":"Stäng navigering","Close sidebar":"Stäng sidopanel","Close Smart Picker":"Stäng Smart Picker","Collapse menu":"Komprimera menyn","Confirm changes":"Bekräfta ändringar",Custom:"Anpassad","Edit item":"Ändra","Enter link":"Ange länk","Error getting related resources. Please contact your system administrator if you have any questions.":"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.","External documentation for {name}":"Extern dokumentation för {name}",Favorite:"Favorit",Flags:"Flaggor","Food & Drink":"Mat & Dryck","Frequently used":"Används ofta",Global:"Global","Go back to the list":"Gå tillbaka till listan","Hide password":"Göm lössenordet",'Load more "{options}""':'Ladda fler "{options}""',"Message limit of {count} characters reached":"Meddelandegräns {count} tecken används","More items …":"Fler objekt","More options":"Fler alternativ",Next:"Nästa","No emoji found":"Hittade inga emojis","No link provider found":"Ingen länkleverantör hittades","No results":"Inga resultat",Objects:"Objekt","Open contact menu":"Öppna kontaktmenyn",'Open link to "{resourceName}"':'Öppna länken till "{resourceName}"',"Open menu":"Öppna menyn","Open navigation":"Öppna navigering","Open settings menu":"Öppna inställningsmenyn","Password is secure":"Lössenordet är säkert","Pause slideshow":"Pausa bildspelet","People & Body":"Kropp & Själ","Pick a date":"Välj datum","Pick a date and a time":"Välj datum och tid","Pick a month":"Välj månad","Pick a time":"Välj tid","Pick a week":"Välj vecka","Pick a year":"Välj år","Pick an emoji":"Välj en emoji","Please select a time zone:":"Välj tidszon:",Previous:"Föregående","Provider icon":"Leverantörsikon","Raw link {options}":"Oformaterad länk {options}","Related resources":"Relaterade resurser",Search:"Sök","Search emoji":"Sök emoji","Search results":"Sökresultat","sec. ago":"sek. sedan","seconds ago":"sekunder sedan","Select a tag":"Välj en tag","Select provider":"Välj leverantör",Settings:"Inställningar","Settings navigation":"Inställningsmeny","Show password":"Visa lössenordet","Smart Picker":"Smart Picker","Smileys & Emotion":"Selfies & Känslor","Start slideshow":"Starta bildspelet","Start typing to search":"Börja skriva för att söka",Submit:"Skicka",Symbols:"Symboler","Travel & Places":"Resor & Sevärdigheter","Type to search time zone":"Skriv för att välja tidszon","Unable to search the group":"Kunde inte söka i gruppen","Undo changes":"Ångra ändringar",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Skriv meddelande, använd "@" för att nämna någon, använd ":" för automatiska emojiförslag ...'}},{locale:"sw",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"ta",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"th",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tk",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"tr",translations:{"{tag} (invisible)":"{tag} (görünmez)","{tag} (restricted)":"{tag} (kısıtlı)","a few seconds ago":"birkaç saniye önce",Actions:"İşlemler",'Actions for item with name "{name}"':"{name} adındaki öge için işlemler",Activities:"Etkinlikler","Animals & Nature":"Hayvanlar ve Doğa","Any link":"Herhangi bir bağlantı","Anything shared with the same group of people will show up here":"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir","Avatar of {displayName}":"{displayName} avatarı","Avatar of {displayName}, {status}":"{displayName}, {status} avatarı",Back:"Geri","Back to provider selection":"Sağlayıcı seçimine dön","Cancel changes":"Değişiklikleri iptal et","Change name":"Adı değiştir",Choose:"Seçin","Clear search":"Aramayı temizle","Clear text":"Metni temizle",Close:"Kapat","Close modal":"Üste açılan pencereyi kapat","Close navigation":"Gezinmeyi kapat","Close sidebar":"Yan çubuğu kapat","Close Smart Picker":"Akıllı seçimi kapat","Collapse menu":"Menüyü daralt","Confirm changes":"Değişiklikleri onayla",Custom:"Özel","Edit item":"Ögeyi düzenle","Enter link":"Bağlantıyı yazın","Error getting related resources. Please contact your system administrator if you have any questions.":"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün ","External documentation for {name}":"{name} için dış belgeler",Favorite:"Sık kullanılanlara ekle",Flags:"Bayraklar","Food & Drink":"Yeme ve içme","Frequently used":"Sık kullanılanlar",Global:"Evrensel","Go back to the list":"Listeye dön","Hide password":"Parolayı gizle",'Load more "{options}""':'Diğer "{options}"',"Message limit of {count} characters reached":"{count} karakter ileti sınırına ulaşıldı","More items …":"Diğer ögeler…","More options":"Diğer seçenekler",Next:"Sonraki","No emoji found":"Herhangi bir emoji bulunamadı","No link provider found":"Bağlantı sağlayıcısı bulunamadı","No results":"Herhangi bir sonuç bulunamadı",Objects:"Nesneler","Open contact menu":"İletişim menüsünü aç",'Open link to "{resourceName}"':"{resourceName} bağlantısını aç","Open menu":"Menüyü aç","Open navigation":"Gezinmeyi aç","Open settings menu":"Ayarlar menüsünü aç","Password is secure":"Parola güvenli","Pause slideshow":"Slayt sunumunu duraklat","People & Body":"İnsanlar ve beden","Pick a date":"Bir tarih seçin","Pick a date and a time":"Bir tarih ve saat seçin","Pick a month":"Bir ay seçin","Pick a time":"Bir saat seçin","Pick a week":"Bir hafta seçin","Pick a year":"Bir yıl seçin","Pick an emoji":"Bir emoji seçin","Please select a time zone:":"Lütfen bir saat dilimi seçin:",Previous:"Önceki","Provider icon":"Sağlayıcı simgesi","Raw link {options}":"Ham bağlantı {options}","Related resources":"İlgili kaynaklar",Search:"Arama","Search emoji":"Emoji ara","Search results":"Arama sonuçları","sec. ago":"sn. önce","seconds ago":"saniye önce","Select a tag":"Bir etiket seçin","Select provider":"Sağlayıcı seçin",Settings:"Ayarlar","Settings navigation":"Gezinme ayarları","Show password":"Parolayı görüntüle","Smart Picker":"Akıllı seçim","Smileys & Emotion":"İfadeler ve duygular","Start slideshow":"Slayt sunumunu başlat","Start typing to search":"Aramak için yazmaya başlayın",Submit:"Gönder",Symbols:"Simgeler","Travel & Places":"Gezi ve yerler","Type to search time zone":"Saat dilimi aramak için yazmaya başlayın","Unable to search the group":"Grupta arama yapılamadı","Undo changes":"Değişiklikleri geri al",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için ":" kullanın…'}},{locale:"ug",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uk",translations:{"{tag} (invisible)":"{tag} (невидимий)","{tag} (restricted)":"{tag} (обмежений)","a few seconds ago":"декілька секунд тому",Actions:"Дії",'Actions for item with name "{name}"':'Дії для об\'єкту "{name}"',Activities:"Діяльність","Animals & Nature":"Тварини та природа","Any link":"Будь-яке посилання","Anything shared with the same group of people will show up here":"Будь-що доступне для цієї же групи людей буде показано тут","Avatar of {displayName}":"Аватар {displayName}","Avatar of {displayName}, {status}":"Аватар {displayName}, {status}",Back:"Назад","Back to provider selection":"Назад до вибору постачальника","Cancel changes":"Скасувати зміни","Change name":"Змінити назву",Choose:"Виберіть","Clear search":"Очистити пошук","Clear text":"Очистити текст",Close:"Закрити","Close modal":"Закрити модаль","Close navigation":"Закрити навігацію","Close sidebar":"Закрити бічну панель","Close Smart Picker":"Закрити асистент вибору","Collapse menu":"Згорнути меню","Confirm changes":"Підтвердити зміни",Custom:"Власне","Edit item":"Редагувати елемент","Enter link":"Зазначте посилання","Error getting related resources. Please contact your system administrator if you have any questions.":"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.","External documentation for {name}":"Зовнішня документація для {name}",Favorite:"Із зірочкою",Flags:"Прапори","Food & Drink":"Їжа та напої","Frequently used":"Найчастіші",Global:"Глобальний","Go back to the list":"Повернутися до списку","Hide password":"Приховати пароль",'Load more "{options}""':'Завантажити більше "{options}"',"Message limit of {count} characters reached":"Вичерпано ліміт у {count} символів для повідомлення","More items …":"Більше об'єктів...","More options":"Більше об'єктів",Next:"Вперед","No emoji found":"Емоційки відсутні","No link provider found":"Не наведено посилання","No results":"Відсутні результати",Objects:"Об'єкти","Open contact menu":"Відкрити меню контактів",'Open link to "{resourceName}"':'Відкрити посилання на "{resourceName}"',"Open menu":"Відкрити меню","Open navigation":"Відкрити навігацію","Open settings menu":"Відкрити меню налаштувань","Password is secure":"Пароль безпечний","Pause slideshow":"Пауза у показі слайдів","People & Body":"Люди та жести","Pick a date":"Вибрати дату","Pick a date and a time":"Виберіть дату та час","Pick a month":"Виберіть місяць","Pick a time":"Виберіть час","Pick a week":"Виберіть тиждень","Pick a year":"Виберіть рік","Pick an emoji":"Виберіть емоційку","Please select a time zone:":"Виберіть часовий пояс:",Previous:"Назад","Provider icon":"Піктограма постачальника","Raw link {options}":"Пряме посилання {options}","Related resources":"Пов'язані ресурси",Search:"Пошук","Search emoji":"Шукати емоційки","Search results":"Результати пошуку","sec. ago":"с тому","seconds ago":"с тому","Select a tag":"Виберіть позначку","Select provider":"Виберіть постачальника",Settings:"Налаштування","Settings navigation":"Навігація у налаштуваннях","Show password":"Показати пароль","Smart Picker":"Асистент вибору","Smileys & Emotion":"Смайли та емоції","Start slideshow":"Почати показ слайдів","Start typing to search":"Почніть вводити для пошуку",Submit:"Надіслати",Symbols:"Символи","Travel & Places":"Поїздки та місця","Type to search time zone":"Введіть для пошуку часовий пояс","Unable to search the group":"Неможливо шукати в групі","Undo changes":"Скасувати зміни",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'Додайте "@", щоби згадати коористувача або ":" для вибору емоційки...'}},{locale:"ur_PK",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"uz",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"vi",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zh_CN",translations:{"{tag} (invisible)":"{tag} (不可见)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"行为",'Actions for item with name "{name}"':"",Activities:"活动","Animals & Nature":"动物 & 自然","Any link":"","Anything shared with the same group of people will show up here":"与同组用户分享的所有内容都会显示于此","Avatar of {displayName}":"{displayName}的头像","Avatar of {displayName}, {status}":"{displayName}的头像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"选择","Clear search":"","Clear text":"清除文本",Close:"关闭","Close modal":"关闭窗口","Close navigation":"关闭导航","Close sidebar":"关闭侧边栏","Close Smart Picker":"","Collapse menu":"","Confirm changes":"确认更改",Custom:"自定义","Edit item":"编辑项目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜爱",Flags:"旗帜","Food & Drink":"食物 & 饮品","Frequently used":"经常使用",Global:"全局","Go back to the list":"返回至列表","Hide password":"隐藏密码",'Load more "{options}""':"","Message limit of {count} characters reached":"已达到 {count} 个字符的消息限制","More items …":"更多项目…","More options":"",Next:"下一个","No emoji found":"表情未找到","No link provider found":"","No results":"无结果",Objects:"物体","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"开启导航","Open settings menu":"","Password is secure":"密码安全","Pause slideshow":"暂停幻灯片","People & Body":"人 & 身体","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"选择一个表情","Please select a time zone:":"请选择一个时区:",Previous:"上一个","Provider icon":"","Raw link {options}":"","Related resources":"相关资源",Search:"搜索","Search emoji":"","Search results":"搜索结果","sec. ago":"","seconds ago":"","Select a tag":"选择一个标签","Select provider":"",Settings:"设置","Settings navigation":"设置向导","Show password":"显示密码","Smart Picker":"","Smileys & Emotion":"笑脸 & 情感","Start slideshow":"开始幻灯片","Start typing to search":"",Submit:"提交",Symbols:"符号","Travel & Places":"旅游 & 地点","Type to search time zone":"打字以搜索时区","Unable to search the group":"无法搜索分组","Undo changes":"撤销更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'写信息,使用"@"来提及某人,使用":"进行表情符号自动完成 ...'}},{locale:"zh_HK",translations:{"{tag} (invisible)":"{tag} (隱藏)","{tag} (restricted)":"{tag} (受限)","a few seconds ago":"",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"與同一組人共享的任何內容都會顯示在此處","Avatar of {displayName}":"{displayName} 的頭像","Avatar of {displayName}, {status}":"{displayName} 的頭像,{status}",Back:"","Back to provider selection":"","Cancel changes":"取消更改","Change name":"",Choose:"選擇","Clear search":"","Clear text":"清除文本",Close:"關閉","Close modal":"關閉模態","Close navigation":"關閉導航","Close sidebar":"關閉側邊欄","Close Smart Picker":"","Collapse menu":"","Confirm changes":"確認更改",Custom:"自定義","Edit item":"編輯項目","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"喜愛",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"經常使用",Global:"全球的","Go back to the list":"返回清單","Hide password":"隱藏密碼",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"更多項目 …","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"開啟導航","Open settings menu":"","Password is secure":"密碼是安全的","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"請選擇時區:",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"相關資源",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"顯示密碼","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"提交",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"鍵入以搜索時區","Unable to search the group":"無法搜尋群組","Undo changes":"取消更改",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':'寫訊息,使用 "@" 來指代某人,使用 ":" 用於表情符號自動填充 ...'}},{locale:"zh_TW",translations:{"{tag} (invisible)":"{tag}(隱藏)","{tag} (restricted)":"{tag}(受限)","a few seconds ago":"幾秒前",Actions:"動作",'Actions for item with name "{name}"':"",Activities:"活動","Animals & Nature":"動物與自然","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"選擇","Clear search":"","Clear text":"",Close:"關閉","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"自定義","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"旗幟","Food & Drink":"食物與飲料","Frequently used":"最近使用",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"已達到訊息最多 {count} 字元限制","More items …":"","More options":"",Next:"下一個","No emoji found":"未找到表情符號","No link provider found":"","No results":"無結果",Objects:"物件","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"暫停幻燈片","People & Body":"人物","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"選擇表情符號","Please select a time zone:":"",Previous:"上一個","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"搜尋","Search emoji":"","Search results":"搜尋結果","sec. ago":"","seconds ago":"","Select a tag":"選擇標籤","Select provider":"",Settings:"設定","Settings navigation":"設定值導覽","Show password":"","Smart Picker":"","Smileys & Emotion":"表情","Start slideshow":"開始幻燈片","Start typing to search":"",Submit:"",Symbols:"標誌","Travel & Places":"旅遊與景點","Type to search time zone":"","Unable to search the group":"無法搜尋群組","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}},{locale:"zu_ZA",translations:{"{tag} (invisible)":"","{tag} (restricted)":"","a few seconds ago":"",Actions:"",'Actions for item with name "{name}"':"",Activities:"","Animals & Nature":"","Any link":"","Anything shared with the same group of people will show up here":"","Avatar of {displayName}":"","Avatar of {displayName}, {status}":"",Back:"","Back to provider selection":"","Cancel changes":"","Change name":"",Choose:"","Clear search":"","Clear text":"",Close:"","Close modal":"","Close navigation":"","Close sidebar":"","Close Smart Picker":"","Collapse menu":"","Confirm changes":"",Custom:"","Edit item":"","Enter link":"","Error getting related resources. Please contact your system administrator if you have any questions.":"","External documentation for {name}":"",Favorite:"",Flags:"","Food & Drink":"","Frequently used":"",Global:"","Go back to the list":"","Hide password":"",'Load more "{options}""':"","Message limit of {count} characters reached":"","More items …":"","More options":"",Next:"","No emoji found":"","No link provider found":"","No results":"",Objects:"","Open contact menu":"",'Open link to "{resourceName}"':"","Open menu":"","Open navigation":"","Open settings menu":"","Password is secure":"","Pause slideshow":"","People & Body":"","Pick a date":"","Pick a date and a time":"","Pick a month":"","Pick a time":"","Pick a week":"","Pick a year":"","Pick an emoji":"","Please select a time zone:":"",Previous:"","Provider icon":"","Raw link {options}":"","Related resources":"",Search:"","Search emoji":"","Search results":"","sec. ago":"","seconds ago":"","Select a tag":"","Select provider":"",Settings:"","Settings navigation":"","Show password":"","Smart Picker":"","Smileys & Emotion":"","Start slideshow":"","Start typing to search":"",Submit:"",Symbols:"","Travel & Places":"","Type to search time zone":"","Unable to search the group":"","Undo changes":"",'Write message, use "@" to mention someone, use ":" for emoji autocompletion …':""}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};a.addTranslation(e.locale,{translations:{"":t}})}));var n=a.build(),i=n.ngettext.bind(n),r=n.gettext.bind(n)},723:(e,t,o)=>{"use strict";o.d(t,{Z:()=>i});var a=o(2734),n=o.n(a);const i={before:function(){this.$slots.default&&""!==this.text.trim()||(n().util.warn("".concat(this.$options.name," cannot be empty and requires a meaningful text content"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():""}}}},9156:(e,t,o)=>{"use strict";o.d(t,{Z:()=>i});var a=o(723),n=o(6021);const i={mixins:[a.Z],props:{icon:{type:String,default:""},name:{type:String,default:""},title:{type:String,default:""},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:""},ariaHidden:{type:Boolean,default:null}},emits:["click"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit("click",e),this.closeAfterClick){var t=(0,n.Z)(this,"NcActions");t&&t.closeMenu&&t.closeMenu(!1)}}}}},6730:()=>{},1137:(e,t,o)=>{"use strict";o.d(t,{iQ:()=>a.Z}),o(6730),o(8136),o(334),o(9917);var a=o(6863)},8136:()=>{},334:(e,t,o)=>{"use strict";var a=o(2734);new(o.n(a)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit("changed",e)}},created:function(){window.addEventListener("resize",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}})},3648:(e,t,o)=>{"use strict";o.d(t,{Z:()=>n});var a=o(932);const n={methods:{n:a.n,t:a.t}}},9917:(e,t,a)=>{"use strict";a(3330),o(50337),o(95573),o(12917),a(2734);var n="(?:^|\\s)",i="(?:[^a-z]|$)";new RegExp("".concat(n,"(@[a-zA-Z0-9_.@\\-']+)(").concat(i,")"),"gi"),new RegExp("".concat(n,"(@"[a-zA-Z0-9 _.@\\-']+")(").concat(i,")"),"gi")},6863:(e,t,o)=>{"use strict";o.d(t,{Z:()=>m});var n=o(3607),i=o(768),r=o.n(i),s=o(7713),c=o(4262);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function u(){u=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};c(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=m(e[a],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=m(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===p)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),p;var n=m(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,p):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),p}},e}function d(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}const m={data:function(){return{hasStatus:!1,userStatus:{status:null,message:null,icon:null}}},methods:{fetchUserStatus:function(e){var t,o=this;return(t=u().mark((function t(){var i,l,d,m,p,h,g,v;return u().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt("return");case 2:if(i=(0,s.getCapabilities)(),Object.prototype.hasOwnProperty.call(i,"user_status")&&i.user_status.enabled){t.next=5;break}return t.abrupt("return");case 5:if((0,n.getCurrentUser)()){t.next=7;break}return t.abrupt("return");case 7:return t.prev=7,t.next=10,r().get((0,c.generateOcsUrl)("apps/user_status/api/v1/statuses/{userId}",{userId:e}));case 10:l=t.sent,d=l.data,m=d.ocs.data,p=m.status,h=m.message,g=m.icon,o.userStatus.status=p,o.userStatus.message=h||"",o.userStatus.icon=g||"",o.hasStatus=!0,t.next=24;break;case 19:if(t.prev=19,t.t0=t.catch(7),404!==t.t0.response.status||0!==(null===(v=t.t0.response.data.ocs)||void 0===v||null===(v=v.data)||void 0===v?void 0:v.length)){t.next=23;break}return t.abrupt("return");case 23:a.error(t.t0);case 24:case"end":return t.stop()}}),t,null,[[7,19]])})),function(){var e=this,o=arguments;return new Promise((function(a,n){var i=t.apply(e,o);function r(e){d(i,a,n,r,s,"next",e)}function s(e){d(i,a,n,r,s,"throw",e)}r(void 0)}))})()}}}},1336:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=[],a=0,n=e.toLowerCase().indexOf(t.toLowerCase(),a),i=0;n>-1&&i{"use strict";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,e||5)}},6021:(e,t,o)=>{"use strict";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=e.$parent;o;){if(o.$options.name===t)return o;o=o.$parent}}},1206:(e,t,o)=>{"use strict";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},4402:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/assets/action.scss","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n * @author Marco Ambrosini \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 .\n *\n */\n\n@mixin action-active {\n\tli {\n\t\t&.active {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t\tborder-radius: 6px;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n@mixin action--disabled {\n\t.action--disabled {\n\t\tpointer-events: none;\n\t\topacity: $opacity_disabled;\n\t\t&:hover, &:focus {\n\t\t\tcursor: default;\n\t\t\topacity: $opacity_disabled;\n\t\t}\n\t\t& * {\n\t\t\topacity: 1 !important;\n\t\t}\n\t}\n}\n\n\n@mixin action-item($name) {\n\t.action-#{$name} {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\twidth: 100%;\n\t\theight: auto;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tpadding-right: $icon-margin;\n\t\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\n\n\t\tcursor: pointer;\n\t\twhite-space: nowrap;\n\n\t\tcolor: var(--color-main-text);\n\t\tborder: 0;\n\t\tborder-radius: 0; // otherwise Safari will cut the border-radius area\n\t\tbackground-color: transparent;\n\t\tbox-shadow: none;\n\n\t\tfont-weight: normal;\n\t\tfont-size: var(--default-font-size);\n\t\tline-height: $clickable-area;\n\n\t\t& > span {\n\t\t\tcursor: pointer;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&__icon {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\t\t\tbackground-position: $icon-margin center;\n\t\t\tbackground-size: $icon-size;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t&:deep(.material-design-icon) {\n\t\t\twidth: $clickable-area;\n\t\t\theight: $clickable-area;\n\t\t\topacity: $opacity_full;\n\n\t\t\t.material-design-icon__svg {\n\t\t\t\tvertical-align: middle;\n\t\t\t}\n\t\t}\n\n\t\t// long text area\n\t\tp {\n\t\t\tmax-width: 220px;\n\t\t\tline-height: 1.6em;\n\n\t\t\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\n\t\t\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\n\n\t\t\tcursor: pointer;\n\t\t\ttext-align: left;\n\n\t\t\t// in case there are no spaces like long email addresses\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t}\n\n\t\t&__longtext {\n\t\t\tcursor: pointer;\n\t\t\t// allow the use of `\\n`\n\t\t\twhite-space: pre-wrap;\n\t\t}\n\n\t\t&__name {\n\t\t\tfont-weight: bold;\n\t\t\ttext-overflow: ellipsis;\n\t\t\toverflow: hidden;\n\t\t\twhite-space: nowrap;\n\t\t\tmax-width: 100%;\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},9546:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// Inline buttons\n.action-items {\n\tdisplay: flex;\n\talign-items: center;\n\n\t// Spacing between buttons\n\t& > button {\n\t\tmargin-right: math.div($icon-margin, 2);\n\t}\n}\n\n.action-item {\n\t--open-background-color: var(--color-background-hover, $action-background-hover);\n\tposition: relative;\n\tdisplay: inline-block;\n\n\t&.action-item--primary {\n\t\t--open-background-color: var(--color-primary-element-hover);\n\t}\n\n\t&.action-item--secondary {\n\t\t--open-background-color: var(--color-primary-element-light-hover);\n\t}\n\n\t&.action-item--error {\n\t\t--open-background-color: var(--color-error-hover);\n\t}\n\n\t&.action-item--warning {\n\t\t--open-background-color: var(--color-warning-hover);\n\t}\n\n\t&.action-item--success {\n\t\t--open-background-color: var(--color-success-hover);\n\t}\n\n\t&.action-item--tertiary-no-background {\n\t\t--open-background-color: transparent;\n\t}\n\n\t&.action-item--open .action-item__menutoggle {\n\t\tbackground-color: var(--open-background-color);\n\t}\n}\n"],sourceRoot:""}]);const s=r},5155:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcActions/NcActions.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n// We overwrote the popover base class, so we can style\n// the popover__inner for actions only.\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\n\tborder-radius: var(--border-radius-large);\n\toverflow:hidden;\n\n\t.v-popper__inner {\n\t\tborder-radius: var(--border-radius-large);\n\t\tpadding: 4px;\n\t\tmax-height: calc(50vh - 16px);\n\t\toverflow: auto;\n\t}\n}\n"],sourceRoot:""}]);const s=r},6222:(e,t,o)=>{"use strict";o.d(t,{Z:()=>v});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i),s=o(1667),c=o.n(s),l=new URL(o(3423),o.b),u=new URL(o(2605),o.b),d=new URL(o(7127),o.b),m=r()(n()),p=c()(l),h=c()(u),g=c()(d);m.push([e.id,`.material-design-icon[data-v-7de2f7ff]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.avatardiv[data-v-7de2f7ff]{position:relative;display:inline-block;width:var(--size);height:var(--size)}.avatardiv--unknown[data-v-7de2f7ff]{position:relative;background-color:var(--color-main-background)}.avatardiv[data-v-7de2f7ff]:not(.avatardiv--unknown){background-color:var(--color-main-background) !important;box-shadow:0 0 5px rgba(0,0,0,.05) inset}.avatardiv--with-menu[data-v-7de2f7ff]{cursor:pointer}.avatardiv--with-menu .action-item[data-v-7de2f7ff]{position:absolute;top:0;left:0}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle{cursor:pointer;opacity:0}.avatardiv--with-menu[data-v-7de2f7ff]:focus .action-item__menutoggle,.avatardiv--with-menu[data-v-7de2f7ff]:hover .action-item__menutoggle,.avatardiv--with-menu.avatardiv--with-menu-loading[data-v-7de2f7ff] .action-item__menutoggle{opacity:1}.avatardiv--with-menu:focus img[data-v-7de2f7ff],.avatardiv--with-menu:hover img[data-v-7de2f7ff],.avatardiv--with-menu.avatardiv--with-menu-loading img[data-v-7de2f7ff]{opacity:.3}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle,.avatardiv--with-menu img[data-v-7de2f7ff]{transition:opacity var(--animation-quick)}.avatardiv--with-menu[data-v-7de2f7ff] .button-vue,.avatardiv--with-menu[data-v-7de2f7ff] .button-vue__icon{height:var(--size);min-height:var(--size);width:var(--size) !important;min-width:var(--size)}.avatardiv .avatardiv__initials-wrapper[data-v-7de2f7ff]{height:var(--size);width:var(--size);background-color:var(--color-main-background);border-radius:50%}.avatardiv .avatardiv__initials-wrapper .unknown[data-v-7de2f7ff]{position:absolute;top:0;left:0;display:block;width:100%;text-align:center;font-weight:normal}.avatardiv img[data-v-7de2f7ff]{width:100%;height:100%;object-fit:cover}.avatardiv .material-design-icon[data-v-7de2f7ff]{width:var(--size);height:var(--size)}.avatardiv .avatardiv__user-status[data-v-7de2f7ff]{position:absolute;right:-4px;bottom:-4px;max-height:18px;max-width:18px;height:40%;width:40%;line-height:15px;font-size:var(--default-font-size);border:2px solid var(--color-main-background);background-color:var(--color-main-background);background-repeat:no-repeat;background-size:16px;background-position:center;border-radius:50%}.acli:hover .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-background-hover);background-color:var(--color-background-hover)}.acli.active .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-primary-element-light);background-color:var(--color-primary-element-light)}.avatardiv .avatardiv__user-status--online[data-v-7de2f7ff]{background-image:url(${p})}.avatardiv .avatardiv__user-status--dnd[data-v-7de2f7ff]{background-image:url(${h});background-color:#fff}.avatardiv .avatardiv__user-status--away[data-v-7de2f7ff]{background-image:url(${g})}.avatardiv .avatardiv__user-status--icon[data-v-7de2f7ff]{border:none;background-color:rgba(0,0,0,0)}.avatardiv .popovermenu-wrapper[data-v-7de2f7ff]{position:relative;display:inline-block}.avatar-class-icon[data-v-7de2f7ff]{border-radius:50%;background-color:var(--color-background-darker);height:100%}`,"",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcAvatar/NcAvatar.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,4BACC,iBAAA,CACA,oBAAA,CACA,iBAAA,CACA,kBAAA,CAEA,qCACC,iBAAA,CACA,6CAAA,CAGD,qDAEC,wDAAA,CACA,wCAAA,CAGD,uCACC,cAAA,CACA,oDACC,iBAAA,CACA,KAAA,CACA,MAAA,CAED,gEACC,cAAA,CACA,SAAA,CAKA,yOACC,SAAA,CAED,0KACC,UAAA,CAGF,2GAEC,yCAAA,CAGA,8GAEC,kBAAA,CACA,sBAAA,CACA,4BAAA,CACA,qBAAA,CAKH,yDACC,kBAAA,CACA,iBAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kEACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,iBAAA,CACA,kBAAA,CAIF,gCAEC,UAAA,CACA,WAAA,CAEA,gBAAA,CAGD,kDACC,iBAAA,CACA,kBAAA,CAGD,oDACC,iBAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,UAAA,CACA,SAAA,CACA,gBAAA,CACA,kCAAA,CACA,6CAAA,CACA,6CAAA,CACA,2BAAA,CACA,oBAAA,CACA,0BAAA,CACA,iBAAA,CAEA,gEACC,0CAAA,CACA,8CAAA,CAED,iEACC,+CAAA,CACA,mDAAA,CAGD,4DACC,wDAAA,CAED,yDACC,wDAAA,CACA,qBAAA,CAED,0DACC,wDAAA,CAED,0DACC,WAAA,CACA,8BAAA,CAIF,iDACC,iBAAA,CACA,oBAAA,CAIF,oCACC,iBAAA,CACA,+CAAA,CACA,WAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.avatardiv {\n\tposition: relative;\n\tdisplay: inline-block;\n\twidth: var(--size);\n\theight: var(--size);\n\n\t&--unknown {\n\t\tposition: relative;\n\t\tbackground-color: var(--color-main-background);\n\t}\n\n\t&:not(&--unknown) {\n\t\t// White/black background for avatars with transparency\n\t\tbackground-color: var(--color-main-background) !important;\n\t\tbox-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;\n\t}\n\n\t&--with-menu {\n\t\tcursor: pointer;\n\t\t.action-item {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t:deep(.action-item__menutoggle) {\n\t\t\tcursor: pointer;\n\t\t\topacity: 0;\n\t\t}\n\t\t&:focus,\n\t\t&:hover,\n\t\t&#{&}-loading {\n\t\t\t:deep(.action-item__menutoggle) {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\timg {\n\t\t\t\topacity: 0.3;\n\t\t\t}\n\t\t}\n\t\t:deep(.action-item__menutoggle),\n\t\timg {\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t}\n\t\t:deep() {\n\t\t\t.button-vue,\n\t\t\t.button-vue__icon {\n\t\t\t\theight: var(--size);\n\t\t\t\tmin-height: var(--size);\n\t\t\t\twidth: var(--size) !important;\n\t\t\t\tmin-width: var(--size);\n\t\t\t}\n\t\t}\n\t}\n\n\t.avatardiv__initials-wrapper {\n\t\theight: var(--size);\n\t\twidth: var(--size);\n\t\tbackground-color: var(--color-main-background);\n\t\tborder-radius: 50%;\n\n\t\t.unknown {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t\ttext-align: center;\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\n\timg {\n\t\t// Cover entire area\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\t// Keep ratio\n\t\tobject-fit: cover;\n\t}\n\n\t.material-design-icon {\n\t\twidth: var(--size);\n\t\theight: var(--size);\n\t}\n\n\t.avatardiv__user-status {\n\t\tposition: absolute;\n\t\tright: -4px;\n\t\tbottom: -4px;\n\t\tmax-height: 18px;\n\t\tmax-width: 18px;\n\t\theight: 40%;\n\t\twidth: 40%;\n\t\tline-height: 15px;\n\t\tfont-size: var(--default-font-size);\n\t\tborder: 2px solid var(--color-main-background);\n\t\tbackground-color: var(--color-main-background);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: 16px;\n\t\tbackground-position: center;\n\t\tborder-radius: 50%;\n\n\t\t.acli:hover & {\n\t\t\tborder-color: var(--color-background-hover);\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t\t.acli.active & {\n\t\t\tborder-color: var(--color-primary-element-light);\n\t\t\tbackground-color: var(--color-primary-element-light);\n\t\t}\n\n\t\t&--online{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-online.svg');\n\t\t}\n\t\t&--dnd{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-dnd.svg');\n\t\t\tbackground-color: #ffffff;\n\t\t}\n\t\t&--away{\n\t\t\tbackground-image: url('../../assets/status-icons/user-status-away.svg');\n\t\t}\n\t\t&--icon {\n\t\t\tborder: none;\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t.popovermenu-wrapper {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t}\n}\n\n.avatar-class-icon {\n\tborder-radius: 50%;\n\tbackground-color: var(--color-background-darker);\n\theight: 100%;\n}\n\n"],sourceRoot:""}]);const v=m},7294:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcButton/NcButton.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.button-vue {\n\tposition: relative;\n\twidth: fit-content;\n\toverflow: hidden;\n\tborder: 0;\n\tpadding: 0;\n\tfont-size: var(--default-font-size);\n\tfont-weight: bold;\n\tmin-height: $clickable-area;\n\tmin-width: $clickable-area;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t// Cursor pointer on element and all children\n\tcursor: pointer;\n\t& *,\n\tspan {\n\t\tcursor: pointer;\n\t}\n\tborder-radius: math.div($clickable-area, 2);\n\ttransition-property: color, border-color, background-color;\n\ttransition-duration: 0.1s;\n\ttransition-timing-function: linear;\n\n\t// No outline feedback for focus. Handled with a toggled class in js (see data)\n\t&:focus {\n\t\toutline: none;\n\t}\n\n\t&:disabled {\n\t\tcursor: default;\n\t\t& * {\n\t\t\tcursor: default;\n\t\t}\n\t\topacity: $opacity_disabled;\n\t\t// Gives a wash out effect\n\t\tfilter: saturate($opacity_normal);\n\t}\n\n\t// Default button type\n\tcolor: var(--color-primary-element-light-text);\n\tbackground-color: var(--color-primary-element-light);\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--color-primary-element-light-hover);\n\t}\n\n\t// Back to the default color for this button when active\n\t// TODO: add ripple effect\n\t&:active {\n\t\tbackground-color: var(--color-primary-element-light);\n\t}\n\n\t&__wrapper {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t}\n\n\t&--end &__wrapper {\n\t\tjustify-content: end;\n\t}\n\t&--start &__wrapper {\n\t\tjustify-content: start;\n\t}\n\t&--reverse &__wrapper {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t&--reverse#{&}--icon-and-text {\n\t\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\n\t}\n\n\t&__icon {\n\t\theight: $clickable-area;\n\t\twidth: $clickable-area;\n\t\tmin-height: $clickable-area;\n\t\tmin-width: $clickable-area;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t}\n\n\t&__text {\n\t\tfont-weight: bold;\n\t\tmargin-bottom: 1px;\n\t\tpadding: 2px 0;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t// Icon-only button\n\t&--icon-only {\n\t\twidth: $clickable-area !important;\n\t}\n\n\t// Text-only button\n\t&--text-only {\n\t\tpadding: 0 12px;\n\t\t& .button-vue__text {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t// Icon and text button\n\t&--icon-and-text {\n\t\tpadding-block: 0;\n\t\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\n\t}\n\n\t// Wide button spans the whole width of the container\n\t&--wide {\n\t\twidth: 100%;\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--color-main-text) !important;\n\t\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\n\t\t&.button-vue--vue-tertiary-on-primary {\n\t\t\toutline: 2px solid var(--color-primary-element-text);\n\t\t\tborder-radius: var(--border-radius);\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Button types\n\n\t// Primary\n\t&--vue-primary {\n\t\tbackground-color: var(--color-primary-element);\n\t\tcolor: var(--color-primary-element-text);\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-primary-element-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-primary-element);\n\t\t}\n\t}\n\n\t// Secondary\n\t&--vue-secondary {\n\t\tcolor: var(--color-primary-element-light-text);\n\t\tbackground-color: var(--color-primary-element-light);\n\t\t&:hover:not(:disabled) {\n\t\t\tcolor: var(--color-primary-element-light-text);\n\t\t\tbackground-color: var(--color-primary-element-light-hover);\n\t\t}\n\t}\n\n\t// Tertiary\n\t&--vue-tertiary {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-background-hover);\n\t\t}\n\t}\n\n\t// Tertiary, no background\n\t&--vue-tertiary-no-background {\n\t\tcolor: var(--color-main-text);\n\t\tbackground-color: transparent;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Tertiary on primary color (like the header)\n\t&--vue-tertiary-on-primary {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: transparent;\n\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\n\t// Success\n\t&--vue-success {\n\t\tbackground-color: var(--color-success);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-success-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// : add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-success);\n\t\t}\n\t}\n\n\t// Warning\n\t&--vue-warning {\n\t\tbackground-color: var(--color-warning);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-warning-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-warning);\n\t\t}\n\t}\n\n\t// Error\n\t&--vue-error {\n\t\tbackground-color: var(--color-error);\n\t\tcolor: white;\n\t\t&:hover:not(:disabled) {\n\t\t\tbackground-color: var(--color-error-hover);\n\t\t}\n\t\t// Back to the default color for this button when active\n\t\t// TODO: add ripple effect\n\t\t&:active {\n\t\t\tbackground-color: var(--color-error);\n\t\t}\n\t}\n}\n\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},436:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-3daafbe0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.name-parts[data-v-3daafbe0]{display:flex;max-width:100%;cursor:inherit}.name-parts__first[data-v-3daafbe0]{overflow:hidden;text-overflow:ellipsis}.name-parts__first[data-v-3daafbe0],.name-parts__last[data-v-3daafbe0]{white-space:pre;cursor:inherit}.name-parts__first strong[data-v-3daafbe0],.name-parts__last strong[data-v-3daafbe0]{font-weight:bold}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcEllipsisedOption/NcEllipsisedOption.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,YAAA,CACA,cAAA,CACA,cAAA,CACA,oCACC,eAAA,CACA,sBAAA,CAED,uEAGC,eAAA,CACA,cAAA,CACA,qFACC,gBAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.name-parts {\n\tdisplay: flex;\n\tmax-width: 100%;\n\tcursor: inherit;\n\t&__first {\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t}\n\t&__first,\n\t&__last {\n\t\t// prevent whitespace from being trimmed\n\t\twhite-space: pre;\n\t\tcursor: inherit;\n\t\tstrong {\n\t\t\tfont-weight: bold;\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const s=r},2105:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.icon-vue {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: 44px;\n\tmin-height: 44px;\n\topacity: 1;\n\n\t&:deep(svg) {\n\t\tfill: currentColor;\n\t\tmax-width: 20px;\n\t\tmax-height: 20px;\n\t}\n}\n"],sourceRoot:""}]);const s=r},4629:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-160648e6]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.option[data-v-160648e6]{display:flex;align-items:center;width:100%;height:var(--height);cursor:inherit}.option__avatar[data-v-160648e6]{margin-right:var(--margin)}.option__details[data-v-160648e6]{display:flex;flex:1 1;flex-direction:column;justify-content:center;min-width:0}.option__lineone[data-v-160648e6]{color:var(--color-main-text)}.option__linetwo[data-v-160648e6]{color:var(--color-text-maxcontrast)}.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.1em}.option__lineone strong[data-v-160648e6],.option__linetwo strong[data-v-160648e6]{font-weight:bold}.option__icon[data-v-160648e6]{width:44px;height:44px;color:var(--color-text-maxcontrast)}.option__icon.icon[data-v-160648e6]{flex:0 0 44px;opacity:.7;background-position:center;background-size:16px}.option__details[data-v-160648e6],.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6],.option__icon[data-v-160648e6]{cursor:inherit}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcListItemIcon/NcListItemIcon.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,yBACC,YAAA,CACA,kBAAA,CACA,UAAA,CACA,oBAAA,CACA,cAAA,CAEA,iCACC,0BAAA,CAGD,kCACC,YAAA,CACA,QAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAGD,kCACC,4BAAA,CAGD,kCACC,mCAAA,CAGD,oEAEC,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CACA,kFACC,gBAAA,CAIF,+BACC,UChBe,CDiBf,WCjBe,CDkBf,mCAAA,CACA,oCACC,aAAA,CACA,UCHc,CDId,0BAAA,CACA,oBAAA,CAIF,qIAIC,cAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.option {\n\tdisplay: flex;\n\talign-items: center;\n\twidth: 100%;\n\theight: var(--height);\n\tcursor: inherit;\n\n\t&__avatar {\n\t\tmargin-right: var(--margin);\n\t}\n\n\t&__details {\n\t\tdisplay: flex;\n\t\tflex: 1 1;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tmin-width: 0;\n\t}\n\n\t&__lineone {\n\t\tcolor: var(--color-main-text);\n\t}\n\n\t&__linetwo {\n\t\tcolor: var(--color-text-maxcontrast);\n\t}\n\n\t&__lineone,\n\t&__linetwo {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\tline-height: 1.1em;\n\t\tstrong {\n\t\t\tfont-weight: bold;\n\t\t}\n\t}\n\n\t&__icon {\n\t\twidth: $clickable-area;\n\t\theight: $clickable-area;\n\t\tcolor: var(--color-text-maxcontrast);\n\t\t&.icon {\n\t\t\tflex: 0 0 $clickable-area;\n\t\t\topacity: $opacity_normal;\n\t\t\tbackground-position: center;\n\t\t\tbackground-size: 16px;\n\t\t}\n\t}\n\n\t&__details,\n\t&__lineone,\n\t&__linetwo,\n\t&__icon {\n\t\tcursor: inherit;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},8502:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n.loading-icon svg{\n\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\n}\n"],sourceRoot:""}]);const s=r},1625:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcPopover/NcPopover.vue"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n\n.resize-observer {\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tz-index:-1;\n\twidth:100%;\n\theight:100%;\n\tborder:none;\n\tbackground-color:transparent;\n\tpointer-events:none;\n\tdisplay:block;\n\toverflow:hidden;\n\topacity:0\n}\n\n.resize-observer object {\n\tdisplay:block;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\theight:100%;\n\twidth:100%;\n\toverflow:hidden;\n\tpointer-events:none;\n\tz-index:-1\n}\n\n$arrow-width: 10px;\n\n.v-popper--theme-dropdown {\n\t&.v-popper__popper {\n\t\tz-index: 100000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tdisplay: block !important;\n\n\t\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\n\n\t\t.v-popper__inner {\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-main-text);\n\t\t\tborder-radius: var(--border-radius-large);\n\t\t\toverflow: hidden;\n\t\t\tbackground: var(--color-main-background);\n\t\t}\n\n\t\t.v-popper__arrow-container {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tborder-style: solid;\n\t\t\tborder-color: transparent;\n\t\t\tborder-width: $arrow-width;\n\t\t}\n\n\t\t&[data-popper-placement^='top'] .v-popper__arrow-container {\n\t\t\tbottom: -$arrow-width;\n\t\t\tborder-bottom-width: 0;\n\t\t\tborder-top-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\n\t\t\ttop: -$arrow-width;\n\t\t\tborder-top-width: 0;\n\t\t\tborder-bottom-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='right'] .v-popper__arrow-container {\n\t\t\tleft: -$arrow-width;\n\t\t\tborder-left-width: 0;\n\t\t\tborder-right-color: var(--color-main-background);\n\t\t}\n\n\t\t&[data-popper-placement^='left'] .v-popper__arrow-container {\n\t\t\tright: -$arrow-width;\n\t\t\tborder-right-width: 0;\n\t\t\tborder-left-color: var(--color-main-background);\n\t\t}\n\n\t\t&[aria-hidden='true'] {\n\t\t\tvisibility: hidden;\n\t\t\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\n\t\t\topacity: 0;\n\t\t}\n\n\t\t&[aria-hidden='false'] {\n\t\t\tvisibility: visible;\n\t\t\ttransition: opacity var(--animation-quick);\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},6466:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon[data-v-7dba3f6e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.mention-bubble--primary .mention-bubble__content[data-v-7dba3f6e]{color:var(--color-primary-element-text);background-color:var(--color-primary-element)}.mention-bubble__wrapper[data-v-7dba3f6e]{max-width:150px;height:18px;vertical-align:text-bottom;display:inline-flex;align-items:center}.mention-bubble__content[data-v-7dba3f6e]{display:inline-flex;overflow:hidden;align-items:center;max-width:100%;height:20px;-webkit-user-select:none;user-select:none;padding-right:6px;padding-left:2px;border-radius:10px;background-color:var(--color-background-dark)}.mention-bubble__icon[data-v-7dba3f6e]{position:relative;width:16px;height:16px;border-radius:8px;background-color:var(--color-background-darker);background-repeat:no-repeat;background-position:center;background-size:12px}.mention-bubble__icon--with-avatar[data-v-7dba3f6e]{color:inherit;background-size:cover}.mention-bubble__title[data-v-7dba3f6e]{overflow:hidden;margin-left:2px;white-space:nowrap;text-overflow:ellipsis}.mention-bubble__title[data-v-7dba3f6e]::before{content:attr(title)}.mention-bubble__select[data-v-7dba3f6e]{position:absolute;z-index:-1;left:-1000px}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcRichContenteditable/NcMentionBubble.vue"],names:[],mappings:"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CAAA,mECCC,uCAAA,CACA,6CAAA,CAGD,0CACC,eAXiB,CAajB,WAAA,CACA,0BAAA,CACA,mBAAA,CACA,kBAAA,CAGD,0CACC,mBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,WAzBc,CA0Bd,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBA3Be,CA4Bf,kBAAA,CACA,6CAAA,CAGD,uCACC,iBAAA,CACA,UAjCmB,CAkCnB,WAlCmB,CAmCnB,iBAAA,CACA,+CAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,oDACC,aAAA,CACA,qBAAA,CAIF,wCACC,eAAA,CACA,eAlDe,CAmDf,kBAAA,CACA,sBAAA,CAEA,gDACC,mBAAA,CAKF,yCACC,iBAAA,CACA,UAAA,CACA,YAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\n$bubble-height: 20px;\n$bubble-max-width: 150px;\n$bubble-padding: 2px;\n$bubble-avatar-size: $bubble-height - 2 * $bubble-padding;\n\n.mention-bubble {\n\t&--primary &__content {\n\t\tcolor: var(--color-primary-element-text);\n\t\tbackground-color: var(--color-primary-element);\n\t}\n\n\t&__wrapper {\n\t\tmax-width: $bubble-max-width;\n\t\t// Align with text\n\t\theight: $bubble-height - $bubble-padding;\n\t\tvertical-align: text-bottom;\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t}\n\n\t&__content {\n\t\tdisplay: inline-flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tmax-width: 100%;\n\t\theight: $bubble-height ;\n\t\t-webkit-user-select: none;\n\t\tuser-select: none;\n\t\tpadding-right: $bubble-padding * 3;\n\t\tpadding-left: $bubble-padding;\n\t\tborder-radius: math.div($bubble-height, 2);\n\t\tbackground-color: var(--color-background-dark);\n\t}\n\n\t&__icon {\n\t\tposition: relative;\n\t\twidth: $bubble-avatar-size;\n\t\theight: $bubble-avatar-size;\n\t\tborder-radius: math.div($bubble-avatar-size, 2);\n\t\tbackground-color: var(--color-background-darker);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center;\n\t\tbackground-size: $bubble-avatar-size - 2 * $bubble-padding;\n\n\t\t&--with-avatar {\n\t\t\tcolor: inherit;\n\t\t\tbackground-size: cover;\n\t\t}\n\t}\n\n\t&__title {\n\t\toverflow: hidden;\n\t\tmargin-left: $bubble-padding;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\t// Put title in ::before so it is not selectable\n\t\t&::before {\n\t\t\tcontent: attr(title);\n\t\t}\n\t}\n\n\t// Hide the mention id so it is selectable\n\t&__select {\n\t\tposition: absolute;\n\t\tz-index: -1;\n\t\tleft: -1000px;\n\t}\n}\n\n"],sourceRoot:""}]);const s=r},7283:(e,t,o)=>{"use strict";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}body{--vs-search-input-color: var(--color-main-text);--vs-search-input-bg: var(--color-main-background);--vs-search-input-placeholder-color: var(--color-text-maxcontrast);--vs-font-size: var(--default-font-size);--vs-line-height: var(--default-line-height);--vs-state-disabled-bg: var(--color-background-hover);--vs-state-disabled-color: var(--color-text-maxcontrast);--vs-state-disabled-controls-color: var(--color-text-maxcontrast);--vs-state-disabled-cursor: not-allowed;--vs-disabled-bg: var(--color-background-hover);--vs-disabled-color: var(--color-text-maxcontrast);--vs-disabled-cursor: not-allowed;--vs-border-color: var(--color-border-maxcontrast);--vs-border-width: 2px;--vs-border-style: solid;--vs-border-radius: var(--border-radius-large);--vs-controls-color: var(--color-text-maxcontrast);--vs-selected-bg: var(--color-background-dark);--vs-selected-color: var(--color-main-text);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: var(--color-main-background);--vs-dropdown-color: var(--color-main-text);--vs-dropdown-z-index: 9999;--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);--vs-dropdown-option-padding: 8px 20px;--vs-dropdown-option--active-bg: var(--color-background-hover);--vs-dropdown-option--active-color: var(--color-main-text);--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);--vs-dropdown-option--deselect-bg: var(--color-error);--vs-dropdown-option--deselect-color: #fff;--vs-transition-duration: 0ms}.v-select.select{min-height:44px;min-width:260px;margin:0}.v-select.select .vs__selected{min-height:36px;padding:0 .5em;border-radius:calc(var(--vs-border-radius) - 4px) !important}.v-select.select .vs__clear{margin-right:2px}.v-select.select.vs--open .vs__dropdown-toggle{border-color:var(--color-primary-element);border-bottom-color:rgba(0,0,0,0)}.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:hover{border-color:var(--color-primary-element)}.v-select.select.vs--disabled .vs__search,.v-select.select.vs--disabled .vs__selected{color:var(--color-text-maxcontrast)}.v-select.select.vs--disabled .vs__clear,.v-select.select.vs--disabled .vs__deselect{display:none}.v-select.select--no-wrap .vs__selected-options{flex-wrap:nowrap;overflow:auto;min-width:unset}.v-select.select--no-wrap .vs__selected-options .vs__selected{min-width:unset}.v-select.select--drop-up.vs--open .vs__dropdown-toggle{border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-color:rgba(0,0,0,0);border-bottom-color:var(--color-primary-element)}.v-select.select .vs__selected-options{min-height:40px}.v-select.select .vs__selected-options .vs__selected~.vs__search[readonly]{position:absolute}.v-select.select.vs--single.vs--loading .vs__selected,.v-select.select.vs--single.vs--open .vs__selected{max-width:100%}.v-select.select.vs--single .vs__selected-options{flex-wrap:nowrap}.vs__dropdown-menu{border-color:var(--color-primary-element) !important;padding:4px !important}.vs__dropdown-menu--floating{width:max-content;position:absolute;top:0;left:0}.vs__dropdown-menu--floating-placement-top{border-radius:var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;border-top-style:var(--vs-border-style) !important;border-bottom-style:none !important;box-shadow:0px -1px 1px 0px var(--color-box-shadow) !important}.vs__dropdown-menu .vs__dropdown-option{border-radius:6px !important}.vs__dropdown-menu .vs__no-options{color:var(--color-text-lighter) !important}","",{version:3,sources:["webpack://./src/assets/material-icons.css","webpack://./src/components/NcSelect/NcSelect.vue","webpack://./src/assets/variables.scss"],names:[],mappings:"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,KAOC,+CAAA,CACA,kDAAA,CACA,kEAAA,CAGA,wCAAA,CACA,4CAAA,CAGA,qDAAA,CACA,wDAAA,CACA,iEAAA,CACA,uCAAA,CACA,+CAAA,CACA,kDAAA,CACA,iCAAA,CAGA,kDAAA,CACA,sBAAA,CACA,wBAAA,CACA,8CAAA,CAGA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,kDAAA,CACA,kDAAA,CACA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,2BAAA,CACA,iEAAA,CAGA,sCAAA,CAGA,8DAAA,CACA,0DAAA,CAGA,uFAAA,CAGA,qDAAA,CACA,0CAAA,CAGA,6BAAA,CAGD,iBAEC,eC3CgB,CD4ChB,eAAA,CACA,QAAA,CAEA,+BACC,eAAA,CACA,cAAA,CACA,4DAAA,CAGD,4BACC,gBAAA,CAGD,+CACC,yCAAA,CACA,iCAAA,CAGD,yEACC,yCAAA,CAIA,sFAEC,mCAAA,CAGD,qFAEC,YAAA,CAKD,gDACC,gBAAA,CACA,aAAA,CACA,eAAA,CACA,8DACC,eAAA,CAOD,wDACC,iEAAA,CACA,8BAAA,CACA,gDAAA,CAKH,uCAEC,eAAA,CAGA,2EACC,iBAAA,CAOA,yGAEC,cAAA,CAGF,kDACC,gBAAA,CAKH,mBACC,oDAAA,CACA,sBAAA,CAEA,6BAEC,iBAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CAEA,2CACC,4EAAA,CACA,kDAAA,CACA,mCAAA,CACA,8DAAA,CAIF,wCACC,4BAAA,CAGD,mCACC,0CAAA",sourcesContent:["/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n\tdisplay: flex;\n\talign-self: center;\n\tjustify-self: center;\n\talign-items: center;\n\tjustify-content: center;\n}\n","@use 'sass:math'; $scope_version:\"7f0c9d1\"; @import 'variables'; @import 'material-icons';\n\nbody {\n\t/**\n\t * Set custom vue-select CSS variables.\n\t * Needs to be on the body (not :root) for theming to apply (see nextcloud/server#36462)\n\t */\n\n\t/* Search Input */\n\t--vs-search-input-color: var(--color-main-text);\n\t--vs-search-input-bg: var(--color-main-background);\n\t--vs-search-input-placeholder-color: var(--color-text-maxcontrast);\n\n\t/* Font */\n\t--vs-font-size: var(--default-font-size);\n\t--vs-line-height: var(--default-line-height);\n\n\t/* Disabled State */\n\t--vs-state-disabled-bg: var(--color-background-hover);\n\t--vs-state-disabled-color: var(--color-text-maxcontrast);\n\t--vs-state-disabled-controls-color: var(--color-text-maxcontrast);\n\t--vs-state-disabled-cursor: not-allowed;\n\t--vs-disabled-bg: var(--color-background-hover);\n\t--vs-disabled-color: var(--color-text-maxcontrast);\n\t--vs-disabled-cursor: not-allowed;\n\n\t/* Borders */\n\t--vs-border-color: var(--color-border-maxcontrast);\n\t--vs-border-width: 2px;\n\t--vs-border-style: solid;\n\t--vs-border-radius: var(--border-radius-large);\n\n\t/* Component Controls: Clear, Open Indicator */\n\t--vs-controls-color: var(--color-text-maxcontrast);\n\n\t/* Selected */\n\t--vs-selected-bg: var(--color-background-dark);\n\t--vs-selected-color: var(--color-main-text);\n\t--vs-selected-border-color: var(--vs-border-color);\n\t--vs-selected-border-style: var(--vs-border-style);\n\t--vs-selected-border-width: var(--vs-border-width);\n\n\t/* Dropdown */\n\t--vs-dropdown-bg: var(--color-main-background);\n\t--vs-dropdown-color: var(--color-main-text);\n\t--vs-dropdown-z-index: 9999;\n\t--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);\n\n\t/* Options */\n\t--vs-dropdown-option-padding: 8px 20px;\n\n\t/* Active State */\n\t--vs-dropdown-option--active-bg: var(--color-background-hover);\n\t--vs-dropdown-option--active-color: var(--color-main-text);\n\n\t/* Keyboard Focus State */\n\t--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);\n\n\t/* Deselect State */\n\t--vs-dropdown-option--deselect-bg: var(--color-error);\n\t--vs-dropdown-option--deselect-color: #fff;\n\n\t/* Transitions */\n\t--vs-transition-duration: 0ms;\n}\n\n.v-select.select {\n\t/* Override default vue-select styles */\n\tmin-height: $clickable-area;\n\tmin-width: 260px;\n\tmargin: 0;\n\n\t.vs__selected {\n\t\tmin-height: 36px;\n\t\tpadding: 0 0.5em;\n\t\tborder-radius: calc(var(--vs-border-radius) - 4px) !important;\n\t}\n\n\t.vs__clear {\n\t\tmargin-right: 2px;\n\t}\n\n\t&.vs--open .vs__dropdown-toggle {\n\t\tborder-color: var(--color-primary-element);\n\t\tborder-bottom-color: transparent;\n\t}\n\n\t&:not(.vs--disabled, .vs--open) .vs__dropdown-toggle:hover {\n\t\tborder-color: var(--color-primary-element);\n\t}\n\n\t&.vs--disabled {\n\t\t.vs__search,\n\t\t.vs__selected {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\n\t\t.vs__clear,\n\t\t.vs__deselect {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t&--no-wrap {\n\t\t.vs__selected-options {\n\t\t\tflex-wrap: nowrap;\n\t\t\toverflow: auto;\n\t\t\tmin-width: unset;\n\t\t\t.vs__selected {\n\t\t\t\tmin-width: unset;\n\t\t\t}\n\t\t}\n\t}\n\n\t&--drop-up {\n\t\t&.vs--open {\n\t\t\t.vs__dropdown-toggle {\n\t\t\t\tborder-radius: 0 0 var(--vs-border-radius) var(--vs-border-radius);\n\t\t\t\tborder-top-color: transparent;\n\t\t\t\tborder-bottom-color: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\t}\n\n\t.vs__selected-options {\n\t\t// If search is hidden, ensure that the height of the search is the same\n\t\tmin-height: 40px; // 36px search height + 4px search margin\n\n\t\t// Hide search from dom if unused to prevent unneeded flex wrap\n\t\t.vs__selected ~ .vs__search[readonly] {\n\t\t\tposition: absolute;\n\t\t}\n\t}\n\n\t&.vs--single {\n\t\t&.vs--loading,\n\t\t&.vs--open {\n\t\t\t.vs__selected {\n\t\t\t\t// Fix `max-width` for `position: absolute`\n\t\t\t\tmax-width: 100%;\n\t\t\t}\n\t\t}\n\t\t.vs__selected-options {\n\t\t\tflex-wrap: nowrap;\n\t\t}\n\t}\n}\n\n.vs__dropdown-menu {\n\tborder-color: var(--color-primary-element) !important;\n\tpadding: 4px !important;\n\n\t&--floating {\n\t\t/* Fallback styles overidden by programmatically set inline styles */\n\t\twidth: max-content;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\n\t\t&-placement-top {\n\t\t\tborder-radius: var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;\n\t\t\tborder-top-style: var(--vs-border-style) !important;\n\t\t\tborder-bottom-style: none !important;\n\t\t\tbox-shadow: 0px -1px 1px 0px var(--color-box-shadow) !important;\n\t\t}\n\t}\n\n\t.vs__dropdown-option {\n\t\tborder-radius: 6px !important;\n\t}\n\n\t.vs__no-options {\n\t\tcolor: var(--color-text-lighter) !important;\n\t}\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \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 .\n *\n */\n\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\n// recommended is 48px\n// 44px is what we choose and have very good visual-to-usability ratio\n$clickable-area: 44px;\n\n// background icon size\n// also used for the scss icon font\n$icon-size: 16px;\n\n// icon padding for a $clickable-area width and a $icon-size icon\n// ( 44px - 16px ) / 2\n$icon-margin: math.div($clickable-area - $icon-size, 2);\n\n// transparency background for icons\n$icon-focus-bg: rgba(127, 127, 127, .25);\n\n// popovermenu arrow width from the triangle center\n$arrow-width: 9px;\n\n// opacities\n$opacity_disabled: .5;\n$opacity_normal: .7;\n$opacity_full: 1;\n\n// menu round background hover feedback\n// good looking on dark AND white bg\n$action-background-hover: rgba(127, 127, 127, .25);\n\n// various structure data used in the \n// `AppNavigation` component\n$header-height: 50px;\n$navigation-width: 300px;\n\n// mobile breakpoint\n$breakpoint-mobile: 1024px;\n\n// top-bar spacing\n$topbar-margin: 4px;\n\n// navigation spacing\n$app-navigation-settings-margin: 3px;\n"],sourceRoot:""}]);const s=r},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",a=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),a&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),a&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,a,n,i){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),t.push(u))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},7537:e=>{"use strict";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),i="/*# ".concat(n," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},3379:e=>{"use strict";var t=[];function o(e){for(var o=-1,a=0;a{"use strict";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(o)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{"use strict";e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a="";o.supports&&(a+="@supports (".concat(o.supports,") {")),o.media&&(a+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(a+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),a+=o.css,n&&(a+="}"),o.media&&(a+="}"),o.supports&&(a+="}");var i=o.sourceMap;i&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},3330:(e,t,o)=>{"use strict";o.d(t,{Z:()=>y});var a=o(4262);const n={name:"NcMentionBubble",props:{id:{type:String,required:!0},title:{type:String,required:!0},icon:{type:String,required:!0},iconUrl:{type:[String,null],default:null},source:{type:String,required:!0},primary:{type:Boolean,default:!1}},computed:{avatarUrl:function(){return this.iconUrl?this.iconUrl:this.id&&"users"===this.source?this.getAvatarUrl(this.id,44):null},mentionText:function(){return this.id.includes(" ")||this.id.includes("/")?'@"'.concat(this.id,'"'):"@".concat(this.id)}},methods:{getAvatarUrl:function(e,t){return(0,a.generateUrl)("/avatar/{user}/{size}",{user:e,size:t})}}};var i=o(3379),r=o.n(i),s=o(7795),c=o.n(s),l=o(569),u=o.n(l),d=o(3565),m=o.n(d),p=o(9216),h=o.n(p),g=o(4589),v=o.n(g),f=o(6466),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,"head"),A.domAPI=c(),A.insertStyleElement=h(),r()(f.Z,A),f.Z&&f.Z.locals&&f.Z.locals;const y=(0,o(1900).Z)(n,(function(){var e=this,t=e._self._c;return t("span",{staticClass:"mention-bubble",class:{"mention-bubble--primary":e.primary},attrs:{contenteditable:"false"}},[t("span",{staticClass:"mention-bubble__wrapper"},[t("span",{staticClass:"mention-bubble__content"},[t("span",{staticClass:"mention-bubble__icon",class:[e.icon,"mention-bubble__icon--".concat(e.avatarUrl?"with-avatar":"")],style:e.avatarUrl?{backgroundImage:"url(".concat(e.avatarUrl,")")}:null}),e._v(" "),t("span",{staticClass:"mention-bubble__title",attrs:{role:"heading",title:e.title}})]),e._v(" "),t("span",{staticClass:"mention-bubble__select",attrs:{role:"none"}},[e._v(e._s(e.mentionText))])])])}),[],!1,null,"7dba3f6e",null).exports},9158:()=>{},5727:()=>{},3051:()=>{},2102:()=>{},6274:()=>{},1287:()=>{},8488:()=>{},9280:()=>{},2405:()=>{},8220:()=>{},4076:()=>{},1900:(e,t,o)=>{"use strict";function a(e,t,o,a,n,i,r,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=o,l._compiled=!0),a&&(l.functional=!0),i&&(l._scopeId="data-v-"+i),r?(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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},l._ssrRegister=c):n&&(c=s?function(){n.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:n),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(e,t){return c.call(t),u(e,t)}}else{var d=l.beforeCreate;l.beforeCreate=d?[].concat(d,c):[c]}return{exports:e,options:l}}o.d(t,{Z:()=>a})},7127:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS00LTRoMjR2MjRILTR6Ii8+PHBhdGggZD0iTTYuOS4xQzMgLjYtLjEgNC0uMSA4YzAgNC40IDMuNiA4IDggOCA0IDAgNy40LTMgOC02LjktMS4yIDEuMy0yLjkgMi4xLTQuNyAyLjEtMy41IDAtNi40LTIuOS02LjQtNi40IDAtMS45LjgtMy42IDIuMS00Ljd6IiBmaWxsPSIjZjRhMzMxIi8+PC9zdmc+Cg=="},2605:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTS00LTRoMjR2MjRILTRWLTR6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhzMy42IDggOCA4IDgtMy42IDgtOC0zLjYtOC04LTh6IiBmaWxsPSIjZWQ0ODRjIi8+PHBhdGggZD0iTTUgNi41aDZjLjggMCAxLjUuNyAxLjUgMS41cy0uNyAxLjUtMS41IDEuNUg1Yy0uOCAwLTEuNS0uNy0xLjUtMS41UzQuMiA2LjUgNSA2LjV6IiBmaWxsPSIjZmRmZmZmIi8+PC9zdmc+Cg=="},3423:e=>{"use strict";e.exports="data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTQuOCAxMS4yaDYuNFY0LjhINC44djYuNHpNOCAwQzMuNiAwIDAgMy42IDAgOHMzLjYgOCA4IDggOC0zLjYgOC04LTMuNi04LTgtOHoiIGZpbGw9IiM0OWIzODIiLz48L3N2Zz4K"},3607:e=>{"use strict";e.exports=o(22200)},768:e=>{"use strict";e.exports=o(21624)},7713:e=>{"use strict";e.exports=o(42515)},542:e=>{"use strict";e.exports=o(57888)},7931:e=>{"use strict";e.exports=o(23955)},4262:e=>{"use strict";e.exports=o(79753)},9454:e=>{"use strict";e.exports=o(73045)},4505:e=>{"use strict";e.exports=o(15303)},2734:e=>{"use strict";e.exports=o(20144)},8618:e=>{"use strict";e.exports=o(82675)},1441:e=>{"use strict";e.exports=o(89115)}},t={};function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,n),i.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.b=document.baseURI||self.location.href,n.nc=void 0;var i={};return(()=>{"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function o(e){for(var o=1;o_});var s=n(4378),c=n(7176),l=n(768),u=n.n(l),d=n(4262);function m(e){return m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},m(e)}function p(){p=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function h(){}function g(){}function v(){}var f={};c(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function b(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==m(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function h(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}var g=function e(t){var o={};if(1===t.nodeType){if(t.attributes.length>0){o["@attributes"]={};for(var a=0;a\n\t\t\t\t\t\n\t\t\t\t\t \n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t \n\t\t\t\t\t'});case 4:return t=e.sent,e.abrupt("return",v(t.data));case 6:case"end":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){h(i,a,n,r,s,"next",e)}function s(e){h(i,a,n,r,s,"throw",e)}r(void 0)}))});return function(){return t.apply(this,arguments)}}(),A=n(932),y=["fetchTags","optionsFilter","passthru"];function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}function b(){b=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function C(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==k(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function S(e){for(var t=1;t=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}(e,y));return t},tags:function(){return this.fetchTags?this.availableTags:this.options}},created:function(){var e,t=this;return(e=b().mark((function e(){var o;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.fetchTags){e.next=2;break}return e.abrupt("return");case 2:return e.prev=2,e.next=5,f();case 5:o=e.sent,t.availableTags=o,e.next=12;break;case 9:e.prev=9,e.t0=e.catch(2),a.error("Loading systemtags failed",e.t0);case 12:case"end":return e.stop()}}),e,null,[[2,9]])})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){C(i,a,n,r,s,"next",e)}function s(e){C(i,a,n,r,s,"throw",e)}r(void 0)}))})()},methods:{handleInput:function(e){this.multiple?this.$emit("input",e.map((function(e){return e.id}))):null===e?this.$emit("input",null):this.$emit("input",e.id)}}};var x=n(1900),j=n(4076),O=n.n(j),E=(0,x.Z)(N,(function(){var e=this,t=e._self._c;return t("NcSelect",e._g(e._b({attrs:{options:e.availableOptions,"close-on-select":!e.multiple,value:e.passthru?e.value:e.localValue},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:"option",fn:function(o){return[t("NcEllipsisedOption",{attrs:{name:e.getOptionLabel(o),search:e.search}})]}},{key:"selected-option",fn:function(o){return[t("NcEllipsisedOption",{attrs:{name:e.getOptionLabel(o),search:e.search}})]}},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},"NcSelect",e.propsToForward,!1),o(o({},e.$listeners),{},{input:e.passthru?e.$listeners.input:e.handleInput})))}),[],!1,null,null,null);"function"==typeof O()&&O()(E);const _=E.exports})(),i})()))},84848:function(e,o,a){"use strict";var n=a(20144),i=a(31352),r=a(69183),s=a(65358),c=a(5656),l=a(42515),u=a(77958),d=a(41922),m=a(19755),p=a.n(m),h=a(48033),g=a(80351),v=a.n(g),f=a(10250),A=a.n(f),y=a(45400),k=a.n(y),b=a(93455),C=a.n(b);function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function S(){S=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==w(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=C(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function C(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,C(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;N(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function P(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function N(e){return x.apply(this,arguments)}function x(){var e;return e=S().mark((function e(t){var o,a,n;return S().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,h.Z)({method:"PROPFIND",url:t,data:(0,c.h7)()});case 2:return o=e.sent,a=OCA.Files.App.fileList.filesClient._client.parseMultiStatus(o.data),(n=OCA.Files.App.fileList.filesClient._parseFileInfo(a[0])).get=function(e){return n[e]},n.isDirectory=function(){return"httpd/unix-directory"===n.mimetype},e.abrupt("return",n);case 8:case"end":return e.stop()}}),e)})),x=function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){P(i,a,n,r,s,"next",e)}function s(e){P(i,a,n,r,s,"throw",e)}r(void 0)}))},x.apply(this,arguments)}var j={name:"LegacyView",props:{component:{type:Object,required:!0},fileInfo:{type:Object,default:function(){},required:!0}},watch:{fileInfo:function(e){this.setFileInfo(e)}},mounted:function(){this.component.$el.replaceAll(this.$el),this.setFileInfo(this.fileInfo)},methods:{setFileInfo:function(e){this.component.setFileInfo(new OCA.Files.FileInfoModel(e))}}},O=a(51900),E=(0,O.Z)(j,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,_=a(62574);function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function z(){z=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new P(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(N([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==B(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=C(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function C(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,C(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function N(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function F(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function T(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){F(i,a,n,r,s,"next",e)}function s(e){F(i,a,n,r,s,"throw",e)}r(void 0)}))}}var M,L={name:"SidebarTab",components:{NcAppSidebarTab:a.n(_)(),NcEmptyContent:C()},props:{fileInfo:{type:Object,default:function(){},required:!0},id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,required:!1},onMount:{type:Function,required:!0},onUpdate:{type:Function,required:!0},onDestroy:{type:Function,required:!0},onScrollBottomReached:{type:Function,default:function(){}}},data:function(){return{loading:!0}},computed:{activeTab:function(){return this.$parent.activeTab}},watch:{fileInfo:function(e,t){var o=this;return T(z().mark((function a(){return z().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(e.id===t.id){a.next=5;break}return o.loading=!0,a.next=4,o.onUpdate(o.fileInfo);case 4:o.loading=!1;case 5:case"end":return a.stop()}}),a)})))()}},mounted:function(){var e=this;return T(z().mark((function t(){return z().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.loading=!0,t.next=3,e.onMount(e.$refs.mount,e.fileInfo,e.$refs.tab);case 3:e.loading=!1;case 4:case"end":return t.stop()}}),t)})))()},beforeDestroy:function(){var e=this;return T(z().mark((function t(){return z().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.onDestroy();case 2:case"end":return t.stop()}}),t)})))()}},D=(0,O.Z)(L,(function(){var e=this,t=e._self._c;return t("NcAppSidebarTab",{ref:"tab",attrs:{id:e.id,name:e.name,icon:e.icon},on:{bottomReached:e.onScrollBottomReached},scopedSlots:e._u([{key:"icon",fn:function(){return[e._t("icon")]},proxy:!0}],null,!0)},[e._v(" "),e.loading?t("NcEmptyContent",{attrs:{icon:"icon-loading"}}):e._e(),e._v(" "),t("div",{ref:"mount"})],1)}),[],!1,null,null,null).exports,G=a(64192),U=a.n(G),R=a(11677),I=a.n(R),q=a(64024),$=a(79753),H=a(14596),W=(0,$.generateRemoteUrl)("dav"),Z=(0,H.eI)(W,{headers:{requesttoken:null!==(M=(0,u.IH)())&&void 0!==M?M:""}}),V=a(23204),K=a.n(V);function Y(e){return Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Y(e)}function J(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function Q(e,t,o){return(t=function(e){var t=function(e,t){if("object"!==Y(e)||null===e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var a=o.call(e,"string");if("object"!==Y(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===Y(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function X(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&(e=e.substring(0,t));var o,a=e.split("/");do{o=a[a.length-1],a.pop()}while(!o&&a.length>0);return Number(o)},oe=function(e){var t=function(e){for(var t=1;t=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function le(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function ue(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){le(i,a,n,r,s,"next",e)}function s(e){le(i,a,n,r,s,"throw",e)}r(void 0)}))}}var de='\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n',me=function(){var e=ue(ce().mark((function e(){var t,o;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=1,e.next=4,Z.getDirectoryContents("/systemtags",{data:de,details:!0,glob:"/systemtags/*"});case 4:return t=e.sent,o=t.data,e.abrupt("return",ee(o));case 9:throw e.prev=9,e.t0=e.catch(1),ae.error((0,i.Iu)("systemtags","Failed to load tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(){return e.apply(this,arguments)}}(),pe=function(){var e=ue(ce().mark((function e(){var t,o,a;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=(0,$.generateUrl)("/apps/systemtags/lastused"),e.prev=1,e.next=4,h.Z.get(t);case 4:return o=e.sent,a=o.data,e.abrupt("return",a.map(Number));case 9:throw e.prev=9,e.t0=e.catch(1),ae.error((0,i.Iu)("systemtags","Failed to load last used tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load last used tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(){return e.apply(this,arguments)}}(),he=function(){var e=ue(ce().mark((function e(t){var o,a,n;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o="/systemtags-relations/files/"+t,e.prev=1,e.next=4,Z.getDirectoryContents(o,{data:de,details:!0,glob:"/systemtags-relations/files/*/*"});case 4:return a=e.sent,n=a.data,e.abrupt("return",ee(n));case 9:throw e.prev=9,e.t0=e.catch(1),ae.error((0,i.Iu)("systemtags","Failed to load selected tags"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to load selected tags"));case 13:case"end":return e.stop()}}),e,null,[[1,9]])})));return function(t){return e.apply(this,arguments)}}(),ge=function(){var e=ue(ce().mark((function e(t,o){var a,n;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a="/systemtags-relations/files/"+t+"/"+o.id,n=oe(o),e.prev=2,e.next=5,Z.customRequest(a,{method:"PUT",data:n});case 5:e.next=11;break;case 7:throw e.prev=7,e.t0=e.catch(2),ae.error((0,i.Iu)("systemtags","Failed to select tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to select tag"));case 11:case"end":return e.stop()}}),e,null,[[2,7]])})));return function(t,o){return e.apply(this,arguments)}}(),ve=function(){var e=ue(ce().mark((function e(t,o){var a,n,r,s,c;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a=oe(o),e.prev=2,e.next=5,Z.customRequest("/systemtags",{method:"POST",data:a});case 5:if(n=e.sent,r=n.headers,!(s=r.get("content-location"))){e.next=13;break}return c=re(re({},a),{},{id:te(s)}),e.next=12,ge(t,c);case 12:return e.abrupt("return",c.id);case 13:throw ae.error((0,i.Iu)("systemtags",'Missing "Content-Location" header')),new Error((0,i.Iu)("systemtags",'Missing "Content-Location" header'));case 17:throw e.prev=17,e.t0=e.catch(2),ae.error((0,i.Iu)("systemtags","Failed to create tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to create tag"));case 21:case"end":return e.stop()}}),e,null,[[2,17]])})));return function(t,o){return e.apply(this,arguments)}}(),fe=function(){var e=ue(ce().mark((function e(t,o){var a;return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a="/systemtags-relations/files/"+t+"/"+o.id,e.prev=1,e.next=4,Z.deleteFile(a);case 4:e.next=10;break;case 6:throw e.prev=6,e.t0=e.catch(1),ae.error((0,i.Iu)("systemtags","Failed to delete tag"),{error:e.t0}),new Error((0,i.Iu)("systemtags","Failed to delete tag"));case 10:case"end":return e.stop()}}),e,null,[[1,6]])})));return function(t,o){return e.apply(this,arguments)}}();function Ae(e){return Ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ae(e)}var ye=["id","displayName"];function ke(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function be(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function Ce(e){for(var t=1;t=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function Pe(e,t){var o="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!o){if(Array.isArray(e)||(o=Ne(e))||t&&e&&"number"==typeof e.length){o&&(e=o);var a=0,n=function(){};return{s:n,n:function(){return a>=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,r=!0,s=!1;return{s:function(){o=o.call(e)},n:function(){var e=o.next();return r=e.done,e},e:function(e){s=!0,i=e},f:function(){try{r||null==o.return||o.return()}finally{if(s)throw i}}}}function Ne(e,t){if(e){if("string"==typeof e)return xe(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?xe(e,t):void 0}}function xe(e,t){(null==t||t>e.length)&&(t=e.length);for(var o=0,a=new Array(t);o0),t.next=11;break;case 8:t.prev=8,t.t0=t.catch(1),(0,q.x2)((0,i.Iu)("systemtags","Failed to load selected tags"));case 11:e.loadingTags=!1;case 12:case"end":return t.stop()}}),t,null,[[1,8]])})))()}}},methods:{t:i.Iu,createOption:function(e){var t,o=Pe(this.sortedTags);try{for(o.s();!(t=o.n()).done;){var a=t.value,n=(a.id,a.displayName),i=ke(a,ye);if(n===e&&Object.entries(i).every((function(e){var t,o,a=(o=2,function(e){if(Array.isArray(e))return e}(t=e)||function(e,t){var o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a,n,i,r,s=[],c=!0,l=!1;try{if(i=(o=o.call(e)).next,0===t){if(Object(o)!==o)return;c=!1}else for(;!(c=(a=i.call(o)).done)&&(s.push(a.value),s.length!==t);c=!0);}catch(e){l=!0,n=e}finally{try{if(!c&&null!=o.return&&(r=o.return(),Object(r)!==r))return}finally{if(l)throw n}}return s}}(t,o)||Ne(t,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),n=a[0],i=a[1];return Ee[n]===i})))return a}}catch(e){o.e(e)}finally{o.f()}return Ce(Ce({},Ee),{},{displayName:e})},handleInput:function(e){this.selectedTags=e.filter((function(e){return Boolean(e.id)}))},handleSelect:function(e){var t=this;return Oe(Se().mark((function o(){var a,n;return Se().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if((a=e[e.length-1]).id){o.next=3;break}return o.abrupt("return");case 3:return t.loading=!0,o.prev=4,o.next=7,ge(t.fileId,a);case 7:n=function(e,t){return e.id===a.id?-1:t.id===a.id?1:0},t.sortedTags.sort(n),o.next=14;break;case 11:o.prev=11,o.t0=o.catch(4),(0,q.x2)((0,i.Iu)("systemtags","Failed to select tag"));case 14:t.loading=!1;case 15:case"end":return o.stop()}}),o,null,[[4,11]])})))()},handleCreate:function(e){var t=this;return Oe(Se().mark((function o(){var a,n;return Se().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return t.loading=!0,o.prev=1,o.next=4,ve(t.fileId,e);case 4:a=o.sent,n=Ce(Ce({},e),{},{id:a}),t.sortedTags.unshift(n),t.selectedTags.push(n),o.next=13;break;case 10:o.prev=10,o.t0=o.catch(1),(0,q.x2)((0,i.Iu)("systemtags","Failed to create tag"));case 13:t.loading=!1;case 14:case"end":return o.stop()}}),o,null,[[1,10]])})))()},handleDeselect:function(e){var t=this;return Oe(Se().mark((function o(){return Se().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return t.loading=!0,o.prev=1,o.next=4,fe(t.fileId,e);case 4:o.next=9;break;case 6:o.prev=6,o.t0=o.catch(1),(0,q.x2)((0,i.Iu)("systemtags","Failed to delete tag"));case 9:t.loading=!1;case 10:case"end":return o.stop()}}),o,null,[[1,6]])})))()}}}),Be=_e,ze=a(93379),Fe=a.n(ze),Te=a(7795),Me=a.n(Te),Le=a(90569),De=a.n(Le),Ge=a(3565),Ue=a.n(Ge),Re=a(19216),Ie=a.n(Re),qe=a(44589),$e=a.n(qe),He=a(85570),We={};We.styleTagTransform=$e(),We.setAttributes=Ue(),We.insert=De().bind(null,"head"),We.domAPI=Me(),We.insertStyleElement=Ie(),Fe()(He.Z,We),He.Z&&He.Z.locals&&He.Z.locals;var Ze=(0,O.Z)(Be,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("div",{staticClass:"system-tags"},[e.loadingTags?t("NcLoadingIcon",{attrs:{name:e.t("systemtags","Loading collaborative tags …"),size:32}}):[t("label",{attrs:{for:"system-tags-input"}},[e._v(e._s(e.t("systemtags","Search or create collaborative tags")))]),e._v(" "),t("NcSelectTags",{staticClass:"system-tags__select",attrs:{"input-id":"system-tags-input",placeholder:e.t("systemtags","Collaborative tags …"),options:e.sortedTags,value:e.selectedTags,"create-option":e.createOption,taggable:!0,passthru:!0,"fetch-tags":!1,loading:e.loading},on:{input:e.handleInput,"option:selected":e.handleSelect,"option:created":e.handleCreate,"option:deselected":e.handleDeselect},scopedSlots:e._u([{key:"no-options",fn:function(){return[e._v("\n\t\t\t\t"+e._s(e.t("systemtags","No tags to select, type to create a new tag"))+"\n\t\t\t")]},proxy:!0}])})]],2)}),[],!1,null,"7746ac6e",null).exports,Ve=a(25108);function Ke(e){return Ke="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ke(e)}function Ye(){Ye=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",r=n.asyncIterator||"@@asyncIterator",s=n.toStringTag||"@@toStringTag";function c(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,o){return e[t]=o}}function l(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new P(n||[]);return a(r,"_invoke",{value:b(e,o,s)}),r}function u(e,t,o){try{return{type:"normal",arg:e.call(t,o)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var d={};function m(){}function p(){}function h(){}var g={};c(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(N([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function y(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(a,i,r,s){var c=u(e[a],e,i);if("throw"!==c.type){var l=c.arg,d=l.value;return d&&"object"==Ke(d)&&o.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,r,s)}),(function(e){n("throw",e,r,s)})):t.resolve(d).then((function(e){l.value=e,r(l)}),(function(e){return n("throw",e,r,s)}))}s(c.arg)}var i;a(this,"_invoke",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function b(e,t,o){var a="suspendedStart";return function(n,i){if("executing"===a)throw new Error("Generator is already running");if("completed"===a){if("throw"===n)throw i;return{value:void 0,done:!0}}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=C(r,o);if(s){if(s===d)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if("suspendedStart"===a)throw a="completed",o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);a="executing";var c=u(e,t,o);if("normal"===c.type){if(a=o.done?"completed":"suspendedYield",c.arg===d)continue;return{value:c.arg,done:o.done}}"throw"===c.type&&(a="completed",o.method="throw",o.arg=c.arg)}}}function C(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,"throw"===o&&e.iterator.return&&(t.method="return",t.arg=void 0,C(e,t),"throw"===t.method)||"return"!==o&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+o+"' method")),d;var n=u(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,d):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,d)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function N(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=o.call(i,"catchLoc"),c=o.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),S(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if("throw"===a.type){var n=a.arg;S(o)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,o){return this.delegate={iterator:N(e),resultName:t,nextLoc:o},"next"===this.method&&(this.arg=void 0),d}},e}function Je(e,t,o,a,n,i,r){try{var s=e[i](r),c=s.value}catch(e){return void o(e)}s.done?t(c):Promise.resolve(c).then(a,n)}function Qe(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){Je(i,a,n,r,s,"next",e)}function s(e){Je(i,a,n,r,s,"throw",e)}r(void 0)}))}}var Xe={name:"Sidebar",components:{LegacyView:E,NcActionButton:k(),NcAppSidebar:A(),NcEmptyContent:C(),SidebarTab:D,SystemTags:Ze},data:function(){return{Sidebar:OCA.Files.Sidebar.state,showTags:!1,error:null,loading:!0,fileInfo:null,starLoading:!1,isFullScreen:!1,hasLowHeight:!1}},computed:{file:function(){return this.Sidebar.file},tabs:function(){return this.Sidebar.tabs},views:function(){return this.Sidebar.views},davPath:function(){var e=OC.getCurrentUser().uid;return OC.linkToRemote("dav/files/".concat(e).concat((0,s.Ec)(this.file)))},activeTab:function(){return this.Sidebar.activeTab},subtitle:function(){return"".concat(this.size,", ").concat(this.time)},time:function(){return OC.Util.relativeModifiedDate(this.fileInfo.mtime)},fullTime:function(){return v()(this.fileInfo.mtime).format("LLL")},size:function(){return OC.Util.humanFileSize(this.fileInfo.size)},background:function(){return this.getPreviewIfAny(this.fileInfo)},appSidebar:function(){return this.fileInfo?{"data-mimetype":this.fileInfo.mimetype,"star-loading":this.starLoading,active:this.activeTab,background:this.background,class:{"app-sidebar--has-preview":this.fileInfo.hasPreview&&!this.isFullScreen,"app-sidebar--full":this.isFullScreen},compact:this.hasLowHeight||!this.fileInfo.hasPreview||this.isFullScreen,loading:this.loading,starred:this.fileInfo.isFavourited,subname:this.subtitle,subtitle:this.fullTime,name:this.fileInfo.name,title:this.fileInfo.name}:this.error?{key:"error",subname:"",name:"",class:{"app-sidebar--full":this.isFullScreen}}:{loading:this.loading,subname:"",name:"",class:{"app-sidebar--full":this.isFullScreen}}},defaultAction:function(){return this.fileInfo&&OCA.Files&&OCA.Files.App&&OCA.Files.App.fileList&&OCA.Files.App.fileList.fileActions&&OCA.Files.App.fileList.fileActions.getDefaultFileAction&&OCA.Files.App.fileList.fileActions.getDefaultFileAction(this.fileInfo.mimetype,this.fileInfo.type,OC.PERMISSION_READ)},defaultActionListener:function(){return this.defaultAction?"figure-click":null},isSystemTagsEnabled:function(){var e;return!0===(null===(e=(0,l.getCapabilities)())||void 0===e||null===(e=e.systemtags)||void 0===e?void 0:e.enabled)}},created:function(){window.addEventListener("resize",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener("resize",this.handleWindowResize)},methods:{canDisplay:function(e){return e.enabled(this.fileInfo)},resetData:function(){var e=this;this.error=null,this.fileInfo=null,this.$nextTick((function(){e.$refs.tabs&&e.$refs.tabs.updateTabs()}))},getPreviewIfAny:function(e){return e.hasPreview&&!this.isFullScreen?OC.generateUrl("/core/preview?fileId=".concat(e.id,"&x=").concat(screen.width,"&y=").concat(screen.height,"&a=true")):this.getIconUrl(e)},getIconUrl:function(e){var t=e.mimetype||"application/octet-stream";return"httpd/unix-directory"===t?"shared"===e.mountType||"shared-root"===e.mountType?OC.MimeType.getIconUrl("dir-shared"):"external-root"===e.mountType?OC.MimeType.getIconUrl("dir-external"):void 0!==e.mountType&&""!==e.mountType?OC.MimeType.getIconUrl("dir-"+e.mountType):e.shareTypes&&(e.shareTypes.indexOf(d.D.SHARE_TYPE_LINK)>-1||e.shareTypes.indexOf(d.D.SHARE_TYPE_EMAIL)>-1)?OC.MimeType.getIconUrl("dir-public"):e.shareTypes&&e.shareTypes.length>0?OC.MimeType.getIconUrl("dir-shared"):OC.MimeType.getIconUrl("dir"):OC.MimeType.getIconUrl(t)},setActiveTab:function(e){OCA.Files.Sidebar.setActiveTab(e),this.tabs.forEach((function(t){try{t.setIsActive(e===t.id)}catch(e){logger.error("Error while setting tab active state",{error:e,id:t.id,tab:t})}}))},toggleStarred:function(e){var o=this;return Qe(Ye().mark((function a(){var n,i;return Ye().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.prev=0,o.starLoading=!0,a.next=4,(0,h.Z)({method:"PROPPATCH",url:o.davPath,data:'\n\t\t\t\t\t\t\n\t\t\t\t\t\t'.concat(e?"":"","\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t").concat(e?"":"","\n\t\t\t\t\t\t")});case 4:n="dir"===o.fileInfo.type,i=n?c.gt:c.$B,(0,r.j8)(e?"files:favorites:added":"files:favorites:removed",new i({fileid:o.fileInfo.id,source:o.davPath,root:"/files/".concat((0,u.ts)().uid),mime:n?void 0:o.fileInfo.mimetype})),a.next=13;break;case 9:a.prev=9,a.t0=a.catch(0),OC.Notification.showTemporary(t("files","Unable to change the favourite state of the file")),Ve.error("Unable to change favourite state",a.t0);case 13:o.starLoading=!1;case 14:case"end":return a.stop()}}),a,null,[[0,9]])})))()},onDefaultAction:function(){this.defaultAction&&this.defaultAction.action(this.fileInfo.name,{fileInfo:this.fileInfo,dir:this.fileInfo.dir,fileList:OCA.Files.App.fileList,$file:p()("body")})},toggleTags:function(){this.showTags=!this.showTags},open:function(e){var o=this;return Qe(Ye().mark((function a(){return Ye().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(e&&""!==e.trim()){a.next=2;break}throw new Error("Invalid path '".concat(e,"'"));case 2:return o.Sidebar.file=e,o.error=null,o.loading=!0,a.prev=5,a.next=8,N(o.davPath);case 8:o.fileInfo=a.sent,o.fileInfo.dir=o.file.split("/").slice(0,-1).join("/"),o.views.forEach((function(e){e.setFileInfo(o.fileInfo)})),o.$nextTick((function(){o.$refs.tabs&&o.$refs.tabs.updateTabs(),o.setActiveTab(o.Sidebar.activeTab||o.tabs[0].id)})),a.next=19;break;case 14:throw a.prev=14,a.t0=a.catch(5),o.error=t("files","Error while loading the file data"),Ve.error("Error while loading the file data",a.t0),new Error(a.t0);case 19:return a.prev=19,o.loading=!1,a.finish(19);case 22:case"end":return a.stop()}}),a,null,[[5,14,19,22]])})))()},close:function(){this.Sidebar.file="",this.showTags=!1,this.resetData()},setFullScreenMode:function(e){var t,o,a,n;this.isFullScreen=e,e?(null===(t=document.querySelector("#content"))||void 0===t?void 0:t.classList.add("with-sidebar--full"))||null===(o=document.querySelector("#content-vue"))||void 0===o||o.classList.add("with-sidebar--full"):(null===(a=document.querySelector("#content"))||void 0===a?void 0:a.classList.remove("with-sidebar--full"))||null===(n=document.querySelector("#content-vue"))||void 0===n||n.classList.remove("with-sidebar--full")},handleOpening:function(){(0,r.j8)("files:sidebar:opening")},handleOpened:function(){(0,r.j8)("files:sidebar:opened")},handleClosing:function(){(0,r.j8)("files:sidebar:closing")},handleClosed:function(){(0,r.j8)("files:sidebar:closed")},handleWindowResize:function(){this.hasLowHeight=document.documentElement.clientHeight<1024}}},et=a(85870),tt={};tt.styleTagTransform=$e(),tt.setAttributes=Ue(),tt.insert=De().bind(null,"head"),tt.domAPI=Me(),tt.insertStyleElement=Ie(),Fe()(et.Z,tt),et.Z&&et.Z.locals&&et.Z.locals;var ot=(0,O.Z)(Xe,(function(){var e=this,t=e._self._c;return e.file?t("NcAppSidebar",e._b({ref:"sidebar",attrs:{"force-menu":!0,tabindex:"0"},on:e._d({close:e.close,"update:active":e.setActiveTab,"update:starred":e.toggleStarred,opening:e.handleOpening,opened:e.handleOpened,closing:e.handleClosing,closed:e.handleClosed},[e.defaultActionListener,function(t){return t.stopPropagation(),t.preventDefault(),e.onDefaultAction.apply(null,arguments)}]),scopedSlots:e._u([e.fileInfo?{key:"description",fn:function(){return[t("div",{staticClass:"sidebar__description"},[e.isSystemTagsEnabled?t("SystemTags",{directives:[{name:"show",rawName:"v-show",value:e.showTags,expression:"showTags"}],attrs:{"file-id":e.fileInfo.id},on:{"has-tags":function(t){return e.showTags=t}}}):e._e(),e._v(" "),e._l(e.views,(function(o){return t("LegacyView",{key:o.cid,attrs:{component:o,"file-info":e.fileInfo}})}))],2)]},proxy:!0}:null,e.fileInfo?{key:"secondary-actions",fn:function(){return[e.isSystemTagsEnabled?t("NcActionButton",{attrs:{"close-after-click":!0,icon:"icon-tag"},on:{click:e.toggleTags}},[e._v("\n\t\t\t"+e._s(e.t("files","Tags"))+"\n\t\t")]):e._e()]},proxy:!0}:null],null,!0)},"NcAppSidebar",e.appSidebar,!1),[e._v(" "),e._v(" "),e.error?t("NcEmptyContent",{attrs:{icon:"icon-error"}},[e._v("\n\t\t"+e._s(e.error)+"\n\t")]):e.fileInfo?e._l(e.tabs,(function(o){return[o.enabled(e.fileInfo)?t("SidebarTab",{directives:[{name:"show",rawName:"v-show",value:!e.loading,expression:"!loading"}],key:o.id,attrs:{id:o.id,name:o.name,icon:o.icon,"on-mount":o.mount,"on-update":o.update,"on-destroy":o.destroy,"on-scroll-bottom-reached":o.scrollBottomReached,"file-info":e.fileInfo},scopedSlots:e._u([void 0!==o.iconSvg?{key:"icon",fn:function(){return[t("span",{staticClass:"svg-icon",domProps:{innerHTML:e._s(o.iconSvg)}})]},proxy:!0}:null],null,!0)}):e._e()]})):e._e()],2):e._e()}),[],!1,null,"3af76862",null),at=ot.exports,nt=a(25108);function it(e){return it="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},it(e)}function rt(e,t){for(var o=0;o-1?(nt.error("An tab with the same id ".concat(e.id," already exists"),e),!1):(this._state.tabs.push(e),!0)}},{key:"registerSecondaryView",value:function(e){return this._state.views.findIndex((function(t){return t.id===e.id}))>-1?(nt.error("A similar view already exists",e),!1):(this._state.views.push(e),!0)}},{key:"file",get:function(){return this._state.file}},{key:"setActiveTab",value:function(e){this._state.activeTab=e}}])&&rt(t.prototype,o),Object.defineProperty(t,"prototype",{writable:!1}),e}(),lt=a(57005);function ut(e){return ut="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ut(e)}function dt(e,t){for(var o=0;o0&&void 0!==arguments[0]?arguments[0]:{},a=o.id,n=o.name,i=o.icon,r=o.iconSvg,s=o.mount,c=o.setIsActive,l=o.update,u=o.destroy,d=o.enabled,m=o.scrollBottomReached;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),mt(this,"_id",void 0),mt(this,"_name",void 0),mt(this,"_icon",void 0),mt(this,"_iconSvgSanitized",void 0),mt(this,"_mount",void 0),mt(this,"_setIsActive",void 0),mt(this,"_update",void 0),mt(this,"_destroy",void 0),mt(this,"_enabled",void 0),mt(this,"_scrollBottomReached",void 0),void 0===d&&(d=function(){return!0}),void 0===m&&(m=function(){}),"string"!=typeof a||""===a.trim())throw new Error("The id argument is not a valid string");if("string"!=typeof n||""===n.trim())throw new Error("The name argument is not a valid string");if(("string"!=typeof i||""===i.trim())&&"string"!=typeof r)throw new Error("Missing valid string for icon or iconSvg argument");if("function"!=typeof s)throw new Error("The mount argument should be a function");if(void 0!==c&&"function"!=typeof c)throw new Error("The setIsActive argument should be a function");if("function"!=typeof l)throw new Error("The update argument should be a function");if("function"!=typeof u)throw new Error("The destroy argument should be a function");if("function"!=typeof d)throw new Error("The enabled argument should be a function");if("function"!=typeof m)throw new Error("The scrollBottomReached argument should be a function");this._id=a,this._name=n,this._icon=i,this._mount=s,this._setIsActive=c,this._update=l,this._destroy=u,this._enabled=d,this._scrollBottomReached=m,"string"==typeof r&&(0,lt.t)(r).then((function(e){t._iconSvgSanitized=e}))}var t,o;return t=e,(o=[{key:"id",get:function(){return this._id}},{key:"name",get:function(){return this._name}},{key:"icon",get:function(){return this._icon}},{key:"iconSvg",get:function(){return this._iconSvgSanitized}},{key:"mount",get:function(){return this._mount}},{key:"setIsActive",get:function(){return this._setIsActive||function(){}}},{key:"update",get:function(){return this._update}},{key:"destroy",get:function(){return this._destroy}},{key:"enabled",get:function(){return this._enabled}},{key:"scrollBottomReached",get:function(){return this._scrollBottomReached}}])&&dt(t.prototype,o),Object.defineProperty(t,"prototype",{writable:!1}),e}(),gt=a(25108);n.default.prototype.t=i.Iu,window.OCA.Files||(window.OCA.Files={}),Object.assign(window.OCA.Files,{Sidebar:new ct}),Object.assign(window.OCA.Files.Sidebar,{Tab:ht}),gt.debug("OCA.Files.Sidebar initialized"),window.addEventListener("DOMContentLoaded",(function(){var e=document.querySelector("body > .content")||document.querySelector("body > #content");if(e&&!document.getElementById("app-sidebar")){var t=document.createElement("div");t.id="app-sidebar",e.appendChild(t)}var o=new(n.default.extend(at))({name:"SidebarRoot"});o.$mount("#app-sidebar"),window.OCA.Files.Sidebar.open=o.open,window.OCA.Files.Sidebar.close=o.close,window.OCA.Files.Sidebar.setFullScreenMode=o.setFullScreenMode}))},23204:function(e){"use strict";const t=/[\p{Lu}]/u,o=/[\p{Ll}]/u,a=/^[\p{Lu}](?![\p{Lu}])/gu,n=/([\p{Alpha}\p{N}_]|$)/u,i=/[_.\- ]+/,r=new RegExp("^"+i.source),s=new RegExp(i.source+n.source,"gu"),c=new RegExp("\\d+"+n.source,"gu"),l=(e,n)=>{if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");if(n={pascalCase:!1,preserveConsecutiveUppercase:!1,...n},0===(e=Array.isArray(e)?e.map((e=>e.trim())).filter((e=>e.length)).join("-"):e.trim()).length)return"";const i=!1===n.locale?e=>e.toLowerCase():e=>e.toLocaleLowerCase(n.locale),l=!1===n.locale?e=>e.toUpperCase():e=>e.toLocaleUpperCase(n.locale);return 1===e.length?n.pascalCase?l(e):i(e):(e!==i(e)&&(e=((e,a,n)=>{let i=!1,r=!1,s=!1;for(let c=0;c(a.lastIndex=0,e.replace(a,(e=>t(e)))))(e,i):i(e),n.pascalCase&&(e=l(e.charAt(0))+e.slice(1)),((e,t)=>(s.lastIndex=0,c.lastIndex=0,e.replace(s,((e,o)=>t(o))).replace(c,(e=>t(e)))))(e,l))};e.exports=l,e.exports.default=l},85870:function(e,t,o){"use strict";var a=o(87537),n=o.n(a),i=o(23645),r=o.n(i)()(n());r.push([e.id,'.app-sidebar--has-preview[data-v-3af76862] .app-sidebar-header__figure{background-size:cover}.app-sidebar--has-preview[data-v-3af76862][data-mimetype="text/plain"] .app-sidebar-header__figure,.app-sidebar--has-preview[data-v-3af76862][data-mimetype="text/markdown"] .app-sidebar-header__figure{background-size:contain}.app-sidebar--full[data-v-3af76862]{position:fixed !important;z-index:2025 !important;top:0 !important;height:100% !important}.app-sidebar[data-v-3af76862] .app-sidebar-header__description{margin:0 16px 4px 16px !important}.app-sidebar .svg-icon[data-v-3af76862] svg{width:20px;height:20px;fill:currentColor}.sidebar__description[data-v-3af76862]{display:flex;flex-direction:column;width:100%;gap:8px 0}',"",{version:3,sources:["webpack://./apps/files/src/views/Sidebar.vue"],names:[],mappings:"AAGE,uEACC,qBAAA,CAKA,yMACC,uBAAA,CAKH,oCACC,yBAAA,CACA,uBAAA,CACA,gBAAA,CACA,sBAAA,CAIA,+DACC,iCAAA,CAKD,4CACC,UAAA,CACA,WAAA,CACA,iBAAA,CAKH,uCACC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA",sourcesContent:['\n.app-sidebar {\n\t&--has-preview:deep {\n\t\t.app-sidebar-header__figure {\n\t\t\tbackground-size: cover;\n\t\t}\n\n\t\t&[data-mimetype="text/plain"],\n\t\t&[data-mimetype="text/markdown"] {\n\t\t\t.app-sidebar-header__figure {\n\t\t\t\tbackground-size: contain;\n\t\t\t}\n\t\t}\n\t}\n\n\t&--full {\n\t\tposition: fixed !important;\n\t\tz-index: 2025 !important;\n\t\ttop: 0 !important;\n\t\theight: 100% !important;\n\t}\n\n\t:deep {\n\t\t.app-sidebar-header__description {\n\t\t\tmargin: 0 16px 4px 16px !important;\n\t\t}\n\t}\n\n\t.svg-icon {\n\t\t::v-deep svg {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n}\n\n.sidebar__description {\n\tdisplay: flex;\n\tflex-direction: column;\n\twidth: 100%;\n\tgap: 8px 0;\n}\n'],sourceRoot:""}]),t.Z=r},85570:function(e,t,o){"use strict";var a=o(87537),n=o.n(a),i=o(23645),r=o.n(i)()(n());r.push([e.id,".system-tags[data-v-7746ac6e]{display:flex;flex-direction:column}.system-tags label[for=system-tags-input][data-v-7746ac6e]{margin-bottom:2px}.system-tags__select[data-v-7746ac6e]{width:100%}.system-tags__select[data-v-7746ac6e] .vs__deselect{padding:0}","",{version:3,sources:["webpack://./apps/systemtags/src/components/SystemTags.vue"],names:[],mappings:"AACA,8BACC,YAAA,CACA,qBAAA,CAEA,2DACC,iBAAA,CAGD,sCACC,UAAA,CAEC,oDACC,SAAA",sourcesContent:['\n.system-tags {\n\tdisplay: flex;\n\tflex-direction: column;\n\n\tlabel[for="system-tags-input"] {\n\t\tmargin-bottom: 2px;\n\t}\n\n\t&__select {\n\t\twidth: 100%;\n\t\t:deep {\n\t\t\t.vs__deselect {\n\t\t\t\tpadding: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n'],sourceRoot:""}]),t.Z=r},46700:function(e,t,o){var a={"./af":42786,"./af.js":42786,"./ar":30867,"./ar-dz":14130,"./ar-dz.js":14130,"./ar-kw":96135,"./ar-kw.js":96135,"./ar-ly":56440,"./ar-ly.js":56440,"./ar-ma":47702,"./ar-ma.js":47702,"./ar-sa":16040,"./ar-sa.js":16040,"./ar-tn":37100,"./ar-tn.js":37100,"./ar.js":30867,"./az":31083,"./az.js":31083,"./be":9808,"./be.js":9808,"./bg":68338,"./bg.js":68338,"./bm":67438,"./bm.js":67438,"./bn":8905,"./bn-bd":76225,"./bn-bd.js":76225,"./bn.js":8905,"./bo":11560,"./bo.js":11560,"./br":1278,"./br.js":1278,"./bs":80622,"./bs.js":80622,"./ca":2468,"./ca.js":2468,"./cs":5822,"./cs.js":5822,"./cv":50877,"./cv.js":50877,"./cy":47373,"./cy.js":47373,"./da":24780,"./da.js":24780,"./de":59740,"./de-at":60217,"./de-at.js":60217,"./de-ch":60894,"./de-ch.js":60894,"./de.js":59740,"./dv":5300,"./dv.js":5300,"./el":50837,"./el.js":50837,"./en-au":78348,"./en-au.js":78348,"./en-ca":77925,"./en-ca.js":77925,"./en-gb":22243,"./en-gb.js":22243,"./en-ie":46436,"./en-ie.js":46436,"./en-il":47207,"./en-il.js":47207,"./en-in":44175,"./en-in.js":44175,"./en-nz":76319,"./en-nz.js":76319,"./en-sg":31662,"./en-sg.js":31662,"./eo":92915,"./eo.js":92915,"./es":55655,"./es-do":55251,"./es-do.js":55251,"./es-mx":96112,"./es-mx.js":96112,"./es-us":71146,"./es-us.js":71146,"./es.js":55655,"./et":5603,"./et.js":5603,"./eu":77763,"./eu.js":77763,"./fa":76959,"./fa.js":76959,"./fi":11897,"./fi.js":11897,"./fil":42549,"./fil.js":42549,"./fo":94694,"./fo.js":94694,"./fr":94470,"./fr-ca":63049,"./fr-ca.js":63049,"./fr-ch":52330,"./fr-ch.js":52330,"./fr.js":94470,"./fy":5044,"./fy.js":5044,"./ga":29295,"./ga.js":29295,"./gd":2101,"./gd.js":2101,"./gl":38794,"./gl.js":38794,"./gom-deva":27884,"./gom-deva.js":27884,"./gom-latn":23168,"./gom-latn.js":23168,"./gu":95349,"./gu.js":95349,"./he":24206,"./he.js":24206,"./hi":30094,"./hi.js":30094,"./hr":30316,"./hr.js":30316,"./hu":22138,"./hu.js":22138,"./hy-am":11423,"./hy-am.js":11423,"./id":29218,"./id.js":29218,"./is":90135,"./is.js":90135,"./it":90626,"./it-ch":10150,"./it-ch.js":10150,"./it.js":90626,"./ja":39183,"./ja.js":39183,"./jv":24286,"./jv.js":24286,"./ka":12105,"./ka.js":12105,"./kk":47772,"./kk.js":47772,"./km":18758,"./km.js":18758,"./kn":79282,"./kn.js":79282,"./ko":33730,"./ko.js":33730,"./ku":1408,"./ku.js":1408,"./ky":33291,"./ky.js":33291,"./lb":36841,"./lb.js":36841,"./lo":55466,"./lo.js":55466,"./lt":57010,"./lt.js":57010,"./lv":37595,"./lv.js":37595,"./me":39861,"./me.js":39861,"./mi":35493,"./mi.js":35493,"./mk":95966,"./mk.js":95966,"./ml":87341,"./ml.js":87341,"./mn":5115,"./mn.js":5115,"./mr":10370,"./mr.js":10370,"./ms":9847,"./ms-my":41237,"./ms-my.js":41237,"./ms.js":9847,"./mt":72126,"./mt.js":72126,"./my":56165,"./my.js":56165,"./nb":64924,"./nb.js":64924,"./ne":16744,"./ne.js":16744,"./nl":93901,"./nl-be":59814,"./nl-be.js":59814,"./nl.js":93901,"./nn":83877,"./nn.js":83877,"./oc-lnc":92135,"./oc-lnc.js":92135,"./pa-in":15858,"./pa-in.js":15858,"./pl":64495,"./pl.js":64495,"./pt":89520,"./pt-br":57971,"./pt-br.js":57971,"./pt.js":89520,"./ro":96459,"./ro.js":96459,"./ru":21793,"./ru.js":21793,"./sd":40950,"./sd.js":40950,"./se":10490,"./se.js":10490,"./si":90124,"./si.js":90124,"./sk":64249,"./sk.js":64249,"./sl":14985,"./sl.js":14985,"./sq":51104,"./sq.js":51104,"./sr":49131,"./sr-cyrl":79915,"./sr-cyrl.js":79915,"./sr.js":49131,"./ss":85893,"./ss.js":85893,"./sv":98760,"./sv.js":98760,"./sw":91172,"./sw.js":91172,"./ta":27333,"./ta.js":27333,"./te":23110,"./te.js":23110,"./tet":52095,"./tet.js":52095,"./tg":27321,"./tg.js":27321,"./th":9041,"./th.js":9041,"./tk":19005,"./tk.js":19005,"./tl-ph":75768,"./tl-ph.js":75768,"./tlh":89444,"./tlh.js":89444,"./tr":72397,"./tr.js":72397,"./tzl":28254,"./tzl.js":28254,"./tzm":51106,"./tzm-latn":30699,"./tzm-latn.js":30699,"./tzm.js":51106,"./ug-cn":9288,"./ug-cn.js":9288,"./uk":67691,"./uk.js":67691,"./ur":13795,"./ur.js":13795,"./uz":6791,"./uz-latn":60588,"./uz-latn.js":60588,"./uz.js":6791,"./vi":65666,"./vi.js":65666,"./x-pseudo":14378,"./x-pseudo.js":14378,"./yo":75805,"./yo.js":75805,"./zh-cn":83839,"./zh-cn.js":83839,"./zh-hk":55726,"./zh-hk.js":55726,"./zh-mo":99807,"./zh-mo.js":99807,"./zh-tw":74152,"./zh-tw.js":74152};function n(e){var t=i(e);return o(t)}function i(e){if(!o.o(a,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return a[e]}n.keys=function(){return Object.keys(a)},n.resolve=i,e.exports=n,n.id=46700},24654:function(){},52361:function(){},94616:function(){},5656:function(e,t,o){"use strict";o.d(t,{$B:function(){return N},RL:function(){return B},_o:function(){return j},gt:function(){return x},h7:function(){return y},pC:function(){return _},rp:function(){return E},sS:function(){return m},tB:function(){return k}});var a=o(77958),n=o(17499),i=o(31352),r=o(62520),s=o(79753),c=o(14596),l=o(26721);(e=>{null===e?(0,n.IY)().setApp("files").build():(0,n.IY)().setApp("files").setUid(e.uid).build()})((0,a.ts)());const u=["B","KB","MB","GB","TB","PB"],d=["B","KiB","MiB","GiB","TiB","PiB"];function m(e,t=!1,o=!1){"string"==typeof e&&(e=Number(e));let a=e>0?Math.floor(Math.log(e)/Math.log(o?1024:1e3)):0;a=Math.min((o?d.length:u.length)-1,a);const n=o?d[a]:u[a];let r=(e/Math.pow(o?1024:1e3,a)).toFixed(1);return!0===t&&0===a?("0.0"!==r?"< 1 ":"0 ")+(o?d[1]:u[1]):(r=a<2?parseFloat(r).toFixed(0):parseFloat(r).toLocaleString((0,i.aj)()),r+" "+n)}var p=(e=>(e.DEFAULT="default",e.HIDDEN="hidden",e))(p||{}),h=(e=>(e[e.NONE=0]="NONE",e[e.CREATE=4]="CREATE",e[e.READ=1]="READ",e[e.UPDATE=2]="UPDATE",e[e.DELETE=8]="DELETE",e[e.SHARE=16]="SHARE",e[e.ALL=31]="ALL",e))(h||{});const g=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],v={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},f=function(){return typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...g]),window._nc_dav_properties.map((e=>`<${e} />`)).join(" ")},A=function(){return typeof window._nc_dav_namespaces>"u"&&(window._nc_dav_namespaces={...v}),Object.keys(window._nc_dav_namespaces).map((e=>`xmlns:${e}="${window._nc_dav_namespaces?.[e]}"`)).join(" ")},y=function(){return`\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t`},k=function(e){return`\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${(0,a.ts)()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${e}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`};var b=(e=>(e.Folder="folder",e.File="file",e))(b||{});const C=function(e,t){return null!==e.match(t)},w=(e,t)=>{if(e.id&&"number"!=typeof e.id)throw new Error("Invalid id type of value");if(!e.source)throw new Error("Missing mandatory source");try{new URL(e.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!e.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(e.mtime&&!(e.mtime instanceof Date))throw new Error("Invalid mtime type");if(e.crtime&&!(e.crtime instanceof Date))throw new Error("Invalid crtime type");if(!e.mime||"string"!=typeof e.mime||!e.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in e&&"number"!=typeof e.size&&void 0!==e.size)throw new Error("Invalid size type");if("permissions"in e&&void 0!==e.permissions&&!("number"==typeof e.permissions&&e.permissions>=h.NONE&&e.permissions<=h.ALL))throw new Error("Invalid permissions");if(e.owner&&null!==e.owner&&"string"!=typeof e.owner)throw new Error("Invalid owner type");if(e.attributes&&"object"!=typeof e.attributes)throw new Error("Invalid attributes type");if(e.root&&"string"!=typeof e.root)throw new Error("Invalid root type");if(e.root&&!e.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(e.root&&!e.source.includes(e.root))throw new Error("Root must be part of the source");if(e.root&&C(e.source,t)){const o=e.source.match(t)[0];if(!e.source.includes((0,r.join)(o,e.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(e.status&&!Object.values(S).includes(e.status))throw new Error("Status must be a valid NodeStatus")};var S=(e=>(e.NEW="new",e.FAILED="failed",e.LOADING="loading",e.LOCKED="locked",e))(S||{});class P{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(e,t){w(e,t||this._knownDavService),this._data=e;const o={set:(e,t,o)=>(this.updateMtime(),Reflect.set(e,t,o)),deleteProperty:(e,t)=>(this.updateMtime(),Reflect.deleteProperty(e,t))};this._attributes=new Proxy(e.attributes||{},o),delete this._data.attributes,t&&(this._knownDavService=t)}get source(){return this._data.source.replace(/\/$/i,"")}get basename(){return(0,r.basename)(this.source)}get extension(){return(0,r.extname)(this.source)}get dirname(){if(this.root){const e=this.source.indexOf(this.root);return(0,r.dirname)(this.source.slice(e+this.root.length)||"/")}const e=new URL(this.source);return(0,r.dirname)(e.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:h.NONE:h.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return C(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,r.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){const e=this.source.indexOf(this.root);return this.source.slice(e+this.root.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(e){this._data.status=e}move(e){w({...this._data,source:e},this._knownDavService),this._data.source=e,this.updateMtime()}rename(e){if(e.includes("/"))throw new Error("Invalid basename");this.move((0,r.dirname)(this.source)+"/"+e)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class N extends P{get type(){return b.File}}class x extends P{constructor(e){super({...e,mime:"httpd/unix-directory"})}get type(){return b.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const j=`/files/${(0,a.ts)()?.uid}`,O=(0,s.generateRemoteUrl)("dav"),E=function(e=O){const t=(0,c.eI)(e,{headers:{requesttoken:(0,a.IH)()||""}});return(0,c.lD)().patch("request",(e=>(e.headers?.method&&(e.method=e.headers.method,delete e.headers.method),(0,l.W)(e)))),t},_=async(e,t="/",o=j)=>(await e.getDirectoryContents(`${o}${t}`,{details:!0,data:`\n\t\t\n\t\t\t\n\t\t\t\t${f()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((e=>e.filename!==t)).map((e=>B(e,o))),B=function(e,t=j,o=O){const n=e.props,i=function(e=""){let t=h.NONE;return e&&((e.includes("C")||e.includes("K"))&&(t|=h.CREATE),e.includes("G")&&(t|=h.READ),(e.includes("W")||e.includes("N")||e.includes("V"))&&(t|=h.UPDATE),e.includes("D")&&(t|=h.DELETE),e.includes("R")&&(t|=h.SHARE)),t}(n?.permissions),r=(0,a.ts)()?.uid,s={id:n?.fileid||0,source:`${o}${e.filename}`,mtime:new Date(Date.parse(e.lastmod)),mime:e.mime,size:n?.size||Number.parseInt(n.getcontentlength||"0"),permissions:i,owner:r,root:t,attributes:{...e,...n,hasPreview:n?.["has-preview"]}};return delete s.attributes?.props,"file"===e.type?new N(s):new x(s)};var z={};!function(e){const t=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",o="["+t+"]["+t+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",a=new RegExp("^"+o+"$");e.isExist=function(e){return typeof e<"u"},e.isEmptyObject=function(e){return 0===Object.keys(e).length},e.merge=function(e,t,o){if(t){const a=Object.keys(t),n=a.length;for(let i=0;i"u")},e.getAllMatches=function(e,t){const o=[];let a=t.exec(e);for(;a;){const n=[];n.startIndex=t.lastIndex-a[0].length;const i=a.length;for(let e=0;e!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(e,t,o){return e}};F.buildOptions=function(e){return Object.assign({},T,e)},F.defaultOptions=T,!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,z.nameRegexp),new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");var M={};function L(e,t,o){let a;const n={};for(let i=0;i0&&(n[t.textNodeName]=a):void 0!==a&&(n[t.textNodeName]=a),n}function D(e){const t=Object.keys(e);for(let e=0;e`,i=!1;continue}if(c===t.commentPropName){n+=a+`\x3c!--${s[c][0][t.textNodeName]}--\x3e`,i=!0;continue}if("?"===c[0]){const e=H(s[":@"],t),o="?xml"===c?"":a;let r=s[c][0][t.textNodeName];r=0!==r.length?" "+r:"",n+=o+`<${c}${r}${e}?>`,i=!0;continue}let u=a;""!==u&&(u+=t.indentBy);const d=a+`<${c}${H(s[":@"],t)}`,m=q(s[c],t,l,u);-1!==t.unpairedTags.indexOf(c)?t.suppressUnpairedNode?n+=d+">":n+=d+"/>":m&&0!==m.length||!t.suppressEmptyNode?m&&m.endsWith(">")?n+=d+`>${m}${a}`:(n+=d+">",m&&""!==a&&(m.includes("/>")||m.includes("`):n+=d+"/>",i=!0}return n}function $(e){const t=Object.keys(e);for(let e=0;e0&&t.processEntities)for(let o=0;o0&&(o="\n"),q(e,t,"",o)},K={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&"},{regex:new RegExp(">","g"),val:">"},{regex:new RegExp("<","g"),val:"<"},{regex:new RegExp("'","g"),val:"'"},{regex:new RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function Y(e){this.options=Object.assign({},K,e),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=X),this.processTextOrObjNode=J,this.options.format?(this.indentate=Q,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function J(e,t,o){const a=this.j2x(e,o+1);return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,a.attrStr,o):this.buildObjectNode(a.val,t,a.attrStr,o)}function Q(e){return this.options.indentBy.repeat(e)}function X(e){return!(!e.startsWith(this.options.attributeNamePrefix)||e===this.options.textNodeName)&&e.substr(this.attrPrefixLen)}Y.prototype.build=function(e){return this.options.preserveOrder?V(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e={[this.options.arrayNodeName]:e}),this.j2x(e,0).val)},Y.prototype.j2x=function(e,t){let o="",a="";for(let n in e)if(typeof e[n]>"u")this.isAttribute(n)&&(a+="");else if(null===e[n])this.isAttribute(n)?a+="":"?"===n[0]?a+=this.indentate(t)+"<"+n+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+n+"/"+this.tagEndChar;else if(e[n]instanceof Date)a+=this.buildTextValNode(e[n],n,"",t);else if("object"!=typeof e[n]){const i=this.isAttribute(n);if(i)o+=this.buildAttrPairStr(i,""+e[n]);else if(n===this.options.textNodeName){let t=this.options.tagValueProcessor(n,""+e[n]);a+=this.replaceEntitiesValue(t)}else a+=this.buildTextValNode(e[n],n,"",t)}else if(Array.isArray(e[n])){const o=e[n].length;let i="";for(let r=0;r"u"||(null===o?"?"===n[0]?a+=this.indentate(t)+"<"+n+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+n+"/"+this.tagEndChar:"object"==typeof o?this.options.oneListGroup?i+=this.j2x(o,t+1).val:i+=this.processTextOrObjNode(o,n,t):i+=this.buildTextValNode(o,n,"",t))}this.options.oneListGroup&&(i=this.buildObjectNode(i,n,"",t)),a+=i}else if(this.options.attributesGroupName&&n===this.options.attributesGroupName){const t=Object.keys(e[n]),a=t.length;for(let i=0;i"+e+n}},Y.prototype.closeTag=function(e){let t="";return-1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":`>`+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(a)+`\x3c!--${e}--\x3e`+this.newLine;if("?"===t[0])return this.indentate(a)+"<"+t+o+"?"+this.tagEndChar;{let n=this.options.tagValueProcessor(t,e);return n=this.replaceEntitiesValue(n),""===n?this.indentate(a)+"<"+t+o+this.closeTag(t)+this.tagEndChar:this.indentate(a)+"<"+t+o+">"+n+"0&&this.options.processEntities)for(let t=0;t=n)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,n0&&e[u-1][2]>n;u--)e[u]=e[u-1];e[u]=[o,a,n]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=function(e){return Promise.all(Object.keys(r.f).reduce((function(t,o){return r.f[o](e,t),t}),[]))},r.u=function(e){return e+"-"+e+".js?v=3b66be39570778909421"},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o={},a="nextcloud:",r.l=function(e,t,n,i){if(o[e])o[e].push(t);else{var s,c;if(void 0!==n)for(var l=document.getElementsByTagName("script"),u=0;u-1&&!e;)e=o[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=e}(),function(){r.b=document.baseURI||self.location.href;var e={4092:0};r.f.j=function(t,o){var a=r.o(e,t)?e[t]:void 0;if(0!==a)if(a)o.push(a[2]);else{var n=new Promise((function(o,n){a=e[t]=[o,n]}));o.push(a[2]=n);var i=r.p+r.u(t),s=new Error;r.l(i,(function(o){if(r.o(e,t)&&(0!==(a=e[t])&&(e[t]=void 0),a)){var n=o&&("load"===o.type?"missing":o.type),i=o&&o.target&&o.target.src;s.message="Loading chunk "+t+" failed.\n("+n+": "+i+")",s.name="ChunkLoadError",s.type=n,s.request=i,a[1](s)}}),"chunk-"+t,t)}},r.O.j=function(t){return 0===e[t]};var t=function(t,o){var a,n,i=o[0],s=o[1],c=o[2],l=0;if(i.some((function(t){return 0!==e[t]}))){for(a in s)r.o(s,a)&&(r.m[a]=s[a]);if(c)var u=c(r)}for(t&&t(o);l 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.encodePath = encodePath;\nexports.basename = basename;\nexports.dirname = dirname;\nexports.joinPaths = joinPaths;\nexports.isSamePath = isSamePath;\n\nrequire(\"core-js/modules/es.array.map.js\");\n\nrequire(\"core-js/modules/es.regexp.exec.js\");\n\nrequire(\"core-js/modules/es.string.split.js\");\n\nrequire(\"core-js/modules/es.string.replace.js\");\n\nrequire(\"core-js/modules/es.array.filter.js\");\n\nrequire(\"core-js/modules/es.array.reduce.js\");\n\nrequire(\"core-js/modules/es.array.concat.js\");\n\n/**\n * URI-Encodes a file path but keep the path slashes.\n */\nfunction encodePath(path) {\n if (!path) {\n return path;\n }\n\n return path.split('/').map(encodeURIComponent).join('/');\n}\n/**\n * Returns the base name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"somefile.txt\"\n */\n\n\nfunction basename(path) {\n return path.replace(/\\\\/g, '/').replace(/.*\\//, '');\n}\n/**\n * Returns the dir name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"/abc\"\n */\n\n\nfunction dirname(path) {\n return path.replace(/\\\\/g, '/').replace(/\\/[^\\/]*$/, '');\n}\n/**\n * Join path sections\n */\n\n\nfunction joinPaths() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n if (arguments.length < 1) {\n return '';\n } // discard empty arguments\n\n\n var nonEmptyArgs = args.filter(function (arg) {\n return arg.length > 0;\n });\n\n if (nonEmptyArgs.length < 1) {\n return '';\n }\n\n var lastArg = nonEmptyArgs[nonEmptyArgs.length - 1];\n var leadingSlash = nonEmptyArgs[0].charAt(0) === '/';\n var trailingSlash = lastArg.charAt(lastArg.length - 1) === '/';\n var sections = nonEmptyArgs.reduce(function (acc, section) {\n return acc.concat(section.split('/'));\n }, []);\n var first = !leadingSlash;\n var path = sections.reduce(function (acc, section) {\n if (section === '') {\n return acc;\n }\n\n if (first) {\n first = false;\n return acc + section;\n }\n\n return acc + '/' + section;\n }, '');\n\n if (trailingSlash) {\n // add it back\n return path + '/';\n }\n\n return path;\n}\n/**\n * Returns whether the given paths are the same, without\n * leading, trailing or doubled slashes and also removing\n * the dot sections.\n */\n\n\nfunction isSamePath(path1, path2) {\n var pathSections1 = (path1 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n var pathSections2 = (path2 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n path1 = joinPaths.apply(undefined, pathSections1);\n path2 = joinPaths.apply(undefined, pathSections2);\n return path1 === path2;\n}\n//# sourceMappingURL=index.js.map","/*! For license information please see NcAppSidebar.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcAppSidebar\"]=t())}(self,(()=>(()=>{var e={7664:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>R});var o=a(3089),i=a(2297),n=a(1205),r=a(932),s=a(2734),c=a.n(s),l=a(1441),d=a.n(l);function m(e){return m=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},m(e)}function u(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function p(e){for(var t=1;te.length)&&(t=e.length);for(var a=0,o=new Array(t);a0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var a=t.querySelector(v);if(a){var o=g(this.$refs.menu.querySelectorAll(v)).indexOf(a);o>-1&&(this.focusIndex=o,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(v)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(v).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(v).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,a=(this.$slots.default||[]).filter((function(e){var t,a;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)})),o=a.every((function(e){var t,a,o,i;return\"NcActionLink\"===(null!==(t=null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)&&void 0!==t?t:null==e||null===(o=e.componentOptions)||void 0===o?void 0:o.tag)&&(null==e||null===(i=e.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i||null===(i=i.href)||void 0===i?void 0:i.startsWith(window.location.origin))})),i=a.filter(this.isValidSingleAction);if(this.forceMenu&&i.length>0&&this.inline>0&&(c().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),i=[]),0!==a.length){var n=function(a){var o,i,n,r,s,c,l,d,m,u,h,g,A=(null==a||null===(o=a.data)||void 0===o||null===(o=o.scopedSlots)||void 0===o||null===(o=o.icon())||void 0===o?void 0:o[0])||e(\"span\",{class:[\"icon\",null==a||null===(i=a.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i?void 0:i.icon]}),v=null==a||null===(n=a.componentOptions)||void 0===n||null===(n=n.listeners)||void 0===n?void 0:n.click,k=null==a||null===(r=a.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),f=(null==a||null===(c=a.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||k,y=t.forceName?k:\"\",C=null==a||null===(l=a.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||C||(C=k),e(\"NcButton\",{class:[\"action-item action-item--single\",null==a||null===(d=a.data)||void 0===d?void 0:d.staticClass,null==a||null===(m=a.data)||void 0===m?void 0:m.class],attrs:{\"aria-label\":f,title:C},ref:null==a||null===(u=a.data)||void 0===u?void 0:u.ref,props:p({type:t.type||(y?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==a||null===(h=a.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==a||null===(g=a.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!v&&{click:function(e){v&&v(e)}})},[e(\"template\",{slot:\"icon\"},[A]),y])},r=function(a){var i,n,r=(null===(i=t.$slots.icon)||void 0===i?void 0:i[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(n=t.$refs.menuButton)||void 0===n?void 0:n.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":o?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:o?null:\"menu\"}},[a])])])};if(1===a.length&&1===i.length&&!this.forceMenu)return n(i[0]);if(i.length>0&&this.inline>0){var s=i.slice(0,this.inline),l=a.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(n)),[l.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(l)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(a)])}}};var f=a(3379),y=a.n(f),C=a(7795),b=a.n(C),w=a(569),P=a.n(w),S=a(3565),N=a.n(S),x=a(9216),j=a.n(x),E=a(4589),O=a.n(E),_=a(9546),B={};B.styleTagTransform=O(),B.setAttributes=N(),B.insert=P().bind(null,\"head\"),B.domAPI=b(),B.insertStyleElement=j();y()(_.Z,B);_.Z&&_.Z.locals&&_.Z.locals;var z=a(5155),F={};F.styleTagTransform=O(),F.setAttributes=N(),F.insert=P().bind(null,\"head\"),F.domAPI=b(),F.insertStyleElement=j();y()(z.Z,F);z.Z&&z.Z.locals&&z.Z.locals;var M=a(1900),T=a(5727),D=a.n(T),G=(0,M.Z)(k,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(G);const R=G.exports},3089:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function i(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function n(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,a,o,i=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(a=t.trim)||void 0===a?void 0:a.call(t),c=!!s,l=null===(o=this.$slots)||void 0===o?void 0:o.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var d=function(){var t,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=a.navigate,d=a.isActive,m=a.isExactActive;return e(i.to||!i.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":l&&!c,\"button-vue--text-only\":c&&!l,\"button-vue--icon-and-text\":l&&c},r(t,\"button-vue--vue-\".concat(i.realType),i.realType),r(t,\"button-vue--wide\",i.wide),r(t,\"button-vue--\".concat(i.flexAlignment),\"center\"!==i.flexAlignment),r(t,\"button-vue--reverse\",i.isReverseAligned),r(t,\"active\",d),r(t,\"router-link-exact-active\",m),t)],attrs:n({\"aria-label\":i.ariaLabel,\"aria-pressed\":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?\"button\":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?\"_self\":null,rel:!i.to&&i.href?\"nofollow noreferrer noopener\":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:n(n({},i.$listeners),{},{click:function(e){\"boolean\"==typeof i.pressed&&i.$emit(\"update:pressed\",!i.pressed),i.$emit(\"click\",e),null==o||o(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[l?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":i.ariaHidden}},[i.$slots.icon]):null,c?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=a(3379),l=a.n(c),d=a(7795),m=a.n(d),u=a(569),p=a.n(u),h=a(3565),g=a.n(h),A=a(9216),v=a.n(A),k=a(4589),f=a.n(k),y=a(7294),C={};C.styleTagTransform=f(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=m(),C.insertStyleElement=v();l()(y.Z,C);y.Z&&y.Z.locals&&y.Z.locals;var b=a(1900),w=a(2102),P=a.n(w),S=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof P()&&P()(S);const N=S.exports},998:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function i(e,t,a){return(t=function(e){var t=function(e,t){if(\"object\"!==o(e)||null===e)return e;var a=e[Symbol.toPrimitive];if(void 0!==a){var i=a.call(e,t||\"default\");if(\"object\"!==o(i))return i;throw new TypeError(\"@@toPrimitive must return a primitive value.\")}return(\"string\"===t?String:Number)(e)}(e,\"string\");return\"symbol\"===o(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}a.d(t,{default:()=>V});var n=a(6492),r=a(1205),s=a(932);const c={methods:{n:s.n,t:s.t}},l=require(\"vue-material-design-icons/CheckboxBlankOutline.vue\");var d=a.n(l);const m=require(\"vue-material-design-icons/MinusBox.vue\");var u=a.n(m);const p=require(\"vue-material-design-icons/CheckboxMarked.vue\");var h=a.n(p);const g=require(\"vue-material-design-icons/RadioboxMarked.vue\");var A=a.n(g);const v=require(\"vue-material-design-icons/RadioboxBlank.vue\");var k=a.n(v);const f=require(\"vue-material-design-icons/ToggleSwitchOff.vue\");var y=a.n(f);const C=require(\"vue-material-design-icons/ToggleSwitch.vue\");var b=a.n(C);function w(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[\"@@iterator\"])return Array.from(e)}(e)||function(e,t){if(!e)return;if(\"string\"==typeof e)return P(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===a&&e.constructor&&(a=e.constructor.name);if(\"Map\"===a||\"Set\"===a)return Array.from(e);if(\"Arguments\"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a))return P(e,t)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,o=new Array(t);a-1:this.checked===this.value:!0===this.checked},checkboxRadioIconElement:function(){return this.type===N?this.isChecked?A():k():this.type===x?this.isChecked?b():y():this.indeterminate?u():this.isChecked?h():d()}},mounted:function(){if(this.name&&this.type===S&&!Array.isArray(this.checked))throw new Error(\"When using groups of checkboxes, the updated value will be an array.\");if(this.name&&this.type===x)throw new Error(\"Switches are not made to be used for data sets. Please use checkboxes instead.\");if(\"boolean\"!=typeof this.checked&&this.type===x)throw new Error(\"Switches can only be used with boolean as checked prop.\")},methods:{onToggle:function(){if(!this.disabled)if(this.type!==N)if(this.type!==x)if(\"boolean\"!=typeof this.checked){var e=this.getInputsSet().filter((function(e){return e.checked})).map((function(e){return e.value}));this.$emit(\"update:checked\",e)}else this.$emit(\"update:checked\",!this.isChecked);else this.$emit(\"update:checked\",!this.isChecked);else this.$emit(\"update:checked\",this.value)},getInputsSet:function(){return w(document.getElementsByName(this.name))}}};var O=a(3379),_=a.n(O),B=a(7795),z=a.n(B),F=a(569),M=a.n(F),T=a(3565),D=a.n(T),G=a(9216),R=a.n(G),q=a(4589),U=a.n(q),L=a(6267),$={};$.styleTagTransform=U(),$.setAttributes=D(),$.insert=M().bind(null,\"head\"),$.domAPI=z(),$.insertStyleElement=R();_()(L.Z,$);L.Z&&L.Z.locals&&L.Z.locals;var I=a(1900),H=a(3768),W=a.n(H),Z=(0,I.Z)(E,(function(){var e,t=this,a=t._self._c;return a(t.wrapperElement,{tag:\"component\",staticClass:\"checkbox-radio-switch\",class:(e={},i(e,\"checkbox-radio-switch-\"+t.type,t.type),i(e,\"checkbox-radio-switch--checked\",t.isChecked),i(e,\"checkbox-radio-switch--disabled\",t.disabled),i(e,\"checkbox-radio-switch--indeterminate\",t.indeterminate),i(e,\"checkbox-radio-switch--button-variant\",t.buttonVariant),i(e,\"checkbox-radio-switch--button-variant-v-grouped\",t.buttonVariant&&\"vertical\"===t.buttonVariantGrouped),i(e,\"checkbox-radio-switch--button-variant-h-grouped\",t.buttonVariant&&\"horizontal\"===t.buttonVariantGrouped),e),style:t.cssVars},[a(\"input\",t._g(t._b({staticClass:\"checkbox-radio-switch__input\",attrs:{id:t.id,disabled:t.disabled,type:t.inputType},domProps:{value:t.value}},\"input\",t.inputProps,!1),t.inputListeners)),t._v(\" \"),a(\"label\",{staticClass:\"checkbox-radio-switch__label\",attrs:{for:t.id}},[a(\"div\",{staticClass:\"checkbox-radio-switch__icon\"},[t._t(\"icon\",(function(){return[t.loading?a(\"NcLoadingIcon\"):t.buttonVariant?t._e():a(t.checkboxRadioIconElement,{tag:\"component\",attrs:{size:t.size}})]}),{checked:t.isChecked,loading:t.loading})],2),t._v(\" \"),a(\"span\",{staticClass:\"checkbox-radio-switch__label-text\"},[t._t(\"default\")],2)])])}),[],!1,null,\"51081647\",null);\"function\"==typeof W()&&W()(Z);const V=Z.exports},9462:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>b});const o={name:\"NcEmptyContent\",props:{name:{type:String,default:\"\"},description:{type:String,default:\"\"}},computed:{hasName:function(){return\"\"!==this.name},hasDescription:function(){var e;return\"\"!==this.description||(null===(e=this.$slots.description)||void 0===e?void 0:e[0])}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(5886),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900),f=a(9258),y=a.n(f),C=(0,k.Z)(o,(function(){var e=this,t=e._self._c;return t(\"div\",{staticClass:\"empty-content\",attrs:{role:\"note\"}},[e.$slots.icon?t(\"div\",{staticClass:\"empty-content__icon\",attrs:{\"aria-hidden\":\"true\"}},[e._t(\"icon\")],2):e._e(),e._v(\" \"),e._t(\"name\",(function(){return[e.hasName?t(\"h2\",{staticClass:\"empty-content__name\"},[e._v(\"\\n\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\")]):e._e()]})),e._v(\" \"),e.hasDescription?t(\"p\",[e._t(\"description\",(function(){return[e._v(\"\\n\\t\\t\\t\"+e._s(e.description)+\"\\n\\t\\t\")]}))],2):e._e(),e._v(\" \"),e.$slots.action?t(\"div\",{staticClass:\"empty-content__action\"},[e._t(\"action\")],2):e._e()],2)}),[],!1,null,\"048f418c\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},6492:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>b});const o={name:\"NcLoadingIcon\",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return[\"auto\",\"light\",\"dark\"].includes(e)},default:\"auto\"},name:{type:String,default:\"\"}},computed:{colors:function(){var e=[\"#777\",\"#CCC\"];return\"light\"===this.appearance?e:\"dark\"===this.appearance?e.reverse():[\"var(--color-loading-light)\",\"var(--color-loading-dark)\"]}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(8502),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900),f=a(9280),y=a.n(f),C=(0,k.Z)(o,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"material-design-icon loading-icon\",attrs:{\"aria-label\":e.name,role:\"img\"}},[t(\"svg\",{attrs:{width:e.size,height:e.size,viewBox:\"0 0 24 24\"}},[t(\"path\",{attrs:{fill:e.colors[0],d:\"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z\"}}),e._v(\" \"),t(\"path\",{attrs:{fill:e.colors[1],d:\"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z\"}},[e.name?t(\"title\",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,\"27fa1197\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},2297:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>E});var o=a(9454),i=a(4505),n=a(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,a=t.hasOwnProperty,o=Object.defineProperty||function(e,t,a){e[t]=a.value},i=\"function\"==typeof Symbol?Symbol:{},n=i.iterator||\"@@iterator\",c=i.asyncIterator||\"@@asyncIterator\",l=i.toStringTag||\"@@toStringTag\";function d(e,t,a){return Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},\"\")}catch(e){d=function(e,t,a){return e[t]=a}}function m(e,t,a,i){var n=t&&t.prototype instanceof h?t:h,r=Object.create(n.prototype),s=new x(i||[]);return o(r,\"_invoke\",{value:w(e,a,s)}),r}function u(e,t,a){try{return{type:\"normal\",arg:e.call(t,a)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=m;var p={};function h(){}function g(){}function A(){}var v={};d(v,n,(function(){return this}));var k=Object.getPrototypeOf,f=k&&k(k(j([])));f&&f!==t&&a.call(f,n)&&(v=f);var y=A.prototype=h.prototype=Object.create(v);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(o,n,s,c){var l=u(e[o],e,n);if(\"throw\"!==l.type){var d=l.arg,m=d.value;return m&&\"object\"==r(m)&&a.call(m,\"__await\")?t.resolve(m.__await).then((function(e){i(\"next\",e,s,c)}),(function(e){i(\"throw\",e,s,c)})):t.resolve(m).then((function(e){d.value=e,s(d)}),(function(e){return i(\"throw\",e,s,c)}))}c(l.arg)}var n;o(this,\"_invoke\",{value:function(e,a){function o(){return new t((function(t,o){i(e,a,t,o)}))}return n=n?n.then(o,o):o()}})}function w(e,t,a){var o=\"suspendedStart\";return function(i,n){if(\"executing\"===o)throw new Error(\"Generator is already running\");if(\"completed\"===o){if(\"throw\"===i)throw n;return E()}for(a.method=i,a.arg=n;;){var r=a.delegate;if(r){var s=P(r,a);if(s){if(s===p)continue;return s}}if(\"next\"===a.method)a.sent=a._sent=a.arg;else if(\"throw\"===a.method){if(\"suspendedStart\"===o)throw o=\"completed\",a.arg;a.dispatchException(a.arg)}else\"return\"===a.method&&a.abrupt(\"return\",a.arg);o=\"executing\";var c=u(e,t,a);if(\"normal\"===c.type){if(o=a.done?\"completed\":\"suspendedYield\",c.arg===p)continue;return{value:c.arg,done:a.done}}\"throw\"===c.type&&(o=\"completed\",a.method=\"throw\",a.arg=c.arg)}}}function P(e,t){var a=t.method,o=e.iterator[a];if(void 0===o)return t.delegate=null,\"throw\"===a&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,P(e,t),\"throw\"===t.method)||\"return\"!==a&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+a+\"' method\")),p;var i=u(o,e.iterator,t.arg);if(\"throw\"===i.type)return t.method=\"throw\",t.arg=i.arg,t.delegate=null,p;var n=i.arg;return n?n.done?(t[e.resultName]=n.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):n:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(S,this),this.reset(!0)}function j(e){if(e){var t=e[n];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function t(){for(;++o=0;--i){var n=this.tryEntries[i],r=n.completion;if(\"root\"===n.tryLoc)return o(\"end\");if(n.tryLoc<=this.prev){var s=a.call(n,\"catchLoc\"),c=a.call(n,\"finallyLoc\");if(s&&c){if(this.prev=0;--o){var i=this.tryEntries[o];if(i.tryLoc<=this.prev&&a.call(i,\"finallyLoc\")&&this.prev=0;--t){var a=this.tryEntries[t];if(a.finallyLoc===e)return this.complete(a.completion,a.afterLoc),N(a),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var a=this.tryEntries[t];if(a.tryLoc===e){var o=a.completion;if(\"throw\"===o.type){var i=o.arg;N(a)}return i}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,a){return this.delegate={iterator:j(e),resultName:t,nextLoc:a},\"next\"===this.method&&(this.arg=void 0),p}},e}function c(e,t,a,o,i,n,r){try{var s=e[n](r),c=s.value}catch(e){return void a(e)}s.done?t(c):Promise.resolve(c).then(o,i)}const l={name:\"NcPopover\",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var a,o;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(o=null===(a=t.$refs.popover)||void 0===a||null===(a=a.$refs.popperContent)||void 0===a?void 0:a.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,i.createFocusTrap)(o,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,n.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,a=arguments;return new Promise((function(o,i){var n=e.apply(t,a);function r(e){c(n,o,i,r,s,\"next\",e)}function s(e){c(n,o,i,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},d=l;var m=a(3379),u=a.n(m),p=a(7795),h=a.n(p),g=a(569),A=a.n(g),v=a(3565),k=a.n(v),f=a(9216),y=a.n(f),C=a(4589),b=a.n(C),w=a(1625),P={};P.styleTagTransform=b(),P.setAttributes=k(),P.insert=A().bind(null,\"head\"),P.domAPI=h(),P.insertStyleElement=y();u()(w.Z,P);w.Z&&w.Z.locals&&w.Z.locals;var S=a(1900),N=a(2405),x=a.n(N),j=(0,S.Z)(d,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof x()&&x()(j);const E=j.exports},3329:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>i});const o={name:\"NcVNodes\",props:{vnodes:{type:[Array,Object],default:null}},render:function(e){var t,a,o;return this.vnodes||(null===(t=this.$slots)||void 0===t?void 0:t.default)||(null===(a=this.$scopedSlots)||void 0===a||null===(o=a.default)||void 0===o?void 0:o.call(a))}};const i=(0,a(1900).Z)(o,undefined,undefined,!1,null,null,null).exports},8167:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>o});const o={inserted:function(e){e.focus()}}},640:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>r});const o=require(\"linkify-string\");var i=a.n(o);const n=function(e){return i()(e,{defaultProtocol:\"https\",target:\"_blank\",className:\"external linkified\",attributes:{rel:\"nofollow noopener noreferrer\"}})};const r=function(e,t){var a;!0===(null===(a=t.value)||void 0===a?void 0:a.linkify)&&(e.innerHTML=n(t.value.text))}},336:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>k});var o=a(9454),i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(8384),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;o.options.themes.tooltip.html=!1,o.options.themes.tooltip.delay={show:500,hide:200},o.options.themes.tooltip.distance=10,o.options.themes.tooltip[\"arrow-padding\"]=3;const k=o.VTooltip},932:(e,t,a)=>{\"use strict\";a.d(t,{n:()=>r,t:()=>s});var o=a(7931),i=(0,o.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var a in e.translations)e.translations[a].pluralId?t[a]={msgid:a,msgid_plural:e.translations[a].pluralId,msgstr:e.translations[a].msgstr}:t[a]={msgid:a,msgstr:[e.translations[a]]};i.addTranslation(e.locale,{translations:{\"\":t}})}));var n=i.build(),r=n.ngettext.bind(n),s=n.gettext.bind(n)},1205:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>o});const o=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},1206:(e,t,a)=>{\"use strict\";a.d(t,{L:()=>o});var o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/directives/Tooltip/index.scss\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n/**\\n* @copyright Copyright (c) 2016, John Molakvoæ \\n* @copyright Copyright (c) 2016, Robin Appelman \\n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \\n* @copyright Copyright (c) 2016, Erik Pellikka \\n* @copyright Copyright (c) 2015, Vincent Petry \\n*\\n* Bootstrap (http://getbootstrap.com)\\n* SCSS copied from version 3.3.5\\n* Copyright 2011-2015 Twitter, Inc.\\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n*/\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-tooltip {\\n\\t&.v-popper__popper {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tright: auto;\\n\\t\\tleft: auto;\\n\\t\\tdisplay: block;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\ttext-align: left;\\n\\t\\ttext-align: start;\\n\\t\\topacity: 0;\\n\\t\\tline-height: 1.6;\\n\\n\\t\\tline-break: auto;\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t// TOP\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// BOTTOM\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// RIGHT\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tright: 100%;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// LEFT\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tleft: 100%;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// HIDDEN / SHOWN\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity .15s, visibility .15s;\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity .15s;\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n\\n\\t// CONTENT\\n\\t.v-popper__inner {\\n\\t\\tmax-width: 350px;\\n\\t\\tpadding: 5px 8px;\\n\\t\\ttext-align: center;\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder-radius: var(--border-radius);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t}\\n\\n\\t// ARROW\\n\\t.v-popper__arrow-container {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 1;\\n\\t\\twidth: 0;\\n\\t\\theight: 0;\\n\\t\\tmargin: 0;\\n\\t\\tborder-style: solid;\\n\\t\\tborder-color: transparent;\\n\\t\\tborder-width: $arrow-width;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},2365:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-1c6914a9]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar[data-v-1c6914a9]{z-index:1500;top:0;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:100%;border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:focus{opacity:1;background-color:rgba(127,127,127,.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1c6914a9]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1c6914a9]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1c6914a9]{padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px;padding-top:10px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{z-index:3;position:absolute;top:9px;left:-44px;gap:0}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1c6914a9]{top:6px;right:50px;background-color:rgba(0,0,0,0);position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1c6914a9]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1c6914a9]{padding-right:94px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1c6914a9]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1c6914a9]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1c6914a9]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1c6914a9]{position:relative;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:18px 6px 18px 9px;gap:0 4px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1c6914a9]{padding-left:6px}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__mainname-form[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__mainname-form[data-v-1c6914a9]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__subname[data-v-1c6914a9]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]{box-shadow:none}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]:not([aria-pressed=true]):hover{box-shadow:none;background-color:var(--color-background-hover)}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container[data-v-1c6914a9]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container[data-v-1c6914a9]{display:flex;align-items:center;min-height:44px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9] .linkified{cursor:pointer;text-decoration:underline;margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form[data-v-1c6914a9]{display:flex;flex:1 1 auto;align-items:center}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form input.app-sidebar-header__mainname-input[data-v-1c6914a9]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__menu[data-v-1c6914a9]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,.25);margin-left:5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{padding:0;opacity:.7;font-size:var(--default-font-size)}.app-sidebar .app-sidebar-header__description[data-v-1c6914a9]{display:flex;align-items:center;margin:0 10px}@media only screen and (max-width: 768px){.app-sidebar[data-v-1c6914a9]{width:100vw;max-width:100vw}}.slide-right-leave-active[data-v-1c6914a9],.slide-right-enter-active[data-v-1c6914a9]{transition-duration:var(--animation-quick);transition-property:max-width,min-width}.slide-right-enter-to[data-v-1c6914a9],.slide-right-leave[data-v-1c6914a9]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1c6914a9],.slide-right-leave-to[data-v-1c6914a9]{min-width:0 !important;max-width:0 !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebar.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCYD,8BACC,YAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,iBAAA,CACA,eAAA,CACA,qBAAA,CACA,aAAA,CACA,UAAA,CACA,eA5BmB,CA6BnB,eA5BmB,CA6BnB,WAAA,CACA,yCAAA,CACA,uCAAA,CAGC,sEACC,iBAAA,CACA,WAAA,CACA,OA1BmB,CA2BnB,SA3BmB,CA4BnB,UCjBc,CDkBd,WClBc,CDmBd,UCDc,CDEd,kBAAA,CACA,qOAGC,SCLW,CDMX,sCCFsB,CDQvB,qHACC,kBAAA,CAEA,iJACC,SAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,iBAAA,CACA,aAAA,CAED,+IACC,cAAA,CACA,aAAA,CACA,WAAA,CACA,kBAAA,CACA,gBAlE2B,CAoE3B,yLACC,kBAAA,CAGD,qLACC,SAAA,CACA,iBAAA,CACA,OAAA,CACA,UAAA,CACA,KAAA,CAED,yKACC,OAxEgB,CAyEhB,UAAA,CACA,8BAAA,CACA,iBAAA,CASH,kHACC,iBAAA,CACA,OAtFkB,CAuFlB,UAAA,CAGD,kHACC,kBAAA,CAEA,4JACC,kBAAA,CAMH,4EACC,YAAA,CACA,qBAAA,CAID,0DACC,UAAA,CACA,YAAA,CACA,gBAAA,CACA,2BAAA,CACA,0BAAA,CACA,uBAAA,CACA,uEACC,cAAA,CAKF,wDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,kBAAA,CACA,yBAAA,CACA,SAAA,CAGA,8EACC,gBAAA,CAGD,wNAEC,eAAA,CACA,kBAAA,CAGD,6GACC,eAAA,CAGD,8FACC,YAAA,CACA,WCtIa,CDuIb,UCvIa,CDwIb,sBAAA,CACA,aAAA,CAEA,wHAEC,eAAA,CACA,uJACC,eAAA,CACA,8CAAA,CAMH,4FACC,aAAA,CACA,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAEA,oIACC,YAAA,CACA,kBAAA,CACA,eChKY,CDmKZ,kKACC,SAAA,CACA,eAAA,CACA,cAAA,CACA,gBAtLa,CAyLb,6KACC,cAAA,CACA,yBAAA,CACA,QAAA,CAIF,uKACC,YAAA,CACA,aAAA,CACA,kBAAA,CAEA,gNACC,aAAA,CACA,QAAA,CACA,WA3Mc,CA4Md,cAAA,CACA,gBAAA,CAKF,8JACC,WCjMW,CDkMX,UClMW,CDmMX,kBAAA,CACA,sCC7KoB,CD8KpB,eAAA,CAKF,mPAEC,eAAA,CACA,UAAA,CACA,QAAA,CACA,kBAAA,CACA,sBAAA,CAID,yHACC,SAAA,CACA,UCpMY,CDqMZ,kCAAA,CAMH,+DACC,YAAA,CACA,kBAAA,CACA,aAAA,CAMH,0CACC,8BACC,WAAA,CACA,eAAA,CAAA,CAIF,sFAEC,0CAAA,CACA,uCAAA,CAGD,2EAEC,eA5QmB,CA6QnB,eA5QmB,CA+QpB,2EAEC,sBAAA,CACA,sBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n$sidebar-min-width: 300px;\\n$sidebar-max-width: 500px;\\n\\n$desc-vertical-padding: 18px;\\n$desc-vertical-padding-compact: 10px;\\n$desc-input-padding: 7px;\\n\\n// name and subname\\n$desc-name-height: 30px;\\n$desc-subname-height: 22px;\\n$desc-height: $desc-name-height + $desc-subname-height;\\n\\n$top-buttons-spacing: 6px;\\n\\n/*\\n\\tSidebar: to be used within #content\\n\\tapp-content will be shrinked properly\\n*/\\n.app-sidebar {\\n\\tz-index: 1500;\\n\\ttop: 0;\\n\\tright: 0;\\n\\tdisplay: flex;\\n\\toverflow-x: hidden;\\n\\toverflow-y: auto;\\n\\tflex-direction: column;\\n\\tflex-shrink: 0;\\n\\twidth: 27vw;\\n\\tmin-width: $sidebar-min-width;\\n\\tmax-width: $sidebar-max-width;\\n\\theight: 100%;\\n\\tborder-left: 1px solid var(--color-border);\\n\\tbackground: var(--color-main-background);\\n\\n\\t.app-sidebar-header {\\n\\t\\t> .app-sidebar__close {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 100;\\n\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\tright: $top-buttons-spacing;\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\tborder-radius: math.div($clickable-area, 2);\\n\\t\\t\\t&:hover,\\n\\t\\t\\t&:active,\\n\\t\\t\\t&:focus {\\n\\t\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\t\\tbackground-color: $action-background-hover;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Compact mode only affects a sidebar with a figure\\n\\t\\t&--compact.app-sidebar-header--with-figure {\\n\\t\\t\\t.app-sidebar-header__info {\\n\\t\\t\\t\\tflex-direction: row;\\n\\n\\t\\t\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\t\\t\\tz-index: 2;\\n\\t\\t\\t\\t\\twidth: $desc-height + $desc-vertical-padding;\\n\\t\\t\\t\\t\\theight: $desc-height + $desc-vertical-padding;\\n\\t\\t\\t\\t\\tmargin: math.div($desc-vertical-padding, 2);\\n\\t\\t\\t\\t\\tborder-radius: 3px;\\n\\t\\t\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t.app-sidebar-header__desc {\\n\\t\\t\\t\\t\\tpadding-left: 0;\\n\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\tmin-width: 0;\\n\\t\\t\\t\\t\\tpadding-right: 2 * $clickable-area + $top-buttons-spacing;\\n\\t\\t\\t\\t\\tpadding-top: $desc-vertical-padding-compact;\\n\\n\\t\\t\\t\\t\\t&.app-sidebar-header__desc--without-actions {\\n\\t\\t\\t\\t\\t\\tpadding-right: #{$clickable-area + $top-buttons-spacing};\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t.app-sidebar-header__tertiary-actions {\\n\\t\\t\\t\\t\\t\\tz-index: 3; // above star\\n\\t\\t\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\t\\t\\ttop: math.div($desc-vertical-padding, 2);\\n\\t\\t\\t\\t\\t\\tleft: -1 * $clickable-area;\\n\\t\\t\\t\\t\\t\\tgap: 0; // override gap\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\t\\t\\t\\tright: $clickable-area + $top-buttons-spacing; // left of the close button\\n\\t\\t\\t\\t\\t\\tbackground-color: transparent;\\n\\t\\t\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// sidebar without figure\\n\\t\\t&:not(.app-sidebar-header--with-figure) {\\n\\t\\t\\t// align the menu with the close button\\n\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\t\\tright: $top-buttons-spacing + $clickable-area;\\n\\t\\t\\t}\\n\\t\\t\\t// increase the padding to not overlap the menu\\n\\t\\t\\t.app-sidebar-header__desc {\\n\\t\\t\\t\\tpadding-right: #{$clickable-area * 2 + $top-buttons-spacing};\\n\\n\\t\\t\\t\\t&.app-sidebar-header__desc--without-actions {\\n\\t\\t\\t\\t\\tpadding-right: #{$clickable-area + $top-buttons-spacing};\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// the container with the figure and the description\\n\\t\\t.app-sidebar-header__info {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t// header background\\n\\t\\t&__figure {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 250px;\\n\\t\\t\\tmax-height: 250px;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\tbackground-position: center;\\n\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t&--with-action {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// description\\n\\t\\t&__desc {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: row;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tpadding: #{$desc-vertical-padding} #{$top-buttons-spacing} #{$desc-vertical-padding} #{math.div($desc-vertical-padding, 2)};\\n\\t\\t\\tgap: 0 4px;\\n\\n\\t\\t\\t// custom overrides\\n\\t\\t\\t&--with-tertiary-action {\\n\\t\\t\\t\\tpadding-left: 6px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--editable .app-sidebar-header__mainname-form,\\n\\t\\t\\t&--with-subname--editable .app-sidebar-header__mainname-form {\\n\\t\\t\\t\\tmargin-top: -2px;\\n\\t\\t\\t\\tmargin-bottom: -2px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--with-subname--editable .app-sidebar-header__subname {\\n\\t\\t\\t\\tmargin-top: -2px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.app-sidebar-header__tertiary-actions {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\tjustify-content: center;\\n\\t\\t\\t\\tflex: 0 0 auto;\\n\\n\\t\\t\\t\\t.app-sidebar-header__star {\\n\\t\\t\\t\\t\\t// Override default Button component styles\\n\\t\\t\\t\\t\\tbox-shadow: none;\\n\\t\\t\\t\\t\\t&:not([aria-pressed='true']):hover {\\n\\t\\t\\t\\t\\t\\tbox-shadow: none;\\n\\t\\t\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t// names\\n\\t\\t\\t.app-sidebar-header__name-container {\\n\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tflex-direction: column;\\n\\t\\t\\t\\tjustify-content: center;\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t.app-sidebar-header__mainname-container {\\n\\t\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t\\tmin-height: $clickable-area;\\n\\n\\t\\t\\t\\t\\t// main name\\n\\t\\t\\t\\t\\t.app-sidebar-header__mainname {\\n\\t\\t\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t\\t\\t\\tmin-height: 30px;\\n\\t\\t\\t\\t\\t\\tfont-size: 20px;\\n\\t\\t\\t\\t\\t\\tline-height: $desc-name-height;\\n\\n\\t\\t\\t\\t\\t\\t// Needs 'deep' as the link is generated by the linkify directive\\n\\t\\t\\t\\t\\t\\t&:deep(.linkified) {\\n\\t\\t\\t\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t\\t\\t\\t\\ttext-decoration: underline;\\n\\t\\t\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t.app-sidebar-header__mainname-form {\\n\\t\\t\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t\\t\\t\\tinput.app-sidebar-header__mainname-input {\\n\\t\\t\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\t\\t\\tpadding: $desc-input-padding;\\n\\t\\t\\t\\t\\t\\t\\tfont-size: 20px;\\n\\t\\t\\t\\t\\t\\t\\tfont-weight: bold;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t// main menu\\n\\t\\t\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\t\\t\\tborder-radius: math.div($clickable-area, 2);\\n\\t\\t\\t\\t\\t\\tbackground-color: $action-background-hover;\\n\\t\\t\\t\\t\\t\\tmargin-left: 5px;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// shared between main and subname\\n\\t\\t\\t\\t.app-sidebar-header__mainname,\\n\\t\\t\\t\\t.app-sidebar-header__subname {\\n\\t\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// subname\\n\\t\\t\\t\\t.app-sidebar-header__subname {\\n\\t\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\t\\t\\tfont-size: var(--default-font-size);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// sidebar description slot\\n\\t\\t&__description {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tmargin: 0 10px;\\n\\t\\t}\\n\\t}\\n}\\n\\n// Make the sidebar full-width on small screens\\n@media only screen and (max-width: 768px) {\\n\\t.app-sidebar {\\n\\t\\twidth: 100vw;\\n\\t\\tmax-width: 100vw;\\n\\t}\\n}\\n\\n.slide-right-leave-active,\\n.slide-right-enter-active {\\n\\ttransition-duration: var(--animation-quick);\\n\\ttransition-property: max-width, min-width;\\n}\\n\\n.slide-right-enter-to,\\n.slide-right-leave {\\n\\tmin-width: $sidebar-min-width;\\n\\tmax-width: $sidebar-max-width;\\n}\\n\\n.slide-right-enter,\\n.slide-right-leave-to {\\n\\tmin-width: 0 !important;\\n\\tmax-width: 0 !important;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},2887:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-header__description button,.app-sidebar-header__description .button,.app-sidebar-header__description input[type=button],.app-sidebar-header__description input[type=submit],.app-sidebar-header__description input[type=reset]{padding:6px 22px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebar.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCHA,4OAIC,gBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// ! slots specific designs, cannot be scoped\\n// if any button inside the description slot, increase visual padding\\n.app-sidebar-header__description {\\n\\tbutton, .button,\\n\\tinput[type='button'],\\n\\tinput[type='submit'],\\n\\tinput[type='reset'] {\\n\\t\\tpadding: 6px 22px;\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},5385:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-3946530b]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-tabs[data-v-3946530b]{display:flex;flex-direction:column;min-height:0;flex:1 1 100%}.app-sidebar-tabs__nav[data-v-3946530b]{display:flex;justify-content:stretch;margin-top:10px;padding:0 4px}.app-sidebar-tabs__tab[data-v-3946530b]{flex:1 1}.app-sidebar-tabs__tab.active[data-v-3946530b]{color:var(--color-primary-element)}.app-sidebar-tabs__tab-caption[data-v-3946530b]{flex:0 1 100%;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:center}.app-sidebar-tabs__tab-icon[data-v-3946530b]{display:flex;align-items:center;justify-content:center;background-size:20px}.app-sidebar-tabs__tab[data-v-3946530b] .checkbox-radio-switch__label{max-width:unset}.app-sidebar-tabs__content[data-v-3946530b]{position:relative;min-height:0;height:100%}.app-sidebar-tabs__content--multiple[data-v-3946530b]>:not(section){display:none}[data-v-3946530b] .checkbox-radio-switch--button-variant.checkbox-radio-switch{border:unset}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebarTabs.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,qBAAA,CACA,YAAA,CACA,aAAA,CAEA,wCACC,YAAA,CACA,uBAAA,CACA,eAAA,CACA,aAAA,CAGD,wCACC,QAAA,CACA,+CACC,kCAAA,CAGD,gDACC,aAAA,CACA,UAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CAGD,6CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,oBAAA,CAID,sEACC,eAAA,CAIF,4CACC,iBAAA,CAEA,YAAA,CACA,WAAA,CAGA,oEACC,YAAA,CAKH,+EACC,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.app-sidebar-tabs {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\tmin-height: 0;\\n\\tflex: 1 1 100%;\\n\\n\\t&__nav {\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: stretch;\\n\\t\\tmargin-top: 10px;\\n\\t\\tpadding: 0 4px;\\n\\t}\\n\\n\\t&__tab {\\n\\t\\tflex: 1 1;\\n\\t\\t&.active {\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t}\\n\\n\\t\\t&-caption {\\n\\t\\t\\tflex: 0 1 100%;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\ttext-align: center;\\n\\t\\t}\\n\\n\\t\\t&-icon {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\tbackground-size: 20px;\\n\\t\\t}\\n\\n\\t\\t// Override max-width to use all available space\\n\\t\\t:deep(.checkbox-radio-switch__label) {\\n\\t\\t\\tmax-width: unset;\\n\\t\\t}\\n\\t}\\n\\n\\t&__content {\\n\\t\\tposition: relative;\\n\\t\\t// take full available height\\n\\t\\tmin-height: 0;\\n\\t\\theight: 100%;\\n\\t\\t// force the use of the tab component if more than one tab\\n\\t\\t// you can just put raw content if you don't use tabs\\n\\t\\t&--multiple > :not(section) {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n}\\n\\n:deep(.checkbox-radio-switch--button-variant.checkbox-radio-switch) {\\n\\tborder: unset;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},7294:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},6267:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-51081647]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-radio-switch[data-v-51081647]{display:flex}.checkbox-radio-switch__input[data-v-51081647]{position:absolute;z-index:-1;opacity:0 !important;width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch__input:focus-visible+label[data-v-51081647]{outline:2px solid var(--color-primary-element) !important}.checkbox-radio-switch__label[data-v-51081647]{display:flex;align-items:center;flex-direction:row;gap:4px;user-select:none;min-height:44px;border-radius:44px;padding:4px 14px;width:100%;max-width:fit-content}.checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch__label *[data-v-51081647]{cursor:pointer}.checkbox-radio-switch__label-text[data-v-51081647]:empty{display:none}.checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element);width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch--disabled .checkbox-radio-switch__label[data-v-51081647]{opacity:.5}.checkbox-radio-switch--disabled .checkbox-radio-switch__label .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-background-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-primary-element-light-hover)}.checkbox-radio-switch-checkbox .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch-switch .checkbox-radio-switch__label[data-v-51081647]{padding:4px 10px}.checkbox-radio-switch-switch:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-text-maxcontrast)}.checkbox-radio-switch-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant.checkbox-radio-switch[data-v-51081647]{border:2px solid var(--color-border-maxcontrast);overflow:hidden}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked[data-v-51081647]{font-weight:bold}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked label[data-v-51081647]{background-color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__label-text[data-v-51081647]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.checkbox-radio-switch--button-variant:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__icon[data-v-51081647]:empty{display:none}.checkbox-radio-switch--button-variant[data-v-51081647]:not(.checkbox-radio-switch--button-variant-v-grouped):not(.checkbox-radio-switch--button-variant-h-grouped),.checkbox-radio-switch--button-variant .checkbox-radio-switch__label[data-v-51081647]{border-radius:calc(var(--default-clickable-area)/2)}.checkbox-radio-switch--button-variant-v-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-basis:100%;max-width:unset}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:last-of-type{border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:last-of-type){border-bottom:0 !important}.checkbox-radio-switch--button-variant-v-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-bottom:2px}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:first-of-type){border-top:0 !important}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:last-of-type{border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:last-of-type){border-right:0 !important}.checkbox-radio-switch--button-variant-h-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-right:2px}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:first-of-type){border-left:0 !important}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label-text[data-v-51081647]{text-align:center}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-direction:column;justify-content:center;width:100%;margin:0;gap:0}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,wCACC,YAAA,CAEA,+CACC,iBAAA,CACA,UAAA,CACA,oBAAA,CACA,sBAAA,CACA,uBAAA,CAGD,mEACC,yDAAA,CAGD,+CACC,YAAA,CACA,kBAAA,CACA,kBAAA,CACA,OAAA,CACA,gBAAA,CACA,eCEe,CDDf,kBCCe,CAAA,gBAAA,CDEf,UAAA,CAEA,qBAAA,CAEA,gGACC,cAAA,CAGD,0DAEC,YAAA,CAIF,gDACC,kCAAA,CACA,sBAAA,CACA,uBAAA,CAGD,gFACC,UCNiB,CDOjB,+GACC,4BAAA,CAIF,2SAEC,8CAAA,CAGD,6PAEC,yDAAA,CAIA,4JACC,gBAAA,CAKF,mHACC,mCAAA,CAID,6IACC,wCAAA,CAOD,8EACC,gDAAA,CACA,eAAA,CAEA,uFACC,gBAAA,CAEA,6FACC,mDAAA,CAMH,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA,CACA,UAAA,CAID,4HACC,4BAAA,CAID,2FACC,YAAA,CAGD,0PAEC,mDArCe,CAyChB,gGACC,eAAA,CAEA,eAAA,CAGA,gFACC,kEA9CoB,CA+CpB,mEA/CoB,CAiDrB,+EACC,qEAlDoB,CAmDpB,sEAnDoB,CAuDrB,qFACC,0BAAA,CACA,mHACC,iBAAA,CAGF,sFACC,uBAAA,CAMD,gFACC,kEArEoB,CAsEpB,qEAtEoB,CAwErB,+EACC,mEAzEoB,CA0EpB,sEA1EoB,CA8ErB,qFACC,yBAAA,CACA,mHACC,gBAAA,CAGF,sFACC,wBAAA,CAGF,qGACC,iBAAA,CAED,gGACC,qBAAA,CACA,sBAAA,CACA,UAAA,CACA,QAAA,CACA,KAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.checkbox-radio-switch {\\n\\tdisplay: flex;\\n\\n\\t&__input {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: -1;\\n\\t\\topacity: 0 !important; // We need !important, or it gets overwritten by server style\\n\\t\\twidth: var(--icon-size);\\n\\t\\theight: var(--icon-size);\\n\\t}\\n\\n\\t&__input:focus-visible + label {\\n\\t\\toutline: 2px solid var(--color-primary-element) !important;\\n\\t}\\n\\n\\t&__label {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tflex-direction: row;\\n\\t\\tgap: 4px;\\n\\t\\tuser-select: none;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tborder-radius: $clickable-area;\\n\\t\\tpadding: 4px $icon-margin;\\n\\t\\t// Set to 100% to make text overflow work on button style\\n\\t\\twidth: 100%;\\n\\t\\t// but restrict to content so plain checkboxes / radio switches do not expand\\n\\t\\tmax-width: fit-content;\\n\\n\\t\\t&, * {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t}\\n\\n\\t\\t&-text:empty {\\n\\t\\t\\t// hide text if empty to ensure checkbox outline is a circle instead of oval\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t&__icon > * {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t\\twidth: var(--icon-size);\\n\\t\\theight: var(--icon-size);\\n\\t}\\n\\n\\t&--disabled &__label {\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t.checkbox-radio-switch__icon > * {\\n\\t\\t\\tcolor: var(--color-main-text)\\n\\t\\t}\\n\\t}\\n\\n\\t&:not(&--disabled, &--checked):focus-within &__label,\\n\\t&:not(&--disabled, &--checked) &__label:hover {\\n\\t\\tbackground-color: var(--color-background-hover);\\n\\t}\\n\\n\\t&--checked:not(&--disabled):focus-within &__label,\\n\\t&--checked:not(&--disabled) &__label:hover {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&-checkbox, &-switch {\\n\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\tpadding: 4px 10px; // we use 24x24px sized MDI icons for checkbox and radiobutton -> (44px - 24 px) / 2 = 10px\\n\\t\\t}\\n\\t}\\n\\n\\t// Switch specific rules\\n\\t&-switch:not(&--checked) &__icon > * {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t// If switch is checked AND disabled, use the fade primary colour\\n\\t&-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked &__icon > * {\\n\\t\\tcolor: var(--color-primary-element-light);\\n\\t}\\n\\n\\t$border-radius: calc(var(--default-clickable-area) / 2);\\n\\t// keep inner border width in mind\\n\\t$border-radius-outer: calc($border-radius + 2px);\\n\\n\\t&--button-variant.checkbox-radio-switch {\\n\\t\\tborder: 2px solid var(--color-border-maxcontrast);\\n\\t\\toverflow: hidden;\\n\\n\\t\\t&--checked {\\n\\t\\t\\tfont-weight: bold;\\n\\n\\t\\t\\tlabel {\\n\\t\\t\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t// Text overflow of button style\\n\\t&--button-variant &__label-text {\\n\\t\\toverflow: hidden;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\twhite-space: nowrap;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t// Set icon color for non active elements to main text color\\n\\t&--button-variant:not(&--checked) &__icon > * {\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t// Hide icon container if empty to remove virtual padding\\n\\t&--button-variant &__icon:empty {\\n\\t\\tdisplay: none;\\n\\t}\\n\\n\\t&--button-variant:not(&--button-variant-v-grouped):not(&--button-variant-h-grouped),\\n\\t&--button-variant &__label {\\n\\t\\tborder-radius: $border-radius;\\n\\t}\\n\\n\\t/* Special rules for vertical button groups */\\n\\t&--button-variant-v-grouped &__label {\\n\\t\\tflex-basis: 100%;\\n\\t\\t// vertically grouped buttons should all have the same width\\n\\t\\tmax-width: unset;\\n\\t}\\n\\t&--button-variant-v-grouped {\\n\\t\\t&:first-of-type {\\n\\t\\t\\tborder-top-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-top-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\t\\t&:last-of-type {\\n\\t\\t\\tborder-bottom-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\n\\t\\t// remove borders between elements\\n\\t\\t&:not(:last-of-type) {\\n\\t\\t\\tborder-bottom: 0!important;\\n\\t\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\t\\tmargin-bottom: 2px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t&:not(:first-of-type) {\\n\\t\\t\\tborder-top: 0!important;\\n\\t\\t}\\n\\t}\\n\\n\\t/* Special rules for horizontal button groups */\\n\\t&--button-variant-h-grouped {\\n\\t\\t&:first-of-type {\\n\\t\\t\\tborder-top-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-left-radius: $border-radius-outer;\\n\\t\\t}\\n\\t\\t&:last-of-type {\\n\\t\\t\\tborder-top-right-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\n\\t\\t// remove borders between elements\\n\\t\\t&:not(:last-of-type) {\\n\\t\\t\\tborder-right: 0!important;\\n\\t\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\t\\tmargin-right: 2px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t&:not(:first-of-type) {\\n\\t\\t\\tborder-left: 0!important;\\n\\t\\t}\\n\\t}\\n\\t&--button-variant-h-grouped &__label-text {\\n\\t\\ttext-align: center;\\n\\t}\\n\\t&--button-variant-h-grouped &__label {\\n\\t\\tflex-direction: column;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t\\tmargin: 0;\\n\\t\\tgap: 0;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},5886:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-048f418c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.empty-content[data-v-048f418c]{display:flex;align-items:center;flex-direction:column;margin-top:20vh}.modal-wrapper .empty-content[data-v-048f418c]{margin-top:5vh;margin-bottom:5vh}.empty-content__icon[data-v-048f418c]{display:flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-repeat:no-repeat;background-position:center;background-size:64px}.empty-content__icon[data-v-048f418c] svg{width:64px;height:64px;max-width:64px;max-height:64px}.empty-content__name[data-v-048f418c]{margin-bottom:10px;text-align:center}.empty-content__action[data-v-048f418c]{margin-top:8px}.modal-wrapper .empty-content__action[data-v-048f418c]{margin-top:20px;display:flex}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcEmptyContent/NcEmptyContent.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,gCACC,YAAA,CACA,kBAAA,CACA,qBAAA,CACA,eAAA,CAEA,+CACC,cAAA,CACA,iBAAA,CAGD,sCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kBAAA,CACA,UAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,0CACC,UAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CAIF,sCACC,kBAAA,CACA,iBAAA,CAGD,wCACC,cAAA,CAEA,uDACC,eAAA,CACA,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.empty-content {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tflex-direction: column;\\n\\tmargin-top: 20vh;\\n\\n\\t.modal-wrapper & {\\n\\t\\tmargin-top: 5vh;\\n\\t\\tmargin-bottom: 5vh;\\n\\t}\\n\\n\\t&__icon {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 64px;\\n\\t\\theight: 64px;\\n\\t\\tmargin: 0 auto 15px;\\n\\t\\topacity: .4;\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-position: center;\\n\\t\\tbackground-size: 64px;\\n\\n\\t\\t:deep(svg) {\\n\\t\\t\\twidth: 64px;\\n\\t\\t\\theight: 64px;\\n\\t\\t\\tmax-width: 64px;\\n\\t\\t\\tmax-height: 64px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\tmargin-bottom: 10px;\\n\\t\\ttext-align: center;\\n\\t}\\n\\n\\t&__action {\\n\\t\\tmargin-top: 8px;\\n\\n\\t\\t.modal-wrapper & {\\n\\t\\t\\tmargin-top: 20px;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t}\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},8502:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.loading-icon svg{\\n\\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a=\"\",o=void 0!==t[5];return t[4]&&(a+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(a+=\"@media \".concat(t[2],\" {\")),o&&(a+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),a+=e(t),o&&(a+=\"}\"),t[2]&&(a+=\"}\"),t[4]&&(a+=\"}\"),a})).join(\"\")},t.i=function(e,a,o,i,n){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(o)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=n),a&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=a):d[2]=a),i&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=i):d[4]=\"\".concat(i)),t.push(d))}},t}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],a=e[3];if(!a)return t;if(\"function\"==typeof btoa){var o=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),i=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(o),n=\"/*# \".concat(i,\" */\");return[t].concat([n]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function a(e){for(var a=-1,o=0;o{\"use strict\";var t={};e.exports=function(e,a){var o=function(e){if(void 0===t[e]){var a=document.querySelector(e);if(window.HTMLIFrameElement&&a instanceof window.HTMLIFrameElement)try{a=a.contentDocument.head}catch(e){a=null}t[e]=a}return t[e]}(e);if(!o)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");o.appendChild(a)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,a)=>{\"use strict\";e.exports=function(e){var t=a.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(a){!function(e,t,a){var o=\"\";a.supports&&(o+=\"@supports (\".concat(a.supports,\") {\")),a.media&&(o+=\"@media \".concat(a.media,\" {\"));var i=void 0!==a.layer;i&&(o+=\"@layer\".concat(a.layer.length>0?\" \".concat(a.layer):\"\",\" {\")),o+=a.css,i&&(o+=\"}\"),a.media&&(o+=\"}\"),a.supports&&(o+=\"}\");var n=a.sourceMap;n&&\"undefined\"!=typeof btoa&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(n)))),\" */\")),t.styleTagTransform(o,e,t.options)}(t,e,a)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},2112:()=>{},2102:()=>{},3768:()=>{},9258:()=>{},9280:()=>{},2405:()=>{},1900:(e,t,a)=>{\"use strict\";function o(e,t,a,o,i,n,r,s){var c,l=\"function\"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),o&&(l.functional=!0),n&&(l._scopeId=\"data-v-\"+n),r?(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(r)},l._ssrRegister=c):i&&(c=s?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var d=l.render;l.render=function(e,t){return c.call(t),d(e,t)}}else{var m=l.beforeCreate;l.beforeCreate=m?[].concat(m,c):[c]}return{exports:e,options:l}}a.d(t,{Z:()=>o})},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function a(o){var i=t[o];if(void 0!==i)return i.exports;var n=t[o]={id:o,exports:{}};return e[o](n,n.exports,a),n.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var o in t)a.o(t,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},a.nc=void 0;var o={};return(()=>{\"use strict\";a.r(o),a.d(o,{default:()=>H});var e=a(3329);const t={name:\"NcAppSidebarTabs\",components:{NcCheckboxRadioSwitch:a(998).default,NcVNodes:e.default},provide:function(){var e=this;return{registerTab:this.registerTab,unregisterTab:this.unregisterTab,getActiveTab:function(){return e.activeTab}}},props:{active:{type:String,default:\"\"}},emits:[\"update:active\"],data:function(){return{tabs:[],activeTab:\"\"}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(t){return t.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()}},methods:{setActive:function(e){this.activeTab=e,this.$emit(\"update:active\",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&this.setActive(this.tabs[this.currentTabIndex-1].id),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex0?this.tabs[0].id:\"\"},registerTab:function(e){this.tabs.push(e),this.tabs.sort((function(e,t){return e.order===t.order?OC.Util.naturalSortCompare(e.name,t.name):e.order-t.order})),this.updateActive()},unregisterTab:function(e){var t=this.tabs.findIndex((function(t){return t.id===e}));-1!==t&&this.tabs.splice(t,1),this.activeTab===e&&this.updateActive()}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(5385),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900);const f=(0,k.Z)(t,(function(){var e=this,t=e._self._c;return t(\"div\",{staticClass:\"app-sidebar-tabs\"},[e.hasMultipleTabs?t(\"div\",{staticClass:\"app-sidebar-tabs__nav\",attrs:{role:\"tablist\"},on:{keydown:[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"left\",37,t.key,[\"Left\",\"ArrowLeft\"])||\"button\"in t&&0!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPreviousTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"right\",39,t.key,[\"Right\",\"ArrowRight\"])||\"button\"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNextTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusActiveTabContent.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"home\",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"end\",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments))},function(t){return t.type.indexOf(\"key\")||33===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments)):null},function(t){return t.type.indexOf(\"key\")||34===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments)):null}]}},e._l(e.tabs,(function(a){return t(\"NcCheckboxRadioSwitch\",{key:a.id,staticClass:\"app-sidebar-tabs__tab\",class:{active:a.id===e.activeTab},attrs:{\"aria-controls\":\"tab-\".concat(a.id),\"aria-selected\":e.activeTab===a.id,\"button-variant\":!0,checked:e.activeTab===a.id,\"data-id\":a.id,tabindex:e.activeTab===a.id?0:-1,\"button-variant-grouped\":\"horizontal\",role:\"tab\",type:\"button\"},on:{\"update:checked\":function(t){return e.setActive(a.id)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"NcVNodes\",{attrs:{vnodes:a.renderIcon()}},[t(\"span\",{staticClass:\"app-sidebar-tabs__tab-icon\",class:a.icon})])]},proxy:!0}],null,!0)},[t(\"span\",{staticClass:\"app-sidebar-tabs__tab-caption\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(a.name)+\"\\n\\t\\t\\t\")])])})),1):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-tabs__content\",class:{\"app-sidebar-tabs__content--multiple\":e.hasMultipleTabs}},[e._t(\"default\")],2)])}),[],!1,null,\"3946530b\",null).exports;var y=a(7664),C=a(6492),b=a(3089),w=a(9462),P=a(8167),S=a(640),N=a(336),x=a(932);const j=require(\"vue-material-design-icons/ArrowRight.vue\");var E=a.n(j);const O=require(\"vue-material-design-icons/Close.vue\");var _=a.n(O);const B=require(\"vue-material-design-icons/Star.vue\");var z=a.n(B);const F=require(\"vue-material-design-icons/StarOutline.vue\");var M=a.n(F);const T=require(\"@vueuse/components\"),D={name:\"NcAppSidebar\",components:{NcActions:y.default,NcAppSidebarTabs:f,ArrowRight:E(),NcButton:b.default,NcLoadingIcon:C.default,NcEmptyContent:w.default,Close:_(),Star:z(),StarOutline:M()},directives:{focus:P.default,linkify:S.default,ClickOutside:T.vOnClickOutside,Tooltip:N.default},props:{active:{type:String,default:\"\"},name:{type:String,default:\"\",required:!0},nameEditable:{type:Boolean,default:!1},namePlaceholder:{type:String,default:\"\"},subname:{type:String,default:\"\"},subtitle:{type:String,default:\"\"},background:{type:String,default:\"\"},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyName:{type:Boolean,default:!1},title:{type:String,default:\"\"}},emits:[\"close\",\"closing\",\"closed\",\"opening\",\"opened\",\"figure-click\",\"update:starred\",\"update:nameEditable\",\"update:name\",\"update:active\",\"submit-name\",\"dismiss-editing\"],data:function(){return{changeNameTranslated:(0,x.t)(\"Change name\"),closeTranslated:(0,x.t)(\"Close sidebar\"),favoriteTranslated:(0,x.t)(\"Favorite\"),isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners[\"figure-click\"]}},watch:{starred:function(){this.isStarred=this.starred}},beforeDestroy:function(){this.$emit(\"closed\")},methods:{onBeforeEnter:function(e){this.$emit(\"opening\",e)},onAfterEnter:function(e){this.$emit(\"opened\",e)},onBeforeLeave:function(e){this.$emit(\"closing\",e)},onAfterLeave:function(e){this.$emit(\"closed\",e)},closeSidebar:function(e){this.$emit(\"close\",e)},onFigureClick:function(e){this.$emit(\"figure-click\",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit(\"update:starred\",this.isStarred)},editName:function(){var e=this;this.$emit(\"update:nameEditable\",!0),this.nameEditable&&this.$nextTick((function(){return e.$refs.nameInput.focus()}))},onNameInput:function(e){this.$emit(\"update:name\",e.target.value)},onSubmitName:function(e){this.$emit(\"update:nameEditable\",!1),this.$emit(\"submit-name\",e)},onDismissEditing:function(){this.$emit(\"update:nameEditable\",!1),this.$emit(\"dismiss-editing\")},onUpdateActive:function(e){this.$emit(\"update:active\",e)}}};var G=a(2365),R={};R.styleTagTransform=g(),R.setAttributes=m(),R.insert=l().bind(null,\"head\"),R.domAPI=s(),R.insertStyleElement=p();n()(G.Z,R);G.Z&&G.Z.locals&&G.Z.locals;var q=a(2887),U={};U.styleTagTransform=g(),U.setAttributes=m(),U.insert=l().bind(null,\"head\"),U.domAPI=s(),U.insertStyleElement=p();n()(q.Z,U);q.Z&&q.Z.locals&&q.Z.locals;var L=a(2112),$=a.n(L),I=(0,k.Z)(D,(function(){var e=this,t=e._self._c;return t(\"transition\",{attrs:{appear:\"\",name:\"slide-right\"},on:{\"before-enter\":e.onBeforeEnter,\"after-enter\":e.onAfterEnter,\"before-leave\":e.onBeforeLeave,\"after-leave\":e.onAfterLeave}},[t(\"aside\",{staticClass:\"app-sidebar\",attrs:{id:\"app-sidebar-vue\"}},[t(\"header\",{staticClass:\"app-sidebar-header\",class:{\"app-sidebar-header--with-figure\":e.hasFigure,\"app-sidebar-header--compact\":e.compact}},[t(\"div\",{staticClass:\"app-sidebar-header__info\"},[e.hasFigure&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__figure\",class:{\"app-sidebar-header__figure--with-action\":e.hasFigureClickListener},style:{backgroundImage:\"url(\".concat(e.background,\")\")},attrs:{tabindex:\"0\"},on:{click:e.onFigureClick,keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.onFigureClick.apply(null,arguments)}}},[e._t(\"header\")],2):e._e(),e._v(\" \"),e.empty?e._e():t(\"div\",{staticClass:\"app-sidebar-header__desc\",class:{\"app-sidebar-header__desc--with-tertiary-action\":e.canStar||e.$slots[\"tertiary-actions\"],\"app-sidebar-header__desc--editable\":e.nameEditable&&!e.subname,\"app-sidebar-header__desc--with-subname--editable\":e.nameEditable&&e.subname,\"app-sidebar-header__desc--without-actions\":!e.$slots[\"secondary-actions\"]}},[e.canStar||e.$slots[\"tertiary-actions\"]?t(\"div\",{staticClass:\"app-sidebar-header__tertiary-actions\"},[e._t(\"tertiary-actions\",(function(){return[e.canStar?t(\"NcButton\",{staticClass:\"app-sidebar-header__star\",attrs:{\"aria-label\":e.favoriteTranslated,pressed:e.isStarred,type:\"secondary\"},on:{click:function(t){return t.preventDefault(),e.toggleStarred.apply(null,arguments)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[e.starLoading?t(\"NcLoadingIcon\"):e.isStarred?t(\"Star\",{attrs:{size:20}}):t(\"StarOutline\",{attrs:{size:20}})]},proxy:!0}],null,!1,2575459756)}):e._e()]}))],2):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-header__name-container\"},[t(\"div\",{staticClass:\"app-sidebar-header__mainname-container\"},[t(\"h2\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.nameEditable,expression:\"!nameEditable\"},{name:\"linkify\",rawName:\"v-linkify\",value:{text:e.name,linkify:e.linkifyName},expression:\"{text: name, linkify: linkifyName}\"}],staticClass:\"app-sidebar-header__mainname\",attrs:{\"aria-label\":e.title,title:e.title,tabindex:e.nameEditable?0:void 0},on:{click:function(t){return t.target!==t.currentTarget?null:e.editName.apply(null,arguments)}}},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\\t\\t\\t\\t\")]),e._v(\" \"),e.nameEditable?[t(\"form\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:function(){return e.onSubmitName()},expression:\"() => onSubmitName()\"}],staticClass:\"app-sidebar-header__mainname-form\",on:{submit:function(t){return t.preventDefault(),e.onSubmitName.apply(null,arguments)}}},[t(\"input\",{directives:[{name:\"focus\",rawName:\"v-focus\"}],ref:\"nameInput\",staticClass:\"app-sidebar-header__mainname-input\",attrs:{type:\"text\",placeholder:e.namePlaceholder},domProps:{value:e.name},on:{keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"])?null:e.onDismissEditing.apply(null,arguments)},input:e.onNameInput}}),e._v(\" \"),t(\"NcButton\",{attrs:{type:\"tertiary-no-background\",\"aria-label\":e.changeNameTranslated,\"native-type\":\"submit\"},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"ArrowRight\",{attrs:{size:20}})]},proxy:!0}],null,!1,1252225425)})],1)]:e._e(),e._v(\" \"),e.$slots[\"secondary-actions\"]?t(\"NcActions\",{staticClass:\"app-sidebar-header__menu\",attrs:{\"force-menu\":e.forceMenu}},[e._t(\"secondary-actions\")],2):e._e()],2),e._v(\" \"),\"\"!==e.subname.trim()?t(\"p\",{staticClass:\"app-sidebar-header__subname\",attrs:{\"aria-label\":e.subtitle,title:e.subtitle}},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.subname)+\"\\n\\t\\t\\t\\t\\t\\t\")]):e._e()])])]),e._v(\" \"),t(\"NcButton\",{staticClass:\"app-sidebar__close\",attrs:{title:e.closeTranslated,\"aria-label\":e.closeTranslated,type:\"tertiary\"},on:{click:function(t){return t.preventDefault(),e.closeSidebar.apply(null,arguments)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"Close\",{attrs:{size:20}})]},proxy:!0}])}),e._v(\" \"),e.$slots.description&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__description\"},[e._t(\"description\")],2):e._e()],1),e._v(\" \"),t(\"NcAppSidebarTabs\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.loading,expression:\"!loading\"}],ref:\"tabs\",attrs:{active:e.active},on:{\"update:active\":e.onUpdateActive}},[e._t(\"default\")],2),e._v(\" \"),e.loading?t(\"NcEmptyContent\",{scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"NcLoadingIcon\",{attrs:{size:64}})]},proxy:!0}],null,!1,826850984)}):e._e()],1)])}),[],!1,null,\"1c6914a9\",null);\"function\"==typeof $()&&$()(I);const H=I.exports})(),o})()));\n//# sourceMappingURL=NcAppSidebar.js.map","/*! For license information please see NcAppSidebarTab.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcAppSidebarTab\"]=t())}(self,(()=>(()=>{\"use strict\";var e={4909:(e,t,n)=>{n.d(t,{Z:()=>s});var r=n(7537),o=n.n(r),a=n(3645),i=n.n(a)()(o());i.push([e.id,\".material-design-icon[data-v-4c850128]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar__tab[data-v-4c850128]{display:none;padding:10px;min-height:100%;max-height:100%;height:100%;overflow:auto}.app-sidebar__tab[data-v-4c850128]:focus{border-color:var(--color-primary-element);box-shadow:0 0 .2em var(--color-primary-element);outline:0}.app-sidebar__tab--active[data-v-4c850128]{display:block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebarTab/NcAppSidebarTab.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,YAAA,CACA,eAAA,CACA,eAAA,CACA,WAAA,CACA,aAAA,CAEA,yCACC,yCAAA,CACA,gDAAA,CACA,SAAA,CAGD,2CACC,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.app-sidebar__tab {\\n\\tdisplay: none;\\n\\tpadding: 10px;\\n\\tmin-height: 100%; // fill available height\\n\\tmax-height: 100%; // scroll inside\\n\\theight: 100%;\\n\\toverflow: auto;\\n\\n\\t&:focus {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t\\tbox-shadow: 0 0 0.2em var(--color-primary-element);\\n\\t\\toutline: 0;\\n\\t}\\n\\n\\t&--active {\\n\\t\\tdisplay: block;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=i},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",r=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),r&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),r&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,r,o,a){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=a),n&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=n):d[2]=n),o&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=o):d[4]=\"\".concat(o)),t.push(d))}},t}},7537:e=>{e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if(\"function\"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(r),a=\"/*# \".concat(o,\" */\");return[t].concat([a]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{var t=[];function n(e){for(var n=-1,r=0;r{var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");r.appendChild(n)}},9216:e=>{e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r=\"\";n.supports&&(r+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(r+=\"@media \".concat(n.media,\" {\"));var o=void 0!==n.layer;o&&(r+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),r+=n.css,o&&(r+=\"}\"),n.media&&(r+=\"}\"),n.supports&&(r+=\"}\");var a=n.sourceMap;a&&\"undefined\"!=typeof btoa&&(r+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a)))),\" */\")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.nc=void 0;var r={};return(()=>{n.r(r),n.d(r,{default:()=>b});const e={name:\"NcAppSidebarTab\",inject:[\"registerTab\",\"unregisterTab\",\"getActiveTab\"],props:{id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,default:\"\"},order:{type:Number,default:0}},emits:[\"bottom-reached\",\"scroll\"],expose:[\"id\",\"name\",\"icon\",\"order\",\"renderIcon\"],computed:{isActive:function(){return this.getActiveTab()===this.id}},created:function(){this.registerTab(this)},beforeDestroy:function(){this.unregisterTab(this.id)},methods:{onScroll:function(e){this.$el.scrollHeight-this.$el.scrollTop===this.$el.clientHeight&&this.$emit(\"bottom-reached\",e),this.$emit(\"scroll\",e)},renderIcon:function(){var e,t;return null===(e=(t=this.$scopedSlots).icon)||void 0===e?void 0:e.call(t)}}};var t=n(3379),o=n.n(t),a=n(7795),i=n.n(a),s=n(569),c=n.n(s),l=n(3565),d=n.n(l),u=n(9216),p=n.n(u),f=n(4589),v=n.n(f),A=n(4909),m={};m.styleTagTransform=v(),m.setAttributes=d(),m.insert=c().bind(null,\"head\"),m.domAPI=i(),m.insertStyleElement=p();o()(A.Z,m);A.Z&&A.Z.locals&&A.Z.locals;var h=function(e,t,n,r,o,a,i,s){var c,l=\"function\"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=n,l._compiled=!0),r&&(l.functional=!0),a&&(l._scopeId=\"data-v-\"+a),i?(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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},l._ssrRegister=c):o&&(c=s?function(){o.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(l.functional){l._injectStyles=c;var d=l.render;l.render=function(e,t){return c.call(t),d(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}(e,(function(){var e=this,t=e._self._c;return t(\"section\",{staticClass:\"app-sidebar__tab\",class:{\"app-sidebar__tab--active\":e.isActive},attrs:{id:\"tab-\".concat(e.id),\"aria-hidden\":!e.isActive,\"aria-labelledby\":e.id,tabindex:\"0\",role:\"tabpanel\"},on:{scroll:e.onScroll}},[t(\"h3\",{staticClass:\"hidden-visually\"},[e._v(\"\\n\\t\\t\"+e._s(e.name)+\"\\n\\t\")]),e._v(\" \"),e._t(\"default\")],2)}),[],!1,null,\"4c850128\",null);const b=h.exports})(),r})()));\n//# sourceMappingURL=NcAppSidebarTab.js.map","/*! For license information please see NcSelectTags.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcSelectTags\"]=t())}(self,(()=>(()=>{var e={5166:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcActionLink\",mixins:[o(9156).Z],props:{href:{type:String,default:\"#\",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith(\"#\")||e.startsWith(\"/\")}}},download:{type:String,default:null},target:{type:String,default:\"_self\",validator:function(e){return e&&(!e.startsWith(\"_\")||[\"_blank\",\"_self\",\"_parent\",\"_top\"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(4402),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=c().bind(null,\"head\"),f.domAPI=s(),f.insertStyleElement=p();i()(v.Z,f);v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9158),k=o.n(y),C=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t(\"li\",{staticClass:\"action\"},[t(\"a\",{staticClass:\"action-link focusable\",attrs:{download:e.download,href:e.href,\"aria-label\":e.ariaLabel,target:e.target,title:e.title,rel:\"nofollow noreferrer noopener\",role:\"menuitem\"},on:{click:e.onClick}},[e._t(\"icon\",(function(){return[t(\"span\",{staticClass:\"action-link__icon\",class:[e.isIconUrl?\"action-link__icon--url\":e.icon],style:{backgroundImage:e.isIconUrl?\"url(\".concat(e.icon,\")\"):null},attrs:{\"aria-hidden\":e.ariaHidden}})]})),e._v(\" \"),e.name?t(\"p\",[t(\"strong\",{staticClass:\"action-link__name\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\")]),e._v(\" \"),t(\"br\"),e._v(\" \"),t(\"span\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t(\"p\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}}):t(\"span\",{staticClass:\"action-link__text\"},[e._v(e._s(e.text))]),e._v(\" \"),e._e()],2)])}),[],!1,null,\"df184e4e\",null);\"function\"==typeof k()&&k()(C);const b=C.exports},7664:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),l=o.n(s),c=o(1441),u=o.n(c);function d(e){return d=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return\"NcActionLink\"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(l().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,l,c,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e(\"span\",{class:[\"icon\",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||A,k=t.forceName?A:\"\",C=null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||C||(C=A),e(\"NcButton\",{class:[\"action-item action-item--single\",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{\"aria-label\":y,title:C},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e(\"template\",{slot:\"icon\"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":a?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:a?null:\"menu\"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),c=o.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[c.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(c)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),C=o(7795),b=o.n(C),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),B=o(9546),z={};z.styleTagTransform=E(),z.setAttributes=N(),z.insert=S().bind(null,\"head\"),z.domAPI=b(),z.insertStyleElement=j();k()(B.Z,z);B.Z&&B.Z.locals&&B.Z.locals;var _=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,\"head\"),F.domAPI=b(),F.insertStyleElement=j();k()(_.Z,F);_.Z&&_.Z.locals&&_.Z.locals;var M=o(1900),L=o(5727),D=o.n(L),T=(0,M.Z)(A,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(T);const G=T.exports},2158:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>$});var a=o(7664),n=o(5166),i=o(3089),r=o(6492),s=o(9319),l=o(1137),c=o(932),u=o(768),d=o.n(u),m=o(1441),p=o.n(m),h=o(3607),g=o(542);const v=require(\"@nextcloud/browser-storage\");var f=o(4262);const A=require(\"@vueuse/components\");function y(e){return y=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},y(e)}function k(){k=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,d=c.value;return d&&\"object\"==y(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===d)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),d;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,d):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function b(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){C(i,a,n,r,s,\"next\",e)}function s(e){C(i,a,n,r,s,\"throw\",e)}r(void 0)}))}}var w=(0,v.getBuilder)(\"nextcloud\").persist().build();function S(e,t){e&&w.setItem(\"user-has-avatar.\"+e,t)}const P={name:\"NcAvatar\",directives:{ClickOutside:A.vOnClickOutside},components:{DotsHorizontal:p(),NcActions:a.default,NcActionLink:n.default,NcButton:i.default,NcLoadingIcon:r.default},mixins:[l.iQ],props:{url:{type:String,default:void 0},iconClass:{type:String,default:void 0},user:{type:String,default:void 0},showUserStatus:{type:Boolean,default:!0},showUserStatusCompact:{type:Boolean,default:!0},preloadedUserStatus:{type:Object,default:void 0},isGuest:{type:Boolean,default:!1},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},disableMenu:{type:Boolean,default:!1},tooltipMessage:{type:String,default:null},isNoUser:{type:Boolean,default:!1},menuContainer:{type:[String,Object,Element,Boolean],default:\"body\"}},data:function(){return{avatarUrlLoaded:null,avatarSrcSetLoaded:null,userDoesNotExist:!1,isAvatarLoaded:!1,isMenuLoaded:!1,contactsMenuLoading:!1,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{avatarAriaLabel:function(){var e,t;if(this.hasMenu)return this.hasStatus&&this.showUserStatus&&this.showUserStatusCompact?(0,c.t)(\"Avatar of {displayName}, {status}\",{displayName:null!==(t=this.displayName)&&void 0!==t?t:this.user,status:this.userStatus.status}):(0,c.t)(\"Avatar of {displayName}\",{displayName:null!==(e=this.displayName)&&void 0!==e?e:this.user})},canDisplayUserStatus:function(){return this.showUserStatus&&this.hasStatus&&[\"online\",\"away\",\"dnd\"].includes(this.userStatus.status)},showUserStatusIconOnAvatar:function(){return this.showUserStatus&&this.showUserStatusCompact&&this.hasStatus&&\"dnd\"!==this.userStatus.status&&this.userStatus.icon},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},hasMenu:function(){var e;return!this.disableMenu&&(this.isMenuLoaded?this.menu.length>0:!(this.user===(null===(e=(0,h.getCurrentUser)())||void 0===e?void 0:e.uid)||this.userDoesNotExist||this.url))},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){return{\"--size\":this.size+\"px\",lineHeight:this.size+\"px\",fontSize:Math.round(.45*this.size)+\"px\"}},initialsWrapperStyle:function(){var e=(0,s.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{backgroundColor:\"rgba(\".concat(t,\", \").concat(o,\", \").concat(a,\", 0.1)\")}},initialsStyle:function(){var e=(0,s.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{color:\"rgb(\".concat(t,\", \").concat(o,\", \").concat(a,\")\")}},tooltip:function(){return!this.disableTooltip&&(this.tooltipMessage?this.tooltipMessage:this.displayName)},initials:function(){var e;if(this.shouldShowPlaceholder){var t=this.getUserIdentifier,o=t.indexOf(\" \");\"\"===t?e=\"?\":(e=String.fromCodePoint(t.codePointAt(0)),-1!==o&&(e=e.concat(String.fromCodePoint(t.codePointAt(o+1)))))}return e.toUpperCase()},menu:function(){var e,t,o,a=this.contactsMenuActions.map((function(e){return{href:e.hyperlink,icon:e.icon,text:e.title}}));return this.showUserStatus&&(this.userStatus.icon||this.userStatus.message)?[{href:\"#\",icon:\"data:image/svg+xml;utf8,\".concat((e=this.userStatus.icon,t=document.createTextNode(e),o=document.createElement(\"p\"),o.appendChild(t),o.innerHTML),\"\"),text:\"\".concat(this.userStatus.message)}].concat(a):a}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.isMenuLoaded=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl(),(0,g.subscribe)(\"settings:avatar:updated\",this.loadAvatarUrl),(0,g.subscribe)(\"settings:display-name:updated\",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(this.preloadedUserStatus?(this.userStatus.status=this.preloadedUserStatus.status||\"\",this.userStatus.message=this.preloadedUserStatus.message||\"\",this.userStatus.icon=this.preloadedUserStatus.icon||\"\",this.hasStatus=null!==this.preloadedUserStatus.status):this.fetchUserStatus(this.user),(0,g.subscribe)(\"user_status:status.updated\",this.handleUserStatusUpdated))},beforeDestroy:function(){(0,g.unsubscribe)(\"settings:avatar:updated\",this.loadAvatarUrl),(0,g.unsubscribe)(\"settings:display-name:updated\",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(0,g.unsubscribe)(\"user_status:status.updated\",this.handleUserStatusUpdated)},methods:{t:c.t,handleUserStatusUpdated:function(e){this.user===e.userId&&(this.userStatus={status:e.status,icon:e.icon,message:e.message})},toggleMenu:function(){var e=this;return b(k().mark((function t(){return k().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.hasMenu){t.next=2;break}return t.abrupt(\"return\");case 2:if(e.contactsMenuOpenState){t.next=5;break}return t.next=5,e.fetchContactsMenu();case 5:e.contactsMenuOpenState=!e.contactsMenuOpenState;case 6:case\"end\":return t.stop()}}),t)})))()},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var e=this;return b(k().mark((function t(){var o,a,n;return k().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.contactsMenuLoading=!0,t.prev=1,o=encodeURIComponent(e.user),t.next=5,d().post((0,f.generateUrl)(\"contactsmenu/findOne\"),\"shareType=0&shareWith=\".concat(o));case 5:a=t.sent,n=a.data,e.contactsMenuActions=n.topAction?[n.topAction].concat(n.actions):n.actions,t.next=13;break;case 10:t.prev=10,t.t0=t.catch(1),e.contactsMenuOpenState=!1;case 13:e.contactsMenuLoading=!1,e.isMenuLoaded=!0;case 15:case\"end\":return t.stop()}}),t,null,[[1,10]])})))()},loadAvatarUrl:function(){if(this.isAvatarLoaded=!1,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.isAvatarLoaded=!0,void(this.userDoesNotExist=!0);if(this.isUrlDefined)this.updateImageIfValid(this.url);else if(this.size<=64){var e=this.avatarUrlGenerator(this.user,64),t=[e+\" 1x\",this.avatarUrlGenerator(this.user,512)+\" 8x\"].join(\", \");this.updateImageIfValid(e,t)}else{var o=this.avatarUrlGenerator(this.user,512);this.updateImageIfValid(o)}},avatarUrlGenerator:function(e,t){var o,a=\"invert(100%)\"===window.getComputedStyle(document.body).getPropertyValue(\"--background-invert-if-dark\"),n=\"/avatar/{user}/{size}\"+(a?\"/dark\":\"\");this.isGuest&&(n=\"/avatar/guest/{user}/{size}\"+(a?\"/dark\":\"\"));var i=(0,f.generateUrl)(n,{user:e,size:t});return e===(null===(o=(0,h.getCurrentUser)())||void 0===o?void 0:o.uid)&&\"undefined\"!=typeof oc_userconfig&&(i+=\"?v=\"+oc_userconfig.avatar.version),i},updateImageIfValid:function(e){var t,o,a=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=(t=this.user,\"string\"==typeof(o=w.getItem(\"user-has-avatar.\"+t))?Boolean(o):null);if(this.isUserDefined&&\"boolean\"==typeof i)return this.isAvatarLoaded=!0,this.avatarUrlLoaded=e,n&&(this.avatarSrcSetLoaded=n),void(!1===i&&(this.userDoesNotExist=!0));var r=new Image;r.onload=function(){a.avatarUrlLoaded=e,n&&(a.avatarSrcSetLoaded=n),a.isAvatarLoaded=!0,S(a.user,!0)},r.onerror=function(){console.debug(\"Invalid avatar url\",e),a.avatarUrlLoaded=null,a.avatarSrcSetLoaded=null,a.userDoesNotExist=!0,a.isAvatarLoaded=!1,S(a.user,!1)},n&&(r.srcset=n),r.src=e}}};var N=o(3379),x=o.n(N),j=o(7795),O=o.n(j),E=o(569),B=o.n(E),z=o(3565),_=o.n(z),F=o(9216),M=o.n(F),L=o(4589),D=o.n(L),T=o(6222),G={};G.styleTagTransform=D(),G.setAttributes=_(),G.insert=B().bind(null,\"head\"),G.domAPI=O(),G.insertStyleElement=M();x()(T.Z,G);T.Z&&T.Z.locals&&T.Z.locals;var U=o(1900),R=o(3051),q=o.n(R),I=(0,U.Z)(P,(function(){var e=this,t=e._self._c;return t(\"div\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:e.closeMenu,expression:\"closeMenu\"}],ref:\"main\",staticClass:\"avatardiv popovermenu-wrapper\",class:{\"avatardiv--unknown\":e.userDoesNotExist,\"avatardiv--with-menu\":e.hasMenu,\"avatardiv--with-menu-loading\":e.contactsMenuLoading},style:e.avatarStyle,attrs:{title:e.tooltip,tabindex:e.hasMenu?\"0\":void 0,\"aria-label\":e.avatarAriaLabel,role:e.hasMenu?\"button\":void 0},on:{click:e.toggleMenu,keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.toggleMenu.apply(null,arguments)}}},[e._t(\"icon\",(function(){return[e.iconClass?t(\"div\",{staticClass:\"avatar-class-icon\",class:e.iconClass}):e.isAvatarLoaded&&!e.userDoesNotExist?t(\"img\",{attrs:{src:e.avatarUrlLoaded,srcset:e.avatarSrcSetLoaded,alt:\"\"}}):e._e()]})),e._v(\" \"),e.hasMenu&&!e.menu.length?t(\"NcButton\",{staticClass:\"action-item action-item__menutoggle\",attrs:{\"aria-label\":e.t(\"Open contact menu\"),type:\"tertiary-no-background\"},scopedSlots:e._u([{key:\"icon\",fn:function(){return[e.contactsMenuLoading?t(\"NcLoadingIcon\"):t(\"DotsHorizontal\",{attrs:{size:20}})]},proxy:!0}],null,!1,2617833509)}):e.hasMenu?t(\"NcActions\",{attrs:{\"force-menu\":\"\",\"manual-open\":\"\",type:\"tertiary-no-background\",container:e.menuContainer,open:e.contactsMenuOpenState},scopedSlots:e._u([e.contactsMenuLoading?{key:\"icon\",fn:function(){return[t(\"NcLoadingIcon\")]},proxy:!0}:null],null,!0)},e._l(e.menu,(function(o,a){return t(\"NcActionLink\",{key:a,attrs:{href:o.href,icon:o.icon}},[e._v(\"\\n\\t\\t\\t\"+e._s(o.text)+\"\\n\\t\\t\")])})),1):e._e(),e._v(\" \"),e.showUserStatusIconOnAvatar?t(\"div\",{staticClass:\"avatardiv__user-status avatardiv__user-status--icon\"},[e._v(\"\\n\\t\\t\"+e._s(e.userStatus.icon)+\"\\n\\t\")]):e.canDisplayUserStatus?t(\"div\",{staticClass:\"avatardiv__user-status\",class:\"avatardiv__user-status--\"+e.userStatus.status}):e._e(),e._v(\" \"),!e.userDoesNotExist||e.iconClass||e.$slots.icon?e._e():t(\"div\",{staticClass:\"avatardiv__initials-wrapper\",style:e.initialsWrapperStyle},[t(\"div\",{staticClass:\"unknown\",style:e.initialsStyle},[e._v(\"\\n\\t\\t\\t\"+e._s(e.initials)+\"\\n\\t\\t\")])])],2)}),[],!1,null,\"7de2f7ff\",null);\"function\"==typeof q()&&q()(I);const $=I.exports},3089:(e,t,o)=>{\"use strict\";function a(e){return a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},a(e)}function n(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function i(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,o,a,n=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!s,c=null===(a=this.$slots)||void 0===a?void 0:a.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var u=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,u=o.isActive,d=o.isExactActive;return e(n.to||!n.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":c&&!l,\"button-vue--text-only\":l&&!c,\"button-vue--icon-and-text\":c&&l},r(t,\"button-vue--vue-\".concat(n.realType),n.realType),r(t,\"button-vue--wide\",n.wide),r(t,\"button-vue--\".concat(n.flexAlignment),\"center\"!==n.flexAlignment),r(t,\"button-vue--reverse\",n.isReverseAligned),r(t,\"active\",u),r(t,\"router-link-exact-active\",d),t)],attrs:i({\"aria-label\":n.ariaLabel,\"aria-pressed\":n.pressed,disabled:n.disabled,type:n.href?null:n.nativeType,role:n.href?\"button\":null,href:!n.to&&n.href?n.href:null,target:!n.to&&n.href?\"_self\":null,rel:!n.to&&n.href?\"nofollow noreferrer noopener\":null,download:!n.to&&n.href&&n.download?n.download:null},n.$attrs),on:i(i({},n.$listeners),{},{click:function(e){\"boolean\"==typeof n.pressed&&n.$emit(\"update:pressed\",!n.pressed),n.$emit(\"click\",e),null==a||a(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[c?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":n.ariaHidden}},[n.$slots.icon]):null,l?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:u}}):u()}};var l=o(3379),c=o.n(l),u=o(7795),d=o.n(u),m=o(569),p=o.n(m),h=o(3565),g=o.n(h),v=o(9216),f=o.n(v),A=o(4589),y=o.n(A),k=o(7294),C={};C.styleTagTransform=y(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=d(),C.insertStyleElement=f();c()(k.Z,C);k.Z&&k.Z.locals&&k.Z.locals;var b=o(1900),w=o(2102),S=o.n(w),P=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof S()&&S()(P);const N=P.exports},4378:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>k});var a=o(281),n=o(1336);const i={name:\"NcEllipsisedOption\",components:{NcHighlight:a.default},props:{name:{type:String,default:\"\"},search:{type:String,default:\"\"}},computed:{needsTruncate:function(){return this.name&&this.name.length>=10},split:function(){return this.name.length-Math.min(Math.floor(this.name.length/2),10)},part1:function(){return this.needsTruncate?this.name.slice(0,this.split):this.name},part2:function(){return this.needsTruncate?this.name.slice(this.split):\"\"},highlight1:function(){return this.search?(0,n.Z)(this.name,this.search):[]},highlight2:function(){var e=this;return this.highlight1.map((function(t){return{start:t.start-e.split,end:t.end-e.split}}))}}};var r=o(3379),s=o.n(r),l=o(7795),c=o.n(l),u=o(569),d=o.n(u),m=o(3565),p=o.n(m),h=o(9216),g=o.n(h),v=o(4589),f=o.n(v),A=o(436),y={};y.styleTagTransform=f(),y.setAttributes=p(),y.insert=d().bind(null,\"head\"),y.domAPI=c(),y.insertStyleElement=g();s()(A.Z,y);A.Z&&A.Z.locals&&A.Z.locals;const k=(0,o(1900).Z)(i,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"name-parts\",attrs:{title:e.name}},[t(\"NcHighlight\",{staticClass:\"name-parts__first\",attrs:{text:e.part1,search:e.search,highlight:e.highlight1}}),e._v(\" \"),e.part2?t(\"NcHighlight\",{staticClass:\"name-parts__last\",attrs:{text:e.part2,search:e.search,highlight:e.highlight2}}):e._e()],1)}),[],!1,null,\"3daafbe0\",null).exports},281:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>p});var a=o(1336);function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;t0?this.highlight:(0,a.Z)(this.text,this.search),t.forEach((function(e,o){e.end0&&t.push({start:o.start<0?0:o.start,end:o.end>e.text.length?e.text.length:o.end}),t}),[]),t.sort((function(e,t){return e.start-t.start})),t=t.reduce((function(e,t){if(e.length){var o=e.length-1;e[o].end>=t.start?e[o]={start:e[o].start,end:Math.max(e[o].end,t.end)}:e.push(t)}else e.push(t);return e}),[]),t):t},chunks:function(){if(0===this.ranges.length)return[{start:0,end:this.text.length,highlight:!1,text:this.text}];for(var e=[],t=0,o=0;t=this.ranges.length&&t{\"use strict\";o.d(t,{default:()=>x});const a=require(\"@skjnldsv/sanitize-svg\");function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}function i(){i=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},r=\"function\"==typeof Symbol?Symbol:{},s=r.iterator||\"@@iterator\",l=r.asyncIterator||\"@@asyncIterator\",c=r.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,s,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,s)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(a,r,s,l){var c=m(e[a],e,r);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==n(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){i(\"next\",e,s,l)}),(function(e){i(\"throw\",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return i(\"throw\",e,s,l)}))}l(c.arg)}var r;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){i(e,o,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[s];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function r(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function s(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function s(e){r(i,a,n,s,l,\"next\",e)}function l(e){r(i,a,n,s,l,\"throw\",e)}s(void 0)}))}}const l={name:\"NcIconSvgWrapper\",props:{svg:{type:String,default:\"\"},name:{type:String,default:\"\"}},data:function(){return{cleanSvg:\"\"}},beforeMount:function(){var e=this;return s(i().mark((function t(){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.sanitizeSVG();case 2:case\"end\":return t.stop()}}),t)})))()},methods:{sanitizeSVG:function(){var e=this;return s(i().mark((function t(){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.svg){t.next=2;break}return t.abrupt(\"return\");case 2:return t.next=4,(0,a.sanitizeSVG)(e.svg);case 4:e.cleanSvg=t.sent;case 5:case\"end\":return t.stop()}}),t)})))()}}};var c=o(3379),u=o.n(c),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),C=o(2105),b={};b.styleTagTransform=k(),b.setAttributes=v(),b.insert=h().bind(null,\"head\"),b.domAPI=m(),b.insertStyleElement=A();u()(C.Z,b);C.Z&&C.Z.locals&&C.Z.locals;var w=o(1900),S=o(1287),P=o.n(S),N=(0,w.Z)(l,(function(){var e=this;return(0,e._self._c)(\"span\",{staticClass:\"icon-vue\",attrs:{role:\"img\",\"aria-hidden\":!e.name,\"aria-label\":e.name},domProps:{innerHTML:e._s(e.cleanSvg)}})}),[],!1,null,\"5937dacc\",null);\"function\"==typeof P()&&P()(N);const x=N.exports},2321:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>x});var a=o(2158),n=o(281),i=o(9598),r=o(1137);const s={name:\"NcListItemIcon\",components:{NcAvatar:a.default,NcHighlight:n.default,NcIconSvgWrapper:i.default},mixins:[r.iQ],props:{name:{type:String,required:!0},subname:{type:String,default:\"\"},icon:{type:String,default:\"\"},iconSvg:{type:String,default:\"\"},iconName:{type:String,default:\"\"},search:{type:String,default:\"\"},avatarSize:{type:Number,default:32},noMargin:{type:Boolean,default:!1},displayName:{type:String,default:null},isNoUser:{type:Boolean,default:!1},id:{type:String,default:null}},data:function(){return{margin:8}},computed:{hasIcon:function(){return\"\"!==this.icon},hasIconSvg:function(){return\"\"!==this.iconSvg},isValidSubname:function(){var e,t;return\"\"!==(null===(e=this.subname)||void 0===e||null===(t=e.trim)||void 0===t?void 0:t.call(e))},isSizeBigEnough:function(){return this.avatarSize>=32},cssVars:function(){var e=this.noMargin?0:this.margin;return{\"--height\":this.avatarSize+2*e+\"px\",\"--margin\":this.margin+\"px\"}}},beforeMount:function(){this.isNoUser||this.subname||this.fetchUserStatus(this.user)}},l=s;var c=o(3379),u=o.n(c),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),C=o(4629),b={};b.styleTagTransform=k(),b.setAttributes=v(),b.insert=h().bind(null,\"head\"),b.domAPI=m(),b.insertStyleElement=A();u()(C.Z,b);C.Z&&C.Z.locals&&C.Z.locals;var w=o(1900),S=o(8488),P=o.n(S),N=(0,w.Z)(l,(function(){var e=this,t=e._self._c;return t(\"span\",e._g({staticClass:\"option\",style:e.cssVars,attrs:{id:e.id}},e.$listeners),[t(\"NcAvatar\",e._b({staticClass:\"option__avatar\",attrs:{\"disable-menu\":!0,\"disable-tooltip\":!0,\"display-name\":e.displayName||e.name,\"is-no-user\":e.isNoUser,size:e.avatarSize}},\"NcAvatar\",e.$attrs,!1)),e._v(\" \"),t(\"div\",{staticClass:\"option__details\"},[t(\"NcHighlight\",{staticClass:\"option__lineone\",attrs:{text:e.name,search:e.search}}),e._v(\" \"),e.isValidSubname&&e.isSizeBigEnough?t(\"NcHighlight\",{staticClass:\"option__linetwo\",attrs:{text:e.subname,search:e.search}}):e.hasStatus?t(\"span\",[t(\"span\",[e._v(e._s(e.userStatus.icon))]),e._v(\" \"),t(\"span\",[e._v(e._s(e.userStatus.message))])]):e._e()],1),e._v(\" \"),e._t(\"default\",(function(){return[e.hasIconSvg?t(\"NcIconSvgWrapper\",{staticClass:\"option__icon\",attrs:{svg:e.iconSvg,name:e.iconName}}):e.hasIcon?t(\"span\",{staticClass:\"icon option__icon\",class:e.icon,attrs:{\"aria-label\":e.iconName}}):e._e()]}))],2)}),[],!1,null,\"160648e6\",null);\"function\"==typeof P()&&P()(N);const x=N.exports},6492:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcLoadingIcon\",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return[\"auto\",\"light\",\"dark\"].includes(e)},default:\"auto\"},name:{type:String,default:\"\"}},computed:{colors:function(){var e=[\"#777\",\"#CCC\"];return\"light\"===this.appearance?e:\"dark\"===this.appearance?e.reverse():[\"var(--color-loading-light)\",\"var(--color-loading-dark)\"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=c().bind(null,\"head\"),f.domAPI=s(),f.insertStyleElement=p();i()(v.Z,f);v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),C=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"material-design-icon loading-icon\",attrs:{\"aria-label\":e.name,role:\"img\"}},[t(\"svg\",{attrs:{width:e.size,height:e.size,viewBox:\"0 0 24 24\"}},[t(\"path\",{attrs:{fill:e.colors[0],d:\"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z\"}}),e._v(\" \"),t(\"path\",{attrs:{fill:e.colors[1],d:\"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z\"}},[e.name?t(\"title\",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,\"27fa1197\",null);\"function\"==typeof k()&&k()(C);const b=C.exports},2297:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>O});var a=o(9454),n=o(4505),i=o(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",l=n.asyncIterator||\"@@asyncIterator\",c=n.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,s,l){var c=m(e[a],e,i);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==r(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,s,l)}),(function(e){n(\"throw\",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n(\"throw\",e,s,l)}))}l(c.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}const c={name:\"NcPopover\",components:{Dropdown:a.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var o,a;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,n.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,\"next\",e)}function s(e){l(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},u=c;var d=o(3379),m=o.n(d),p=o(7795),h=o.n(p),g=o(569),v=o.n(g),f=o(3565),A=o.n(f),y=o(9216),k=o.n(y),C=o(4589),b=o.n(C),w=o(1625),S={};S.styleTagTransform=b(),S.setAttributes=A(),S.insert=v().bind(null,\"head\"),S.domAPI=h(),S.insertStyleElement=k();m()(w.Z,S);w.Z&&w.Z.locals&&w.Z.locals;var P=o(1900),N=o(2405),x=o.n(N),j=(0,P.Z)(u,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof x()&&x()(j);const O=j.exports},7176:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>G});const a=require(\"@nextcloud/vue-select\"),n=(require(\"@nextcloud/vue-select/dist/vue-select.css\"),require(\"@floating-ui/dom\")),i=require(\"vue-material-design-icons/ChevronDown.vue\");var r=o.n(i),s=o(8618),l=o.n(s),c=o(4378),u=o(2321),d=o(6492),m=o(3648),p=[\"inputClass\",\"noWrap\",\"placement\",\"userSelect\"];function h(e){return h=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},h(e)}function g(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function f(e){for(var t=1;t-1}:a.VueSelect.props.filterBy.default},localLabel:function(){return null!==this.label?this.label:this.userSelect?\"displayName\":a.VueSelect.props.label.default},propsToForward:function(){var e=this.$props,t=(e.inputClass,e.noWrap,e.placement,e.userSelect,f(f({},g(e,p)),{},{calculatePosition:this.localCalculatePosition,filterBy:this.localFilterBy,label:this.localLabel}));return t}}},k=y;var C=o(3379),b=o.n(C),w=o(7795),S=o.n(w),P=o(569),N=o.n(P),x=o(3565),j=o.n(x),O=o(9216),E=o.n(O),B=o(4589),z=o.n(B),_=o(7283),F={};F.styleTagTransform=z(),F.setAttributes=j(),F.insert=N().bind(null,\"head\"),F.domAPI=S(),F.insertStyleElement=E();b()(_.Z,F);_.Z&&_.Z.locals&&_.Z.locals;var M=o(1900),L=o(8220),D=o.n(L),T=(0,M.Z)(k,(function(){var e=this,t=e._self._c;return t(\"VueSelect\",e._g(e._b({staticClass:\"select\",class:{\"select--no-wrap\":e.noWrap},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:\"search\",fn:function(o){var a=o.attributes,n=o.events;return[t(\"input\",e._g(e._b({class:[\"vs__search\",e.inputClass]},\"input\",a,!1),n))]}},{key:\"open-indicator\",fn:function(o){var a=o.attributes;return[t(\"ChevronDown\",e._b({attrs:{\"fill-color\":\"var(--vs-controls-color)\",size:26}},\"ChevronDown\",a,!1))]}},{key:\"option\",fn:function(o){return[e.userSelect?t(\"NcListItemIcon\",e._b({attrs:{name:o[e.localLabel],search:e.search}},\"NcListItemIcon\",o,!1)):t(\"NcEllipsisedOption\",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:\"selected-option\",fn:function(o){return[e.userSelect?t(\"NcListItemIcon\",e._b({attrs:{name:o[e.localLabel],search:e.search}},\"NcListItemIcon\",o,!1)):t(\"NcEllipsisedOption\",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:\"spinner\",fn:function(o){return[o.loading?t(\"NcLoadingIcon\"):e._e()]}},{key:\"no-options\",fn:function(){return[e._v(\"\\n\\t\\t\"+e._s(e.t(\"No results\"))+\"\\n\\t\")]},proxy:!0},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},\"VueSelect\",e.propsToForward,!1),e.$listeners))}),[],!1,null,null,null);\"function\"==typeof D()&&D()(T);const G=T.exports},9319:(e,t,o)=>{\"use strict\";function a(e,t,o){this.r=e,this.g=t,this.b=o}function n(e,t,o){var n=[];n.push(t);for(var i=function(e,t){var o=new Array(3);return o[0]=(t[1].r-t[0].r)/e,o[1]=(t[1].g-t[0].g)/e,o[2]=(t[1].b-t[0].b)/e,o}(e,[t,o]),r=1;rl});const i=function(e){e||(e=6);var t=new a(182,70,157),o=new a(221,203,85),i=new a(0,130,201),r=n(e,t,o),s=n(e,o,i),l=n(e,i,t);return r.concat(s).concat(l)},r=require(\"md5\");var s=o.n(r);const l=function(e){var t=e.toLowerCase();null===t.match(/^([0-9a-f]{4}-?){8}$/)&&(t=s()(t)),t=t.replace(/[^0-9a-f]/g,\"\");return i(6)[function(e,t){for(var o=0,a=[],n=0;n{\"use strict\";o.d(t,{n:()=>r,t:()=>s});var a=o(7931),n=(0,a.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};n.addTranslation(e.locale,{translations:{\"\":t}})}));var i=n.build(),r=i.ngettext.bind(i),s=i.gettext.bind(i)},723:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(2734),n=o.n(a);const i={before:function(){this.$slots.default&&\"\"!==this.text.trim()||(n().util.warn(\"\".concat(this.$options.name,\" cannot be empty and requires a meaningful text content\"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():\"\"}}}},9156:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(723),n=o(6021);const i={mixins:[a.Z],props:{icon:{type:String,default:\"\"},name:{type:String,default:\"\"},title:{type:String,default:\"\"},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:\"\"},ariaHidden:{type:Boolean,default:null}},emits:[\"click\"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit(\"click\",e),this.closeAfterClick){var t=(0,n.Z)(this,\"NcActions\");t&&t.closeMenu&&t.closeMenu(!1)}}}}},6730:()=>{\"use strict\"},1137:(e,t,o)=>{\"use strict\";o.d(t,{iQ:()=>a.Z});o(6730),o(8136),o(334),o(9917);var a=o(6863)},8136:()=>{\"use strict\"},334:(e,t,o)=>{\"use strict\";var a=o(2734);new(o.n(a)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit(\"changed\",e)}},created:function(){window.addEventListener(\"resize\",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener(\"resize\",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}})},3648:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>n});var a=o(932);const n={methods:{n:a.n,t:a.t}}},9917:(e,t,o)=>{\"use strict\";o(3330);require(\"linkify-string\");require(\"escape-html\");require(\"striptags\");o(2734);var a=\"(?:^|\\\\s)\",n=\"(?:[^a-z]|$)\";new RegExp(\"\".concat(a,\"(@[a-zA-Z0-9_.@\\\\-']+)(\").concat(n,\")\"),\"gi\"),new RegExp(\"\".concat(a,\"(@"[a-zA-Z0-9 _.@\\\\-']+")(\").concat(n,\")\"),\"gi\")},6863:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>d});var a=o(3607),n=o(768),i=o.n(n),r=o(7713),s=o(4262);function l(e){return l=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},l(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var c=m(e[a],e,i);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==l(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n(\"throw\",e,r,s)}))}s(c.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function u(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}const d={data:function(){return{hasStatus:!1,userStatus:{status:null,message:null,icon:null}}},methods:{fetchUserStatus:function(e){var t,o=this;return(t=c().mark((function t(){var n,l,u,d,m,p,h,g;return c().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt(\"return\");case 2:if(n=(0,r.getCapabilities)(),Object.prototype.hasOwnProperty.call(n,\"user_status\")&&n.user_status.enabled){t.next=5;break}return t.abrupt(\"return\");case 5:if((0,a.getCurrentUser)()){t.next=7;break}return t.abrupt(\"return\");case 7:return t.prev=7,t.next=10,i().get((0,s.generateOcsUrl)(\"apps/user_status/api/v1/statuses/{userId}\",{userId:e}));case 10:l=t.sent,u=l.data,d=u.ocs.data,m=d.status,p=d.message,h=d.icon,o.userStatus.status=m,o.userStatus.message=p||\"\",o.userStatus.icon=h||\"\",o.hasStatus=!0,t.next=24;break;case 19:if(t.prev=19,t.t0=t.catch(7),404!==t.t0.response.status||0!==(null===(g=t.t0.response.data.ocs)||void 0===g||null===(g=g.data)||void 0===g?void 0:g.length)){t.next=23;break}return t.abrupt(\"return\");case 23:console.error(t.t0);case 24:case\"end\":return t.stop()}}),t,null,[[7,19]])})),function(){var e=this,o=arguments;return new Promise((function(a,n){var i=t.apply(e,o);function r(e){u(i,a,n,r,s,\"next\",e)}function s(e){u(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()}}}},1336:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=[],a=0,n=e.toLowerCase().indexOf(t.toLowerCase(),a),i=0;n>-1&&i{\"use strict\";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},6021:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=e.$parent;o;){if(o.$options.name===t)return o;o=o.$parent}}},1206:(e,t,o)=>{\"use strict\";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},4402:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/assets/action.scss\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\n * @author Marco Ambrosini \\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 .\\n *\\n */\\n\\n@mixin action-active {\\n\\tli {\\n\\t\\t&.active {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\tborder-radius: 6px;\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n@mixin action--disabled {\\n\\t.action--disabled {\\n\\t\\tpointer-events: none;\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t&:hover, &:focus {\\n\\t\\t\\tcursor: default;\\n\\t\\t\\topacity: $opacity_disabled;\\n\\t\\t}\\n\\t\\t& * {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\\n@mixin action-item($name) {\\n\\t.action-#{$name} {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: flex-start;\\n\\n\\t\\twidth: 100%;\\n\\t\\theight: auto;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\tpadding-right: $icon-margin;\\n\\t\\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\\n\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 0;\\n\\t\\tborder-radius: 0; // otherwise Safari will cut the border-radius area\\n\\t\\tbackground-color: transparent;\\n\\t\\tbox-shadow: none;\\n\\n\\t\\tfont-weight: normal;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tline-height: $clickable-area;\\n\\n\\t\\t& > span {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t&__icon {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\tbackground-position: $icon-margin center;\\n\\t\\t\\tbackground-size: $icon-size;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t}\\n\\n\\t\\t&:deep(.material-design-icon) {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\n\\t\\t\\t.material-design-icon__svg {\\n\\t\\t\\t\\tvertical-align: middle;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// long text area\\n\\t\\tp {\\n\\t\\t\\tmax-width: 220px;\\n\\t\\t\\tline-height: 1.6em;\\n\\n\\t\\t\\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\\n\\t\\t\\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\\n\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\ttext-align: left;\\n\\n\\t\\t\\t// in case there are no spaces like long email addresses\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t}\\n\\n\\t\\t&__longtext {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\t// allow the use of `\\\\n`\\n\\t\\t\\twhite-space: pre-wrap;\\n\\t\\t}\\n\\n\\t\\t&__name {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tdisplay: inline-block;\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},6222:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>v});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i),s=o(1667),l=o.n(s),c=new URL(o(3423),o.b),u=new URL(o(2605),o.b),d=new URL(o(7127),o.b),m=r()(n()),p=l()(c),h=l()(u),g=l()(d);m.push([e.id,`.material-design-icon[data-v-7de2f7ff]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.avatardiv[data-v-7de2f7ff]{position:relative;display:inline-block;width:var(--size);height:var(--size)}.avatardiv--unknown[data-v-7de2f7ff]{position:relative;background-color:var(--color-main-background)}.avatardiv[data-v-7de2f7ff]:not(.avatardiv--unknown){background-color:var(--color-main-background) !important;box-shadow:0 0 5px rgba(0,0,0,.05) inset}.avatardiv--with-menu[data-v-7de2f7ff]{cursor:pointer}.avatardiv--with-menu .action-item[data-v-7de2f7ff]{position:absolute;top:0;left:0}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle{cursor:pointer;opacity:0}.avatardiv--with-menu[data-v-7de2f7ff]:focus .action-item__menutoggle,.avatardiv--with-menu[data-v-7de2f7ff]:hover .action-item__menutoggle,.avatardiv--with-menu.avatardiv--with-menu-loading[data-v-7de2f7ff] .action-item__menutoggle{opacity:1}.avatardiv--with-menu:focus img[data-v-7de2f7ff],.avatardiv--with-menu:hover img[data-v-7de2f7ff],.avatardiv--with-menu.avatardiv--with-menu-loading img[data-v-7de2f7ff]{opacity:.3}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle,.avatardiv--with-menu img[data-v-7de2f7ff]{transition:opacity var(--animation-quick)}.avatardiv--with-menu[data-v-7de2f7ff] .button-vue,.avatardiv--with-menu[data-v-7de2f7ff] .button-vue__icon{height:var(--size);min-height:var(--size);width:var(--size) !important;min-width:var(--size)}.avatardiv .avatardiv__initials-wrapper[data-v-7de2f7ff]{height:var(--size);width:var(--size);background-color:var(--color-main-background);border-radius:50%}.avatardiv .avatardiv__initials-wrapper .unknown[data-v-7de2f7ff]{position:absolute;top:0;left:0;display:block;width:100%;text-align:center;font-weight:normal}.avatardiv img[data-v-7de2f7ff]{width:100%;height:100%;object-fit:cover}.avatardiv .material-design-icon[data-v-7de2f7ff]{width:var(--size);height:var(--size)}.avatardiv .avatardiv__user-status[data-v-7de2f7ff]{position:absolute;right:-4px;bottom:-4px;max-height:18px;max-width:18px;height:40%;width:40%;line-height:15px;font-size:var(--default-font-size);border:2px solid var(--color-main-background);background-color:var(--color-main-background);background-repeat:no-repeat;background-size:16px;background-position:center;border-radius:50%}.acli:hover .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-background-hover);background-color:var(--color-background-hover)}.acli.active .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-primary-element-light);background-color:var(--color-primary-element-light)}.avatardiv .avatardiv__user-status--online[data-v-7de2f7ff]{background-image:url(${p})}.avatardiv .avatardiv__user-status--dnd[data-v-7de2f7ff]{background-image:url(${h});background-color:#fff}.avatardiv .avatardiv__user-status--away[data-v-7de2f7ff]{background-image:url(${g})}.avatardiv .avatardiv__user-status--icon[data-v-7de2f7ff]{border:none;background-color:rgba(0,0,0,0)}.avatardiv .popovermenu-wrapper[data-v-7de2f7ff]{position:relative;display:inline-block}.avatar-class-icon[data-v-7de2f7ff]{border-radius:50%;background-color:var(--color-background-darker);height:100%}`,\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAvatar/NcAvatar.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,4BACC,iBAAA,CACA,oBAAA,CACA,iBAAA,CACA,kBAAA,CAEA,qCACC,iBAAA,CACA,6CAAA,CAGD,qDAEC,wDAAA,CACA,wCAAA,CAGD,uCACC,cAAA,CACA,oDACC,iBAAA,CACA,KAAA,CACA,MAAA,CAED,gEACC,cAAA,CACA,SAAA,CAKA,yOACC,SAAA,CAED,0KACC,UAAA,CAGF,2GAEC,yCAAA,CAGA,8GAEC,kBAAA,CACA,sBAAA,CACA,4BAAA,CACA,qBAAA,CAKH,yDACC,kBAAA,CACA,iBAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kEACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,iBAAA,CACA,kBAAA,CAIF,gCAEC,UAAA,CACA,WAAA,CAEA,gBAAA,CAGD,kDACC,iBAAA,CACA,kBAAA,CAGD,oDACC,iBAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,UAAA,CACA,SAAA,CACA,gBAAA,CACA,kCAAA,CACA,6CAAA,CACA,6CAAA,CACA,2BAAA,CACA,oBAAA,CACA,0BAAA,CACA,iBAAA,CAEA,gEACC,0CAAA,CACA,8CAAA,CAED,iEACC,+CAAA,CACA,mDAAA,CAGD,4DACC,wDAAA,CAED,yDACC,wDAAA,CACA,qBAAA,CAED,0DACC,wDAAA,CAED,0DACC,WAAA,CACA,8BAAA,CAIF,iDACC,iBAAA,CACA,oBAAA,CAIF,oCACC,iBAAA,CACA,+CAAA,CACA,WAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.avatardiv {\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\twidth: var(--size);\\n\\theight: var(--size);\\n\\n\\t&--unknown {\\n\\t\\tposition: relative;\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t}\\n\\n\\t&:not(&--unknown) {\\n\\t\\t// White/black background for avatars with transparency\\n\\t\\tbackground-color: var(--color-main-background) !important;\\n\\t\\tbox-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;\\n\\t}\\n\\n\\t&--with-menu {\\n\\t\\tcursor: pointer;\\n\\t\\t.action-item {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t}\\n\\t\\t:deep(.action-item__menutoggle) {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\t\\t&:focus,\\n\\t\\t&:hover,\\n\\t\\t&#{&}-loading {\\n\\t\\t\\t:deep(.action-item__menutoggle) {\\n\\t\\t\\t\\topacity: 1;\\n\\t\\t\\t}\\n\\t\\t\\timg {\\n\\t\\t\\t\\topacity: 0.3;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t:deep(.action-item__menutoggle),\\n\\t\\timg {\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t}\\n\\t\\t:deep() {\\n\\t\\t\\t.button-vue,\\n\\t\\t\\t.button-vue__icon {\\n\\t\\t\\t\\theight: var(--size);\\n\\t\\t\\t\\tmin-height: var(--size);\\n\\t\\t\\t\\twidth: var(--size) !important;\\n\\t\\t\\t\\tmin-width: var(--size);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t.avatardiv__initials-wrapper {\\n\\t\\theight: var(--size);\\n\\t\\twidth: var(--size);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tborder-radius: 50%;\\n\\n\\t\\t.unknown {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\ttext-align: center;\\n\\t\\t\\tfont-weight: normal;\\n\\t\\t}\\n\\t}\\n\\n\\timg {\\n\\t\\t// Cover entire area\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\t// Keep ratio\\n\\t\\tobject-fit: cover;\\n\\t}\\n\\n\\t.material-design-icon {\\n\\t\\twidth: var(--size);\\n\\t\\theight: var(--size);\\n\\t}\\n\\n\\t.avatardiv__user-status {\\n\\t\\tposition: absolute;\\n\\t\\tright: -4px;\\n\\t\\tbottom: -4px;\\n\\t\\tmax-height: 18px;\\n\\t\\tmax-width: 18px;\\n\\t\\theight: 40%;\\n\\t\\twidth: 40%;\\n\\t\\tline-height: 15px;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tborder: 2px solid var(--color-main-background);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-size: 16px;\\n\\t\\tbackground-position: center;\\n\\t\\tborder-radius: 50%;\\n\\n\\t\\t.acli:hover & {\\n\\t\\t\\tborder-color: var(--color-background-hover);\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t\\t.acli.active & {\\n\\t\\t\\tborder-color: var(--color-primary-element-light);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t}\\n\\n\\t\\t&--online{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-online.svg');\\n\\t\\t}\\n\\t\\t&--dnd{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-dnd.svg');\\n\\t\\t\\tbackground-color: #ffffff;\\n\\t\\t}\\n\\t\\t&--away{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-away.svg');\\n\\t\\t}\\n\\t\\t&--icon {\\n\\t\\t\\tborder: none;\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t.popovermenu-wrapper {\\n\\t\\tposition: relative;\\n\\t\\tdisplay: inline-block;\\n\\t}\\n}\\n\\n.avatar-class-icon {\\n\\tborder-radius: 50%;\\n\\tbackground-color: var(--color-background-darker);\\n\\theight: 100%;\\n}\\n\\n\"],sourceRoot:\"\"}]);const v=m},7294:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},436:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-3daafbe0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.name-parts[data-v-3daafbe0]{display:flex;max-width:100%;cursor:inherit}.name-parts__first[data-v-3daafbe0]{overflow:hidden;text-overflow:ellipsis}.name-parts__first[data-v-3daafbe0],.name-parts__last[data-v-3daafbe0]{white-space:pre;cursor:inherit}.name-parts__first strong[data-v-3daafbe0],.name-parts__last strong[data-v-3daafbe0]{font-weight:bold}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcEllipsisedOption/NcEllipsisedOption.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,YAAA,CACA,cAAA,CACA,cAAA,CACA,oCACC,eAAA,CACA,sBAAA,CAED,uEAGC,eAAA,CACA,cAAA,CACA,qFACC,gBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.name-parts {\\n\\tdisplay: flex;\\n\\tmax-width: 100%;\\n\\tcursor: inherit;\\n\\t&__first {\\n\\t\\toverflow: hidden;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n\\t&__first,\\n\\t&__last {\\n\\t\\t// prevent whitespace from being trimmed\\n\\t\\twhite-space: pre;\\n\\t\\tcursor: inherit;\\n\\t\\tstrong {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t}\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},2105:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.icon-vue {\\n\\tdisplay: flex;\\n\\tjustify-content: center;\\n\\talign-items: center;\\n\\tmin-width: 44px;\\n\\tmin-height: 44px;\\n\\topacity: 1;\\n\\n\\t&:deep(svg) {\\n\\t\\tfill: currentColor;\\n\\t\\tmax-width: 20px;\\n\\t\\tmax-height: 20px;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},4629:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-160648e6]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.option[data-v-160648e6]{display:flex;align-items:center;width:100%;height:var(--height);cursor:inherit}.option__avatar[data-v-160648e6]{margin-right:var(--margin)}.option__details[data-v-160648e6]{display:flex;flex:1 1;flex-direction:column;justify-content:center;min-width:0}.option__lineone[data-v-160648e6]{color:var(--color-main-text)}.option__linetwo[data-v-160648e6]{color:var(--color-text-maxcontrast)}.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.1em}.option__lineone strong[data-v-160648e6],.option__linetwo strong[data-v-160648e6]{font-weight:bold}.option__icon[data-v-160648e6]{width:44px;height:44px;color:var(--color-text-maxcontrast)}.option__icon.icon[data-v-160648e6]{flex:0 0 44px;opacity:.7;background-position:center;background-size:16px}.option__details[data-v-160648e6],.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6],.option__icon[data-v-160648e6]{cursor:inherit}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcListItemIcon/NcListItemIcon.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,yBACC,YAAA,CACA,kBAAA,CACA,UAAA,CACA,oBAAA,CACA,cAAA,CAEA,iCACC,0BAAA,CAGD,kCACC,YAAA,CACA,QAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAGD,kCACC,4BAAA,CAGD,kCACC,mCAAA,CAGD,oEAEC,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CACA,kFACC,gBAAA,CAIF,+BACC,UChBe,CDiBf,WCjBe,CDkBf,mCAAA,CACA,oCACC,aAAA,CACA,UCHc,CDId,0BAAA,CACA,oBAAA,CAIF,qIAIC,cAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.option {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\twidth: 100%;\\n\\theight: var(--height);\\n\\tcursor: inherit;\\n\\n\\t&__avatar {\\n\\t\\tmargin-right: var(--margin);\\n\\t}\\n\\n\\t&__details {\\n\\t\\tdisplay: flex;\\n\\t\\tflex: 1 1;\\n\\t\\tflex-direction: column;\\n\\t\\tjustify-content: center;\\n\\t\\tmin-width: 0;\\n\\t}\\n\\n\\t&__lineone {\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&__linetwo {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t&__lineone,\\n\\t&__linetwo {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\tline-height: 1.1em;\\n\\t\\tstrong {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t}\\n\\t}\\n\\n\\t&__icon {\\n\\t\\twidth: $clickable-area;\\n\\t\\theight: $clickable-area;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t&.icon {\\n\\t\\t\\tflex: 0 0 $clickable-area;\\n\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\tbackground-position: center;\\n\\t\\t\\tbackground-size: 16px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__details,\\n\\t&__lineone,\\n\\t&__linetwo,\\n\\t&__icon {\\n\\t\\tcursor: inherit;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},8502:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.loading-icon svg{\\n\\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},6466:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7dba3f6e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.mention-bubble--primary .mention-bubble__content[data-v-7dba3f6e]{color:var(--color-primary-element-text);background-color:var(--color-primary-element)}.mention-bubble__wrapper[data-v-7dba3f6e]{max-width:150px;height:18px;vertical-align:text-bottom;display:inline-flex;align-items:center}.mention-bubble__content[data-v-7dba3f6e]{display:inline-flex;overflow:hidden;align-items:center;max-width:100%;height:20px;-webkit-user-select:none;user-select:none;padding-right:6px;padding-left:2px;border-radius:10px;background-color:var(--color-background-dark)}.mention-bubble__icon[data-v-7dba3f6e]{position:relative;width:16px;height:16px;border-radius:8px;background-color:var(--color-background-darker);background-repeat:no-repeat;background-position:center;background-size:12px}.mention-bubble__icon--with-avatar[data-v-7dba3f6e]{color:inherit;background-size:cover}.mention-bubble__title[data-v-7dba3f6e]{overflow:hidden;margin-left:2px;white-space:nowrap;text-overflow:ellipsis}.mention-bubble__title[data-v-7dba3f6e]::before{content:attr(title)}.mention-bubble__select[data-v-7dba3f6e]{position:absolute;z-index:-1;left:-1000px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcRichContenteditable/NcMentionBubble.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CAAA,mECCC,uCAAA,CACA,6CAAA,CAGD,0CACC,eAXiB,CAajB,WAAA,CACA,0BAAA,CACA,mBAAA,CACA,kBAAA,CAGD,0CACC,mBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,WAzBc,CA0Bd,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBA3Be,CA4Bf,kBAAA,CACA,6CAAA,CAGD,uCACC,iBAAA,CACA,UAjCmB,CAkCnB,WAlCmB,CAmCnB,iBAAA,CACA,+CAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,oDACC,aAAA,CACA,qBAAA,CAIF,wCACC,eAAA,CACA,eAlDe,CAmDf,kBAAA,CACA,sBAAA,CAEA,gDACC,mBAAA,CAKF,yCACC,iBAAA,CACA,UAAA,CACA,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n$bubble-height: 20px;\\n$bubble-max-width: 150px;\\n$bubble-padding: 2px;\\n$bubble-avatar-size: $bubble-height - 2 * $bubble-padding;\\n\\n.mention-bubble {\\n\\t&--primary &__content {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tmax-width: $bubble-max-width;\\n\\t\\t// Align with text\\n\\t\\theight: $bubble-height - $bubble-padding;\\n\\t\\tvertical-align: text-bottom;\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__content {\\n\\t\\tdisplay: inline-flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tmax-width: 100%;\\n\\t\\theight: $bubble-height ;\\n\\t\\t-webkit-user-select: none;\\n\\t\\tuser-select: none;\\n\\t\\tpadding-right: $bubble-padding * 3;\\n\\t\\tpadding-left: $bubble-padding;\\n\\t\\tborder-radius: math.div($bubble-height, 2);\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\tposition: relative;\\n\\t\\twidth: $bubble-avatar-size;\\n\\t\\theight: $bubble-avatar-size;\\n\\t\\tborder-radius: math.div($bubble-avatar-size, 2);\\n\\t\\tbackground-color: var(--color-background-darker);\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-position: center;\\n\\t\\tbackground-size: $bubble-avatar-size - 2 * $bubble-padding;\\n\\n\\t\\t&--with-avatar {\\n\\t\\t\\tcolor: inherit;\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t}\\n\\t}\\n\\n\\t&__title {\\n\\t\\toverflow: hidden;\\n\\t\\tmargin-left: $bubble-padding;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\t// Put title in ::before so it is not selectable\\n\\t\\t&::before {\\n\\t\\t\\tcontent: attr(title);\\n\\t\\t}\\n\\t}\\n\\n\\t// Hide the mention id so it is selectable\\n\\t&__select {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: -1;\\n\\t\\tleft: -1000px;\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},7283:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}body{--vs-search-input-color: var(--color-main-text);--vs-search-input-bg: var(--color-main-background);--vs-search-input-placeholder-color: var(--color-text-maxcontrast);--vs-font-size: var(--default-font-size);--vs-line-height: var(--default-line-height);--vs-state-disabled-bg: var(--color-background-hover);--vs-state-disabled-color: var(--color-text-maxcontrast);--vs-state-disabled-controls-color: var(--color-text-maxcontrast);--vs-state-disabled-cursor: not-allowed;--vs-disabled-bg: var(--color-background-hover);--vs-disabled-color: var(--color-text-maxcontrast);--vs-disabled-cursor: not-allowed;--vs-border-color: var(--color-border-maxcontrast);--vs-border-width: 2px;--vs-border-style: solid;--vs-border-radius: var(--border-radius-large);--vs-controls-color: var(--color-text-maxcontrast);--vs-selected-bg: var(--color-background-dark);--vs-selected-color: var(--color-main-text);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: var(--color-main-background);--vs-dropdown-color: var(--color-main-text);--vs-dropdown-z-index: 9999;--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);--vs-dropdown-option-padding: 8px 20px;--vs-dropdown-option--active-bg: var(--color-background-hover);--vs-dropdown-option--active-color: var(--color-main-text);--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);--vs-dropdown-option--deselect-bg: var(--color-error);--vs-dropdown-option--deselect-color: #fff;--vs-transition-duration: 0ms}.v-select.select{min-height:44px;min-width:260px;margin:0}.v-select.select .vs__selected{min-height:36px;padding:0 .5em;border-radius:calc(var(--vs-border-radius) - 4px) !important}.v-select.select .vs__clear{margin-right:2px}.v-select.select.vs--open .vs__dropdown-toggle{border-color:var(--color-primary-element);border-bottom-color:rgba(0,0,0,0)}.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:hover{border-color:var(--color-primary-element)}.v-select.select.vs--disabled .vs__search,.v-select.select.vs--disabled .vs__selected{color:var(--color-text-maxcontrast)}.v-select.select.vs--disabled .vs__clear,.v-select.select.vs--disabled .vs__deselect{display:none}.v-select.select--no-wrap .vs__selected-options{flex-wrap:nowrap;overflow:auto;min-width:unset}.v-select.select--no-wrap .vs__selected-options .vs__selected{min-width:unset}.v-select.select--drop-up.vs--open .vs__dropdown-toggle{border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-color:rgba(0,0,0,0);border-bottom-color:var(--color-primary-element)}.v-select.select .vs__selected-options{min-height:40px}.v-select.select .vs__selected-options .vs__selected~.vs__search[readonly]{position:absolute}.v-select.select.vs--single.vs--loading .vs__selected,.v-select.select.vs--single.vs--open .vs__selected{max-width:100%}.v-select.select.vs--single .vs__selected-options{flex-wrap:nowrap}.vs__dropdown-menu{border-color:var(--color-primary-element) !important;padding:4px !important}.vs__dropdown-menu--floating{width:max-content;position:absolute;top:0;left:0}.vs__dropdown-menu--floating-placement-top{border-radius:var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;border-top-style:var(--vs-border-style) !important;border-bottom-style:none !important;box-shadow:0px -1px 1px 0px var(--color-box-shadow) !important}.vs__dropdown-menu .vs__dropdown-option{border-radius:6px !important}.vs__dropdown-menu .vs__no-options{color:var(--color-text-lighter) !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcSelect/NcSelect.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,KAOC,+CAAA,CACA,kDAAA,CACA,kEAAA,CAGA,wCAAA,CACA,4CAAA,CAGA,qDAAA,CACA,wDAAA,CACA,iEAAA,CACA,uCAAA,CACA,+CAAA,CACA,kDAAA,CACA,iCAAA,CAGA,kDAAA,CACA,sBAAA,CACA,wBAAA,CACA,8CAAA,CAGA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,kDAAA,CACA,kDAAA,CACA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,2BAAA,CACA,iEAAA,CAGA,sCAAA,CAGA,8DAAA,CACA,0DAAA,CAGA,uFAAA,CAGA,qDAAA,CACA,0CAAA,CAGA,6BAAA,CAGD,iBAEC,eC3CgB,CD4ChB,eAAA,CACA,QAAA,CAEA,+BACC,eAAA,CACA,cAAA,CACA,4DAAA,CAGD,4BACC,gBAAA,CAGD,+CACC,yCAAA,CACA,iCAAA,CAGD,yEACC,yCAAA,CAIA,sFAEC,mCAAA,CAGD,qFAEC,YAAA,CAKD,gDACC,gBAAA,CACA,aAAA,CACA,eAAA,CACA,8DACC,eAAA,CAOD,wDACC,iEAAA,CACA,8BAAA,CACA,gDAAA,CAKH,uCAEC,eAAA,CAGA,2EACC,iBAAA,CAOA,yGAEC,cAAA,CAGF,kDACC,gBAAA,CAKH,mBACC,oDAAA,CACA,sBAAA,CAEA,6BAEC,iBAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CAEA,2CACC,4EAAA,CACA,kDAAA,CACA,mCAAA,CACA,8DAAA,CAIF,wCACC,4BAAA,CAGD,mCACC,0CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\nbody {\\n\\t/**\\n\\t * Set custom vue-select CSS variables.\\n\\t * Needs to be on the body (not :root) for theming to apply (see nextcloud/server#36462)\\n\\t */\\n\\n\\t/* Search Input */\\n\\t--vs-search-input-color: var(--color-main-text);\\n\\t--vs-search-input-bg: var(--color-main-background);\\n\\t--vs-search-input-placeholder-color: var(--color-text-maxcontrast);\\n\\n\\t/* Font */\\n\\t--vs-font-size: var(--default-font-size);\\n\\t--vs-line-height: var(--default-line-height);\\n\\n\\t/* Disabled State */\\n\\t--vs-state-disabled-bg: var(--color-background-hover);\\n\\t--vs-state-disabled-color: var(--color-text-maxcontrast);\\n\\t--vs-state-disabled-controls-color: var(--color-text-maxcontrast);\\n\\t--vs-state-disabled-cursor: not-allowed;\\n\\t--vs-disabled-bg: var(--color-background-hover);\\n\\t--vs-disabled-color: var(--color-text-maxcontrast);\\n\\t--vs-disabled-cursor: not-allowed;\\n\\n\\t/* Borders */\\n\\t--vs-border-color: var(--color-border-maxcontrast);\\n\\t--vs-border-width: 2px;\\n\\t--vs-border-style: solid;\\n\\t--vs-border-radius: var(--border-radius-large);\\n\\n\\t/* Component Controls: Clear, Open Indicator */\\n\\t--vs-controls-color: var(--color-text-maxcontrast);\\n\\n\\t/* Selected */\\n\\t--vs-selected-bg: var(--color-background-dark);\\n\\t--vs-selected-color: var(--color-main-text);\\n\\t--vs-selected-border-color: var(--vs-border-color);\\n\\t--vs-selected-border-style: var(--vs-border-style);\\n\\t--vs-selected-border-width: var(--vs-border-width);\\n\\n\\t/* Dropdown */\\n\\t--vs-dropdown-bg: var(--color-main-background);\\n\\t--vs-dropdown-color: var(--color-main-text);\\n\\t--vs-dropdown-z-index: 9999;\\n\\t--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);\\n\\n\\t/* Options */\\n\\t--vs-dropdown-option-padding: 8px 20px;\\n\\n\\t/* Active State */\\n\\t--vs-dropdown-option--active-bg: var(--color-background-hover);\\n\\t--vs-dropdown-option--active-color: var(--color-main-text);\\n\\n\\t/* Keyboard Focus State */\\n\\t--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);\\n\\n\\t/* Deselect State */\\n\\t--vs-dropdown-option--deselect-bg: var(--color-error);\\n\\t--vs-dropdown-option--deselect-color: #fff;\\n\\n\\t/* Transitions */\\n\\t--vs-transition-duration: 0ms;\\n}\\n\\n.v-select.select {\\n\\t/* Override default vue-select styles */\\n\\tmin-height: $clickable-area;\\n\\tmin-width: 260px;\\n\\tmargin: 0;\\n\\n\\t.vs__selected {\\n\\t\\tmin-height: 36px;\\n\\t\\tpadding: 0 0.5em;\\n\\t\\tborder-radius: calc(var(--vs-border-radius) - 4px) !important;\\n\\t}\\n\\n\\t.vs__clear {\\n\\t\\tmargin-right: 2px;\\n\\t}\\n\\n\\t&.vs--open .vs__dropdown-toggle {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t\\tborder-bottom-color: transparent;\\n\\t}\\n\\n\\t&:not(.vs--disabled, .vs--open) .vs__dropdown-toggle:hover {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t}\\n\\n\\t&.vs--disabled {\\n\\t\\t.vs__search,\\n\\t\\t.vs__selected {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\n\\t\\t.vs__clear,\\n\\t\\t.vs__deselect {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t&--no-wrap {\\n\\t\\t.vs__selected-options {\\n\\t\\t\\tflex-wrap: nowrap;\\n\\t\\t\\toverflow: auto;\\n\\t\\t\\tmin-width: unset;\\n\\t\\t\\t.vs__selected {\\n\\t\\t\\t\\tmin-width: unset;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&--drop-up {\\n\\t\\t&.vs--open {\\n\\t\\t\\t.vs__dropdown-toggle {\\n\\t\\t\\t\\tborder-radius: 0 0 var(--vs-border-radius) var(--vs-border-radius);\\n\\t\\t\\t\\tborder-top-color: transparent;\\n\\t\\t\\t\\tborder-bottom-color: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t.vs__selected-options {\\n\\t\\t// If search is hidden, ensure that the height of the search is the same\\n\\t\\tmin-height: 40px; // 36px search height + 4px search margin\\n\\n\\t\\t// Hide search from dom if unused to prevent unneeded flex wrap\\n\\t\\t.vs__selected ~ .vs__search[readonly] {\\n\\t\\t\\tposition: absolute;\\n\\t\\t}\\n\\t}\\n\\n\\t&.vs--single {\\n\\t\\t&.vs--loading,\\n\\t\\t&.vs--open {\\n\\t\\t\\t.vs__selected {\\n\\t\\t\\t\\t// Fix `max-width` for `position: absolute`\\n\\t\\t\\t\\tmax-width: 100%;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t.vs__selected-options {\\n\\t\\t\\tflex-wrap: nowrap;\\n\\t\\t}\\n\\t}\\n}\\n\\n.vs__dropdown-menu {\\n\\tborder-color: var(--color-primary-element) !important;\\n\\tpadding: 4px !important;\\n\\n\\t&--floating {\\n\\t\\t/* Fallback styles overidden by programmatically set inline styles */\\n\\t\\twidth: max-content;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\n\\t\\t&-placement-top {\\n\\t\\t\\tborder-radius: var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;\\n\\t\\t\\tborder-top-style: var(--vs-border-style) !important;\\n\\t\\t\\tborder-bottom-style: none !important;\\n\\t\\t\\tbox-shadow: 0px -1px 1px 0px var(--color-box-shadow) !important;\\n\\t\\t}\\n\\t}\\n\\n\\t.vs__dropdown-option {\\n\\t\\tborder-radius: 6px !important;\\n\\t}\\n\\n\\t.vs__no-options {\\n\\t\\tcolor: var(--color-text-lighter) !important;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o=\"\",a=void 0!==t[5];return t[4]&&(o+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(o+=\"@media \".concat(t[2],\" {\")),a&&(o+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),o+=e(t),a&&(o+=\"}\"),t[2]&&(o+=\"}\"),t[4]&&(o+=\"}\"),o})).join(\"\")},t.i=function(e,o,a,n,i){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?\" \".concat(u[5]):\"\",\" {\").concat(u[1],\"}\")),u[5]=i),o&&(u[2]?(u[1]=\"@media \".concat(u[2],\" {\").concat(u[1],\"}\"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]=\"@supports (\".concat(u[4],\") {\").concat(u[1],\"}\"),u[4]=n):u[4]=\"\".concat(n)),t.push(u))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['\"].*['\"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/[\"'() \\t\\n]|(%20)/.test(e)||t.needQuotes?'\"'.concat(e.replace(/\"/g,'\\\\\"').replace(/\\n/g,\"\\\\n\"),'\"'):e):e}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if(\"function\"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(a),i=\"/*# \".concat(n,\" */\");return[t].concat([i]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function o(e){for(var o=-1,a=0;a{\"use strict\";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(o)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{\"use strict\";e.exports=function(e){var t=o.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a=\"\";o.supports&&(a+=\"@supports (\".concat(o.supports,\") {\")),o.media&&(a+=\"@media \".concat(o.media,\" {\"));var n=void 0!==o.layer;n&&(a+=\"@layer\".concat(o.layer.length>0?\" \".concat(o.layer):\"\",\" {\")),a+=o.css,n&&(a+=\"}\"),o.media&&(a+=\"}\"),o.supports&&(a+=\"}\");var i=o.sourceMap;i&&\"undefined\"!=typeof btoa&&(a+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},3330:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>y});var a=o(4262);const n={name:\"NcMentionBubble\",props:{id:{type:String,required:!0},title:{type:String,required:!0},icon:{type:String,required:!0},iconUrl:{type:[String,null],default:null},source:{type:String,required:!0},primary:{type:Boolean,default:!1}},computed:{avatarUrl:function(){return this.iconUrl?this.iconUrl:this.id&&\"users\"===this.source?this.getAvatarUrl(this.id,44):null},mentionText:function(){return this.id.includes(\" \")||this.id.includes(\"/\")?'@\"'.concat(this.id,'\"'):\"@\".concat(this.id)}},methods:{getAvatarUrl:function(e,t){return(0,a.generateUrl)(\"/avatar/{user}/{size}\",{user:e,size:t})}}};var i=o(3379),r=o.n(i),s=o(7795),l=o.n(s),c=o(569),u=o.n(c),d=o(3565),m=o.n(d),p=o(9216),h=o.n(p),g=o(4589),v=o.n(g),f=o(6466),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,\"head\"),A.domAPI=l(),A.insertStyleElement=h();r()(f.Z,A);f.Z&&f.Z.locals&&f.Z.locals;const y=(0,o(1900).Z)(n,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"mention-bubble\",class:{\"mention-bubble--primary\":e.primary},attrs:{contenteditable:\"false\"}},[t(\"span\",{staticClass:\"mention-bubble__wrapper\"},[t(\"span\",{staticClass:\"mention-bubble__content\"},[t(\"span\",{staticClass:\"mention-bubble__icon\",class:[e.icon,\"mention-bubble__icon--\".concat(e.avatarUrl?\"with-avatar\":\"\")],style:e.avatarUrl?{backgroundImage:\"url(\".concat(e.avatarUrl,\")\")}:null}),e._v(\" \"),t(\"span\",{staticClass:\"mention-bubble__title\",attrs:{role:\"heading\",title:e.title}})]),e._v(\" \"),t(\"span\",{staticClass:\"mention-bubble__select\",attrs:{role:\"none\"}},[e._v(e._s(e.mentionText))])])])}),[],!1,null,\"7dba3f6e\",null).exports},9158:()=>{},5727:()=>{},3051:()=>{},2102:()=>{},6274:()=>{},1287:()=>{},8488:()=>{},9280:()=>{},2405:()=>{},8220:()=>{},4076:()=>{},1900:(e,t,o)=>{\"use strict\";function a(e,t,o,a,n,i,r,s){var l,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=o,c._compiled=!0),a&&(c.functional=!0),i&&(c._scopeId=\"data-v-\"+i),r?(l=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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=s?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}o.d(t,{Z:()=>a})},7127:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS00LTRoMjR2MjRILTR6Ii8+PHBhdGggZD0iTTYuOS4xQzMgLjYtLjEgNC0uMSA4YzAgNC40IDMuNiA4IDggOCA0IDAgNy40LTMgOC02LjktMS4yIDEuMy0yLjkgMi4xLTQuNyAyLjEtMy41IDAtNi40LTIuOS02LjQtNi40IDAtMS45LjgtMy42IDIuMS00Ljd6IiBmaWxsPSIjZjRhMzMxIi8+PC9zdmc+Cg==\"},2605:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTS00LTRoMjR2MjRILTRWLTR6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhzMy42IDggOCA4IDgtMy42IDgtOC0zLjYtOC04LTh6IiBmaWxsPSIjZWQ0ODRjIi8+PHBhdGggZD0iTTUgNi41aDZjLjggMCAxLjUuNyAxLjUgMS41cy0uNyAxLjUtMS41IDEuNUg1Yy0uOCAwLTEuNS0uNy0xLjUtMS41UzQuMiA2LjUgNSA2LjV6IiBmaWxsPSIjZmRmZmZmIi8+PC9zdmc+Cg==\"},3423:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTQuOCAxMS4yaDYuNFY0LjhINC44djYuNHpNOCAwQzMuNiAwIDAgMy42IDAgOHMzLjYgOCA4IDggOC0zLjYgOC04LTMuNi04LTgtOHoiIGZpbGw9IiM0OWIzODIiLz48L3N2Zz4K\"},3607:e=>{\"use strict\";e.exports=require(\"@nextcloud/auth\")},768:e=>{\"use strict\";e.exports=require(\"@nextcloud/axios\")},7713:e=>{\"use strict\";e.exports=require(\"@nextcloud/capabilities\")},542:e=>{\"use strict\";e.exports=require(\"@nextcloud/event-bus\")},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},4262:e=>{\"use strict\";e.exports=require(\"@nextcloud/router\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},8618:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/Close.vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function o(a){var n=t[a];if(void 0!==n)return n.exports;var i=t[a]={id:a,exports:{}};return e[a](i,i.exports,o),i.exports}o.m=e,o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},o.b=document.baseURI||self.location.href,o.nc=void 0;var a={};return(()=>{\"use strict\";function e(t){return e=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},e(t)}function t(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function n(e){for(var o=1;oB});var r=o(4378),s=o(7176),l=o(768),c=o.n(l),u=o(4262);function d(e){return d=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},d(e)}function m(){m=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var p={};function h(){}function g(){}function v(){}var f={};l(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,m=c.value;return m&&\"object\"==d(m)&&o.call(m,\"__await\")?t.resolve(m.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(m).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function p(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}var h=function e(t){var o={};if(1===t.nodeType){if(t.attributes.length>0){o[\"@attributes\"]={};for(var a=0;a\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t'});case 4:return t=e.sent,e.abrupt(\"return\",g(t.data));case 6:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){p(i,a,n,r,s,\"next\",e)}function s(e){p(i,a,n,r,s,\"throw\",e)}r(void 0)}))});return function(){return t.apply(this,arguments)}}(),f=o(932),A=[\"fetchTags\",\"optionsFilter\",\"passthru\"];function y(e){return y=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},y(e)}function k(){k=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,d=c.value;return d&&\"object\"==y(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===d)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),d;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,d):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function b(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function S(e){for(var t=1;t\n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport axios from '@nextcloud/axios'\nimport { davGetDefaultPropfind } from '@nextcloud/files'\n\n/**\n * @param {any} url -\n */\nexport default async function(url) {\n\tconst response = await axios({\n\t\tmethod: 'PROPFIND',\n\t\turl,\n\t\tdata: davGetDefaultPropfind(),\n\t})\n\n\t// TODO: create new parser or use cdav-lib when available\n\tconst file = OCA.Files.App.fileList.filesClient._client.parseMultiStatus(response.data)\n\t// TODO: create new parser or use cdav-lib when available\n\tconst fileInfo = OCA.Files.App.fileList.filesClient._parseFileInfo(file[0])\n\n\t// TODO remove when no more legacy backbone is used\n\tfileInfo.get = (key) => fileInfo[key]\n\tfileInfo.isDirectory = () => fileInfo.mimetype === 'httpd/unix-directory'\n\n\treturn fileInfo\n}\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./LegacyView.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./LegacyView.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","import { render, staticRenderFns } from \"./LegacyView.vue?vue&type=template&id=2245cbe7&\"\nimport script from \"./LegacyView.vue?vue&type=script&lang=js&\"\nexport * from \"./LegacyView.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\nexport default component.exports","\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SidebarTab.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SidebarTab.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SidebarTab.vue?vue&type=template&id=164a4bde&\"\nimport script from \"./SidebarTab.vue?vue&type=script&lang=js&\"\nexport * from \"./SidebarTab.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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSidebarTab',{ref:\"tab\",attrs:{\"id\":_vm.id,\"name\":_vm.name,\"icon\":_vm.icon},on:{\"bottomReached\":_vm.onScrollBottomReached},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_vm._t(\"icon\")]},proxy:true}],null,true)},[_vm._v(\" \"),(_vm.loading)?_c('NcEmptyContent',{attrs:{\"icon\":\"icon-loading\"}}):_vm._e(),_vm._v(\" \"),_c('div',{ref:\"mount\"})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { createClient } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getRequestToken } from '@nextcloud/auth';\nconst rootUrl = generateRemoteUrl('dav');\nexport const davClient = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() ?? '',\n },\n});\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport camelCase from 'camelcase';\nexport const parseTags = (tags) => {\n return tags.map(({ props }) => Object.fromEntries(Object.entries(props)\n .map(([key, value]) => [camelCase(key), value])));\n};\n/**\n * Parse id from `Content-Location` header\n */\nexport const parseIdFromLocation = (url) => {\n const queryPos = url.indexOf('?');\n if (queryPos > 0) {\n url = url.substring(0, queryPos);\n }\n const parts = url.split('/');\n let result;\n do {\n result = parts[parts.length - 1];\n parts.pop();\n // note: first result can be empty when there is a trailing slash,\n // so we take the part before that\n } while (!result && parts.length > 0);\n return Number(result);\n};\nexport const formatTag = (initialTag) => {\n const tag = { ...initialTag };\n if (tag.name && !tag.displayName) {\n return tag;\n }\n tag.name = tag.displayName;\n delete tag.displayName;\n return tag;\n};\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger';\nexport const logger = getLoggerBuilder()\n .setApp('systemtags')\n .detectUser()\n .build();\n","import axios from '@nextcloud/axios';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { davClient } from './davClient.js';\nimport { formatTag, parseIdFromLocation, parseTags } from '../utils';\nimport { logger } from '../logger.js';\nconst fetchTagsBody = `\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n`;\nexport const fetchTags = async () => {\n const path = '/systemtags';\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load tags'), { error });\n throw new Error(t('systemtags', 'Failed to load tags'));\n }\n};\nexport const fetchLastUsedTagIds = async () => {\n const url = generateUrl('/apps/systemtags/lastused');\n try {\n const { data: lastUsedTagIds } = await axios.get(url);\n return lastUsedTagIds.map(Number);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load last used tags'), { error });\n throw new Error(t('systemtags', 'Failed to load last used tags'));\n }\n};\nexport const fetchSelectedTags = async (fileId) => {\n const path = '/systemtags-relations/files/' + fileId;\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags-relations/files/*/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load selected tags'), { error });\n throw new Error(t('systemtags', 'Failed to load selected tags'));\n }\n};\nexport const selectTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n const tagToPut = formatTag(tag);\n try {\n await davClient.customRequest(path, {\n method: 'PUT',\n data: tagToPut,\n });\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to select tag'), { error });\n throw new Error(t('systemtags', 'Failed to select tag'));\n }\n};\n/**\n * @return created tag id\n */\nexport const createTag = async (fileId, tag) => {\n const path = '/systemtags';\n const tagToPost = formatTag(tag);\n try {\n const { headers } = await davClient.customRequest(path, {\n method: 'POST',\n data: tagToPost,\n });\n const contentLocation = headers.get('content-location');\n if (contentLocation) {\n const tagToPut = {\n ...tagToPost,\n id: parseIdFromLocation(contentLocation),\n };\n await selectTag(fileId, tagToPut);\n return tagToPut.id;\n }\n logger.error(t('systemtags', 'Missing \"Content-Location\" header'));\n throw new Error(t('systemtags', 'Missing \"Content-Location\" header'));\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to create tag'), { error });\n throw new Error(t('systemtags', 'Failed to create tag'));\n }\n};\nexport const deleteTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n try {\n await davClient.deleteFile(path);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to delete tag'), { error });\n throw new Error(t('systemtags', 'Failed to delete tag'));\n }\n};\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"system-tags\"},[(_vm.loadingTags)?_c('NcLoadingIcon',{attrs:{\"name\":_vm.t('systemtags', 'Loading collaborative tags …'),\"size\":32}}):[_c('label',{attrs:{\"for\":\"system-tags-input\"}},[_vm._v(_vm._s(_vm.t('systemtags', 'Search or create collaborative tags')))]),_vm._v(\" \"),_c('NcSelectTags',{staticClass:\"system-tags__select\",attrs:{\"input-id\":\"system-tags-input\",\"placeholder\":_vm.t('systemtags', 'Collaborative tags …'),\"options\":_vm.sortedTags,\"value\":_vm.selectedTags,\"create-option\":_vm.createOption,\"taggable\":true,\"passthru\":true,\"fetch-tags\":false,\"loading\":_vm.loading},on:{\"input\":_vm.handleInput,\"option:selected\":_vm.handleSelect,\"option:created\":_vm.handleCreate,\"option:deselected\":_vm.handleDeselect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('systemtags', 'No tags to select, type to create a new tag'))+\"\\n\\t\\t\\t\")]},proxy:true}])})]],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./SystemTags.vue?vue&type=template&id=7746ac6e&scoped=true&\"\nimport script from \"./SystemTags.vue?vue&type=script&lang=ts&\"\nexport * from \"./SystemTags.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\"\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 \"7746ac6e\",\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=style&index=0&id=7693eba4&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=style&index=0&id=7693eba4&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Sidebar.vue?vue&type=template&id=7693eba4&scoped=true&\"\nimport script from \"./Sidebar.vue?vue&type=script&lang=js&\"\nexport * from \"./Sidebar.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Sidebar.vue?vue&type=style&index=0&id=7693eba4&prod&lang=scss&scoped=true&\"\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 \"7693eba4\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.file)?_c('NcAppSidebar',_vm._b({ref:\"sidebar\",attrs:{\"force-menu\":true,\"tabindex\":\"0\"},on:_vm._d({\"close\":_vm.close,\"update:active\":_vm.setActiveTab,\"update:starred\":_vm.toggleStarred,\"opening\":_vm.handleOpening,\"opened\":_vm.handleOpened,\"closing\":_vm.handleClosing,\"closed\":_vm.handleClosed},[_vm.defaultActionListener,function($event){$event.stopPropagation();$event.preventDefault();return _vm.onDefaultAction.apply(null, arguments)}]),scopedSlots:_vm._u([(_vm.fileInfo)?{key:\"description\",fn:function(){return [_c('div',{staticClass:\"sidebar__description\"},[(_vm.isSystemTagsEnabled)?_c('SystemTags',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.showTags),expression:\"showTags\"}],attrs:{\"file-id\":_vm.fileInfo.id},on:{\"has-tags\":value => _vm.showTags = value}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.views),function(view){return _c('LegacyView',{key:view.cid,attrs:{\"component\":view,\"file-info\":_vm.fileInfo}})})],2)]},proxy:true}:null,(_vm.fileInfo)?{key:\"secondary-actions\",fn:function(){return [(_vm.isSystemTagsEnabled)?_c('NcActionButton',{attrs:{\"close-after-click\":true,\"icon\":\"icon-tag\"},on:{\"click\":_vm.toggleTags}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Tags'))+\"\\n\\t\\t\")]):_vm._e()]},proxy:true}:null],null,true)},'NcAppSidebar',_vm.appSidebar,false),[_vm._v(\" \"),_vm._v(\" \"),(_vm.error)?_c('NcEmptyContent',{attrs:{\"icon\":\"icon-error\"}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.error)+\"\\n\\t\")]):(_vm.fileInfo)?_vm._l((_vm.tabs),function(tab){return [(tab.enabled(_vm.fileInfo))?_c('SidebarTab',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.loading),expression:\"!loading\"}],key:tab.id,attrs:{\"id\":tab.id,\"name\":tab.name,\"icon\":tab.icon,\"on-mount\":tab.mount,\"on-update\":tab.update,\"on-destroy\":tab.destroy,\"on-scroll-bottom-reached\":tab.scrollBottomReached,\"file-info\":_vm.fileInfo},scopedSlots:_vm._u([(tab.iconSvg !== undefined)?{key:\"icon\",fn:function(){return [_c('span',{staticClass:\"svg-icon\",domProps:{\"innerHTML\":_vm._s(tab.iconSvg)}})]},proxy:true}:null],null,true)}):_vm._e()]}):_vm._e()],2):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Sidebar {\n\n\t_state\n\n\tconstructor() {\n\t\t// init empty state\n\t\tthis._state = {}\n\n\t\t// init default values\n\t\tthis._state.tabs = []\n\t\tthis._state.views = []\n\t\tthis._state.file = ''\n\t\tthis._state.activeTab = ''\n\t\tconsole.debug('OCA.Files.Sidebar initialized')\n\t}\n\n\t/**\n\t * Get the sidebar state\n\t *\n\t * @readonly\n\t * @memberof Sidebar\n\t * @return {object} the data state\n\t */\n\tget state() {\n\t\treturn this._state\n\t}\n\n\t/**\n\t * Register a new tab view\n\t *\n\t * @memberof Sidebar\n\t * @param {object} tab a new unregistered tab\n\t * @return {boolean}\n\t */\n\tregisterTab(tab) {\n\t\tconst hasDuplicate = this._state.tabs.findIndex(check => check.id === tab.id) > -1\n\t\tif (!hasDuplicate) {\n\t\t\tthis._state.tabs.push(tab)\n\t\t\treturn true\n\t\t}\n\t\tconsole.error(`An tab with the same id ${tab.id} already exists`, tab)\n\t\treturn false\n\t}\n\n\tregisterSecondaryView(view) {\n\t\tconst hasDuplicate = this._state.views.findIndex(check => check.id === view.id) > -1\n\t\tif (!hasDuplicate) {\n\t\t\tthis._state.views.push(view)\n\t\t\treturn true\n\t\t}\n\t\tconsole.error('A similar view already exists', view)\n\t\treturn false\n\t}\n\n\t/**\n\t * Return current opened file\n\t *\n\t * @memberof Sidebar\n\t * @return {string} the current opened file\n\t */\n\tget file() {\n\t\treturn this._state.file\n\t}\n\n\t/**\n\t * Set the current visible sidebar tab\n\t *\n\t * @memberof Sidebar\n\t * @param {string} id the tab unique id\n\t */\n\tsetActiveTab(id) {\n\t\tthis._state.activeTab = id\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { sanitizeSVG } from '@skjnldsv/sanitize-svg'\n\nexport default class Tab {\n\n\t_id\n\t_name\n\t_icon\n\t_iconSvgSanitized\n\t_mount\n\t_setIsActive\n\t_update\n\t_destroy\n\t_enabled\n\t_scrollBottomReached\n\n\t/**\n\t * Create a new tab instance\n\t *\n\t * @param {object} options destructuring object\n\t * @param {string} options.id the unique id of this tab\n\t * @param {string} options.name the translated tab name\n\t * @param {?string} options.icon the icon css class\n\t * @param {?string} options.iconSvg the icon in svg format\n\t * @param {Function} options.mount function to mount the tab\n\t * @param {Function} [options.setIsActive] function to forward the active state of the tab\n\t * @param {Function} options.update function to update the tab\n\t * @param {Function} options.destroy function to destroy the tab\n\t * @param {Function} [options.enabled] define conditions whether this tab is active. Must returns a boolean\n\t * @param {Function} [options.scrollBottomReached] executed when the tab is scrolled to the bottom\n\t */\n\tconstructor({ id, name, icon, iconSvg, mount, setIsActive, update, destroy, enabled, scrollBottomReached } = {}) {\n\t\tif (enabled === undefined) {\n\t\t\tenabled = () => true\n\t\t}\n\t\tif (scrollBottomReached === undefined) {\n\t\t\tscrollBottomReached = () => { }\n\t\t}\n\n\t\t// Sanity checks\n\t\tif (typeof id !== 'string' || id.trim() === '') {\n\t\t\tthrow new Error('The id argument is not a valid string')\n\t\t}\n\t\tif (typeof name !== 'string' || name.trim() === '') {\n\t\t\tthrow new Error('The name argument is not a valid string')\n\t\t}\n\t\tif ((typeof icon !== 'string' || icon.trim() === '') && typeof iconSvg !== 'string') {\n\t\t\tthrow new Error('Missing valid string for icon or iconSvg argument')\n\t\t}\n\t\tif (typeof mount !== 'function') {\n\t\t\tthrow new Error('The mount argument should be a function')\n\t\t}\n\t\tif (setIsActive !== undefined && typeof setIsActive !== 'function') {\n\t\t\tthrow new Error('The setIsActive argument should be a function')\n\t\t}\n\t\tif (typeof update !== 'function') {\n\t\t\tthrow new Error('The update argument should be a function')\n\t\t}\n\t\tif (typeof destroy !== 'function') {\n\t\t\tthrow new Error('The destroy argument should be a function')\n\t\t}\n\t\tif (typeof enabled !== 'function') {\n\t\t\tthrow new Error('The enabled argument should be a function')\n\t\t}\n\t\tif (typeof scrollBottomReached !== 'function') {\n\t\t\tthrow new Error('The scrollBottomReached argument should be a function')\n\t\t}\n\n\t\tthis._id = id\n\t\tthis._name = name\n\t\tthis._icon = icon\n\t\tthis._mount = mount\n\t\tthis._setIsActive = setIsActive\n\t\tthis._update = update\n\t\tthis._destroy = destroy\n\t\tthis._enabled = enabled\n\t\tthis._scrollBottomReached = scrollBottomReached\n\n\t\tif (typeof iconSvg === 'string') {\n\t\t\tsanitizeSVG(iconSvg)\n\t\t\t\t.then(sanitizedSvg => {\n\t\t\t\t\tthis._iconSvgSanitized = sanitizedSvg\n\t\t\t\t})\n\t\t}\n\n\t}\n\n\tget id() {\n\t\treturn this._id\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget icon() {\n\t\treturn this._icon\n\t}\n\n\tget iconSvg() {\n\t\treturn this._iconSvgSanitized\n\t}\n\n\tget mount() {\n\t\treturn this._mount\n\t}\n\n\tget setIsActive() {\n\t\treturn this._setIsActive || (() => undefined)\n\t}\n\n\tget update() {\n\t\treturn this._update\n\t}\n\n\tget destroy() {\n\t\treturn this._destroy\n\t}\n\n\tget enabled() {\n\t\treturn this._enabled\n\t}\n\n\tget scrollBottomReached() {\n\t\treturn this._scrollBottomReached\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport Vue from 'vue'\nimport { translate as t } from '@nextcloud/l10n'\n\nimport SidebarView from './views/Sidebar.vue'\nimport Sidebar from './services/Sidebar.js'\nimport Tab from './models/Tab.js'\n\nVue.prototype.t = t\n\n// Init Sidebar Service\nif (!window.OCA.Files) {\n\twindow.OCA.Files = {}\n}\nObject.assign(window.OCA.Files, { Sidebar: new Sidebar() })\nObject.assign(window.OCA.Files.Sidebar, { Tab })\n\nconsole.debug('OCA.Files.Sidebar initialized')\n\nwindow.addEventListener('DOMContentLoaded', function() {\n\tconst contentElement = document.querySelector('body > .content')\n\t\t|| document.querySelector('body > #content')\n\n\t// Make sure we have a proper layout\n\tif (contentElement) {\n\t\t// Make sure we have a mountpoint\n\t\tif (!document.getElementById('app-sidebar')) {\n\t\t\tconst sidebarElement = document.createElement('div')\n\t\t\tsidebarElement.id = 'app-sidebar'\n\t\t\tcontentElement.appendChild(sidebarElement)\n\t\t}\n\t}\n\n\t// Init vue app\n\tconst View = Vue.extend(SidebarView)\n\tconst AppSidebar = new View({\n\t\tname: 'SidebarRoot',\n\t})\n\tAppSidebar.$mount('#app-sidebar')\n\twindow.OCA.Files.Sidebar.open = AppSidebar.open\n\twindow.OCA.Files.Sidebar.close = AppSidebar.close\n\twindow.OCA.Files.Sidebar.setFullScreenMode = AppSidebar.setFullScreenMode\n})\n","'use strict';\n\nconst UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\n\tfor (let i = 0; i < string.length; i++) {\n\t\tconst character = string[i];\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i) + '-' + string.slice(i);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\ti++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i - 1) + '-' + string.slice(i - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replace(LEADING_CAPITAL, m1 => toLowerCase(m1));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input.replace(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier))\n\t\t.replace(NUMBERS_AND_IDENTIFIER, m => toUpperCase(m));\n};\n\nconst camelCase = (input, options) => {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false ?\n\t\tstring => string.toLowerCase() :\n\t\tstring => string.toLocaleLowerCase(options.locale);\n\tconst toUpperCase = options.locale === false ?\n\t\tstring => string.toUpperCase() :\n\t\tstring => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\n\tif (options.preserveConsecutiveUppercase) {\n\t\tinput = preserveConsecutiveUppercase(input, toLowerCase);\n\t} else {\n\t\tinput = toLowerCase(input);\n\t}\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n};\n\nmodule.exports = camelCase;\n// TODO: Remove this for the next major release\nmodule.exports.default = camelCase;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-sidebar--has-preview[data-v-7693eba4] .app-sidebar-header__figure{background-size:cover}.app-sidebar--has-preview[data-v-7693eba4][data-mimetype=\\\"text/plain\\\"] .app-sidebar-header__figure,.app-sidebar--has-preview[data-v-7693eba4][data-mimetype=\\\"text/markdown\\\"] .app-sidebar-header__figure{background-size:contain}.app-sidebar--full[data-v-7693eba4]{position:fixed !important;z-index:2025 !important;top:0 !important;height:100% !important}.app-sidebar[data-v-7693eba4] .app-sidebar-header__description{margin:0 16px 4px 16px !important}.app-sidebar .svg-icon[data-v-7693eba4] svg{width:20px;height:20px;fill:currentColor}.sidebar__description[data-v-7693eba4]{display:flex;flex-direction:column;width:100%;gap:8px 0}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Sidebar.vue\"],\"names\":[],\"mappings\":\"AAGE,uEACC,qBAAA,CAKA,yMACC,uBAAA,CAKH,oCACC,yBAAA,CACA,uBAAA,CACA,gBAAA,CACA,sBAAA,CAIA,+DACC,iCAAA,CAKD,4CACC,UAAA,CACA,WAAA,CACA,iBAAA,CAKH,uCACC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA\",\"sourcesContent\":[\"\\n.app-sidebar {\\n\\t&--has-preview:deep {\\n\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t}\\n\\n\\t\\t&[data-mimetype=\\\"text/plain\\\"],\\n\\t\\t&[data-mimetype=\\\"text/markdown\\\"] {\\n\\t\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&--full {\\n\\t\\tposition: fixed !important;\\n\\t\\tz-index: 2025 !important;\\n\\t\\ttop: 0 !important;\\n\\t\\theight: 100% !important;\\n\\t}\\n\\n\\t:deep {\\n\\t\\t.app-sidebar-header__description {\\n\\t\\t\\tmargin: 0 16px 4px 16px !important;\\n\\t\\t}\\n\\t}\\n\\n\\t.svg-icon {\\n\\t\\t::v-deep svg {\\n\\t\\t\\twidth: 20px;\\n\\t\\t\\theight: 20px;\\n\\t\\t\\tfill: currentColor;\\n\\t\\t}\\n\\t}\\n}\\n\\n.sidebar__description {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\twidth: 100%;\\n\\tgap: 8px 0;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".system-tags[data-v-7746ac6e]{display:flex;flex-direction:column}.system-tags label[for=system-tags-input][data-v-7746ac6e]{margin-bottom:2px}.system-tags__select[data-v-7746ac6e]{width:100%}.system-tags__select[data-v-7746ac6e] .vs__deselect{padding:0}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/systemtags/src/components/SystemTags.vue\"],\"names\":[],\"mappings\":\"AACA,8BACC,YAAA,CACA,qBAAA,CAEA,2DACC,iBAAA,CAGD,sCACC,UAAA,CAEC,oDACC,SAAA\",\"sourcesContent\":[\"\\n.system-tags {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\n\\tlabel[for=\\\"system-tags-input\\\"] {\\n\\t\\tmargin-bottom: 2px;\\n\\t}\\n\\n\\t&__select {\\n\\t\\twidth: 100%;\\n\\t\\t:deep {\\n\\t\\t\\t.vs__deselect {\\n\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","var map = {\n\t\"./af\": 42786,\n\t\"./af.js\": 42786,\n\t\"./ar\": 30867,\n\t\"./ar-dz\": 14130,\n\t\"./ar-dz.js\": 14130,\n\t\"./ar-kw\": 96135,\n\t\"./ar-kw.js\": 96135,\n\t\"./ar-ly\": 56440,\n\t\"./ar-ly.js\": 56440,\n\t\"./ar-ma\": 47702,\n\t\"./ar-ma.js\": 47702,\n\t\"./ar-sa\": 16040,\n\t\"./ar-sa.js\": 16040,\n\t\"./ar-tn\": 37100,\n\t\"./ar-tn.js\": 37100,\n\t\"./ar.js\": 30867,\n\t\"./az\": 31083,\n\t\"./az.js\": 31083,\n\t\"./be\": 9808,\n\t\"./be.js\": 9808,\n\t\"./bg\": 68338,\n\t\"./bg.js\": 68338,\n\t\"./bm\": 67438,\n\t\"./bm.js\": 67438,\n\t\"./bn\": 8905,\n\t\"./bn-bd\": 76225,\n\t\"./bn-bd.js\": 76225,\n\t\"./bn.js\": 8905,\n\t\"./bo\": 11560,\n\t\"./bo.js\": 11560,\n\t\"./br\": 1278,\n\t\"./br.js\": 1278,\n\t\"./bs\": 80622,\n\t\"./bs.js\": 80622,\n\t\"./ca\": 2468,\n\t\"./ca.js\": 2468,\n\t\"./cs\": 5822,\n\t\"./cs.js\": 5822,\n\t\"./cv\": 50877,\n\t\"./cv.js\": 50877,\n\t\"./cy\": 47373,\n\t\"./cy.js\": 47373,\n\t\"./da\": 24780,\n\t\"./da.js\": 24780,\n\t\"./de\": 59740,\n\t\"./de-at\": 60217,\n\t\"./de-at.js\": 60217,\n\t\"./de-ch\": 60894,\n\t\"./de-ch.js\": 60894,\n\t\"./de.js\": 59740,\n\t\"./dv\": 5300,\n\t\"./dv.js\": 5300,\n\t\"./el\": 50837,\n\t\"./el.js\": 50837,\n\t\"./en-au\": 78348,\n\t\"./en-au.js\": 78348,\n\t\"./en-ca\": 77925,\n\t\"./en-ca.js\": 77925,\n\t\"./en-gb\": 22243,\n\t\"./en-gb.js\": 22243,\n\t\"./en-ie\": 46436,\n\t\"./en-ie.js\": 46436,\n\t\"./en-il\": 47207,\n\t\"./en-il.js\": 47207,\n\t\"./en-in\": 44175,\n\t\"./en-in.js\": 44175,\n\t\"./en-nz\": 76319,\n\t\"./en-nz.js\": 76319,\n\t\"./en-sg\": 31662,\n\t\"./en-sg.js\": 31662,\n\t\"./eo\": 92915,\n\t\"./eo.js\": 92915,\n\t\"./es\": 55655,\n\t\"./es-do\": 55251,\n\t\"./es-do.js\": 55251,\n\t\"./es-mx\": 96112,\n\t\"./es-mx.js\": 96112,\n\t\"./es-us\": 71146,\n\t\"./es-us.js\": 71146,\n\t\"./es.js\": 55655,\n\t\"./et\": 5603,\n\t\"./et.js\": 5603,\n\t\"./eu\": 77763,\n\t\"./eu.js\": 77763,\n\t\"./fa\": 76959,\n\t\"./fa.js\": 76959,\n\t\"./fi\": 11897,\n\t\"./fi.js\": 11897,\n\t\"./fil\": 42549,\n\t\"./fil.js\": 42549,\n\t\"./fo\": 94694,\n\t\"./fo.js\": 94694,\n\t\"./fr\": 94470,\n\t\"./fr-ca\": 63049,\n\t\"./fr-ca.js\": 63049,\n\t\"./fr-ch\": 52330,\n\t\"./fr-ch.js\": 52330,\n\t\"./fr.js\": 94470,\n\t\"./fy\": 5044,\n\t\"./fy.js\": 5044,\n\t\"./ga\": 29295,\n\t\"./ga.js\": 29295,\n\t\"./gd\": 2101,\n\t\"./gd.js\": 2101,\n\t\"./gl\": 38794,\n\t\"./gl.js\": 38794,\n\t\"./gom-deva\": 27884,\n\t\"./gom-deva.js\": 27884,\n\t\"./gom-latn\": 23168,\n\t\"./gom-latn.js\": 23168,\n\t\"./gu\": 95349,\n\t\"./gu.js\": 95349,\n\t\"./he\": 24206,\n\t\"./he.js\": 24206,\n\t\"./hi\": 30094,\n\t\"./hi.js\": 30094,\n\t\"./hr\": 30316,\n\t\"./hr.js\": 30316,\n\t\"./hu\": 22138,\n\t\"./hu.js\": 22138,\n\t\"./hy-am\": 11423,\n\t\"./hy-am.js\": 11423,\n\t\"./id\": 29218,\n\t\"./id.js\": 29218,\n\t\"./is\": 90135,\n\t\"./is.js\": 90135,\n\t\"./it\": 90626,\n\t\"./it-ch\": 10150,\n\t\"./it-ch.js\": 10150,\n\t\"./it.js\": 90626,\n\t\"./ja\": 39183,\n\t\"./ja.js\": 39183,\n\t\"./jv\": 24286,\n\t\"./jv.js\": 24286,\n\t\"./ka\": 12105,\n\t\"./ka.js\": 12105,\n\t\"./kk\": 47772,\n\t\"./kk.js\": 47772,\n\t\"./km\": 18758,\n\t\"./km.js\": 18758,\n\t\"./kn\": 79282,\n\t\"./kn.js\": 79282,\n\t\"./ko\": 33730,\n\t\"./ko.js\": 33730,\n\t\"./ku\": 1408,\n\t\"./ku.js\": 1408,\n\t\"./ky\": 33291,\n\t\"./ky.js\": 33291,\n\t\"./lb\": 36841,\n\t\"./lb.js\": 36841,\n\t\"./lo\": 55466,\n\t\"./lo.js\": 55466,\n\t\"./lt\": 57010,\n\t\"./lt.js\": 57010,\n\t\"./lv\": 37595,\n\t\"./lv.js\": 37595,\n\t\"./me\": 39861,\n\t\"./me.js\": 39861,\n\t\"./mi\": 35493,\n\t\"./mi.js\": 35493,\n\t\"./mk\": 95966,\n\t\"./mk.js\": 95966,\n\t\"./ml\": 87341,\n\t\"./ml.js\": 87341,\n\t\"./mn\": 5115,\n\t\"./mn.js\": 5115,\n\t\"./mr\": 10370,\n\t\"./mr.js\": 10370,\n\t\"./ms\": 9847,\n\t\"./ms-my\": 41237,\n\t\"./ms-my.js\": 41237,\n\t\"./ms.js\": 9847,\n\t\"./mt\": 72126,\n\t\"./mt.js\": 72126,\n\t\"./my\": 56165,\n\t\"./my.js\": 56165,\n\t\"./nb\": 64924,\n\t\"./nb.js\": 64924,\n\t\"./ne\": 16744,\n\t\"./ne.js\": 16744,\n\t\"./nl\": 93901,\n\t\"./nl-be\": 59814,\n\t\"./nl-be.js\": 59814,\n\t\"./nl.js\": 93901,\n\t\"./nn\": 83877,\n\t\"./nn.js\": 83877,\n\t\"./oc-lnc\": 92135,\n\t\"./oc-lnc.js\": 92135,\n\t\"./pa-in\": 15858,\n\t\"./pa-in.js\": 15858,\n\t\"./pl\": 64495,\n\t\"./pl.js\": 64495,\n\t\"./pt\": 89520,\n\t\"./pt-br\": 57971,\n\t\"./pt-br.js\": 57971,\n\t\"./pt.js\": 89520,\n\t\"./ro\": 96459,\n\t\"./ro.js\": 96459,\n\t\"./ru\": 21793,\n\t\"./ru.js\": 21793,\n\t\"./sd\": 40950,\n\t\"./sd.js\": 40950,\n\t\"./se\": 10490,\n\t\"./se.js\": 10490,\n\t\"./si\": 90124,\n\t\"./si.js\": 90124,\n\t\"./sk\": 64249,\n\t\"./sk.js\": 64249,\n\t\"./sl\": 14985,\n\t\"./sl.js\": 14985,\n\t\"./sq\": 51104,\n\t\"./sq.js\": 51104,\n\t\"./sr\": 49131,\n\t\"./sr-cyrl\": 79915,\n\t\"./sr-cyrl.js\": 79915,\n\t\"./sr.js\": 49131,\n\t\"./ss\": 85893,\n\t\"./ss.js\": 85893,\n\t\"./sv\": 98760,\n\t\"./sv.js\": 98760,\n\t\"./sw\": 91172,\n\t\"./sw.js\": 91172,\n\t\"./ta\": 27333,\n\t\"./ta.js\": 27333,\n\t\"./te\": 23110,\n\t\"./te.js\": 23110,\n\t\"./tet\": 52095,\n\t\"./tet.js\": 52095,\n\t\"./tg\": 27321,\n\t\"./tg.js\": 27321,\n\t\"./th\": 9041,\n\t\"./th.js\": 9041,\n\t\"./tk\": 19005,\n\t\"./tk.js\": 19005,\n\t\"./tl-ph\": 75768,\n\t\"./tl-ph.js\": 75768,\n\t\"./tlh\": 89444,\n\t\"./tlh.js\": 89444,\n\t\"./tr\": 72397,\n\t\"./tr.js\": 72397,\n\t\"./tzl\": 28254,\n\t\"./tzl.js\": 28254,\n\t\"./tzm\": 51106,\n\t\"./tzm-latn\": 30699,\n\t\"./tzm-latn.js\": 30699,\n\t\"./tzm.js\": 51106,\n\t\"./ug-cn\": 9288,\n\t\"./ug-cn.js\": 9288,\n\t\"./uk\": 67691,\n\t\"./uk.js\": 67691,\n\t\"./ur\": 13795,\n\t\"./ur.js\": 13795,\n\t\"./uz\": 6791,\n\t\"./uz-latn\": 60588,\n\t\"./uz-latn.js\": 60588,\n\t\"./uz.js\": 6791,\n\t\"./vi\": 65666,\n\t\"./vi.js\": 65666,\n\t\"./x-pseudo\": 14378,\n\t\"./x-pseudo.js\": 14378,\n\t\"./yo\": 75805,\n\t\"./yo.js\": 75805,\n\t\"./zh-cn\": 83839,\n\t\"./zh-cn.js\": 83839,\n\t\"./zh-hk\": 55726,\n\t\"./zh-hk.js\": 55726,\n\t\"./zh-mo\": 99807,\n\t\"./zh-mo.js\": 99807,\n\t\"./zh-tw\": 74152,\n\t\"./zh-tw.js\": 74152\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 46700;","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + \"3b66be39570778909421\" + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 4092;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t4092: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(85891); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","exports","path","split","map","encodeURIComponent","join","e","t","module","self","a","d","default","R","o","i","n","r","s","c","l","m","Symbol","iterator","constructor","prototype","u","Object","keys","getOwnPropertySymbols","filter","getOwnPropertyDescriptor","enumerable","push","apply","p","arguments","length","forEach","h","getOwnPropertyDescriptors","defineProperties","defineProperty","toPrimitive","call","TypeError","String","value","configurable","writable","g","Array","isArray","A","from","toString","slice","name","test","v","k","components","NcButton","DotsHorizontal","NcPopover","props","open","type","Boolean","manualOpen","forceMenu","forceName","menuName","primary","validator","indexOf","defaultIcon","ariaLabel","ariaHidden","placement","boundariesElement","Element","document","querySelector","container","disabled","inline","Number","emits","data","opened","this","focusIndex","randomId","concat","Z","computed","triggerBtnType","watch","methods","isValidSingleAction","componentOptions","Ctor","extendOptions","tag","includes","openMenu","$emit","closeMenu","$refs","popover","clearFocusTrap","returnFocus","menuButton","$el","focus","onOpen","$nextTick","focusFirstAction","onMouseFocusAction","activeElement","target","closest","menu","querySelectorAll","focusAction","onKeydown","keyCode","shiftKey","focusPreviousAction","focusNextAction","focusLastAction","preventDefault","removeCurrentActive","classList","remove","add","preventIfEvent","stopPropagation","onFocus","onBlur","render","$slots","every","propsData","href","startsWith","window","location","origin","util","warn","scopedSlots","icon","class","listeners","click","children","text","trim","f","y","C","title","staticClass","attrs","ref","on","blur","slot","size","delay","handleResize","shown","boundary","popoverBaseClass","setReturnFocus","triggers","show","hide","tabindex","keydown","mousemove","id","role","b","w","P","S","N","x","j","E","O","_","B","styleTagTransform","setAttributes","insert","bind","domAPI","insertStyleElement","locals","z","F","M","T","D","G","undefined","alignment","nativeType","wide","download","to","exact","pressed","realType","flexAlignment","isReverseAligned","console","navigate","isActive","isExactActive","rel","$attrs","$listeners","custom","V","NcLoadingIcon","mixins","buttonVariant","buttonVariantGrouped","checked","indeterminate","loading","wrapperElement","inputProps","isChecked","inputListeners","onToggle","change","cssVars","inputType","checkboxRadioIconElement","mounted","Error","getInputsSet","getElementsByName","q","U","L","$","I","H","W","_self","_c","style","_g","_b","domProps","_v","for","_t","_e","description","hasName","hasDescription","_s","action","appearance","colors","reverse","width","height","viewBox","fill","hasOwnProperty","asyncIterator","toStringTag","create","arg","wrap","getPrototypeOf","_invoke","resolve","__await","then","done","method","delegate","sent","_sent","dispatchException","abrupt","return","resultName","next","nextLoc","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","completion","reset","isNaN","displayName","isGeneratorFunction","mark","setPrototypeOf","__proto__","awrap","AsyncIterator","async","Promise","pop","values","prev","charAt","stop","rval","complete","finish","catch","delegateYield","Dropdown","inheritAttrs","focusTrap","HTMLElement","SVGElement","beforeDestroy","useFocusTrap","popperContent","$focusTrap","createFocusTrap","escapeDeactivates","allowOutsideClick","trapStack","activate","deactivate","afterShow","afterHide","distance","_u","key","fn","proxy","vnodes","$scopedSlots","inserted","linkify","innerHTML","defaultProtocol","className","attributes","options","themes","tooltip","html","VTooltip","getGettextBuilder","detectLocale","locale","translations","Actions","Activities","Back","Choose","Close","Custom","Favorite","Flags","Global","Next","Objects","Previous","Search","Settings","Submit","Symbols","pluralId","msgid","msgid_plural","msgstr","addTranslation","build","ngettext","gettext","Math","random","replace","assign","_nc_focus_trap","version","sources","names","mappings","sourcesContent","sourceRoot","btoa","unescape","JSON","stringify","identifier","base","css","media","sourceMap","supports","layer","references","updater","byIndex","splice","update","HTMLIFrameElement","contentDocument","head","appendChild","createElement","nc","setAttribute","parentNode","removeChild","styleSheet","cssText","firstChild","createTextNode","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","$options","shadowRoot","_injectStyles","beforeCreate","__esModule","get","NcCheckboxRadioSwitch","NcVNodes","provide","registerTab","unregisterTab","getActiveTab","activeTab","active","tabs","hasMultipleTabs","currentTabIndex","findIndex","updateActive","setActive","focusPreviousTab","focusActiveTab","focusNextTab","focusFirstTab","focusLastTab","focusActiveTabContent","some","sort","order","OC","Util","naturalSortCompare","_k","button","ctrlKey","altKey","metaKey","_l","renderIcon","NcActions","NcAppSidebarTabs","ArrowRight","NcEmptyContent","Star","StarOutline","directives","ClickOutside","vOnClickOutside","Tooltip","required","nameEditable","namePlaceholder","subname","subtitle","background","starred","starLoading","compact","empty","linkifyName","changeNameTranslated","closeTranslated","favoriteTranslated","isStarred","canStar","hasFigure","header","hasFigureClickListener","onBeforeEnter","onAfterEnter","onBeforeLeave","onAfterLeave","closeSidebar","onFigureClick","toggleStarred","editName","nameInput","onNameInput","onSubmitName","onDismissEditing","onUpdateActive","appear","backgroundImage","rawName","expression","currentTarget","submit","placeholder","input","inject","expose","created","onScroll","scrollHeight","scrollTop","clientHeight","scroll","URL","onClick","isIconUrl","textContent","isLongText","getBuilder","persist","setItem","NcActionLink","iQ","url","iconClass","user","showUserStatus","showUserStatusCompact","preloadedUserStatus","isGuest","allowPlaceholder","disableTooltip","disableMenu","tooltipMessage","isNoUser","menuContainer","avatarUrlLoaded","avatarSrcSetLoaded","userDoesNotExist","isAvatarLoaded","isMenuLoaded","contactsMenuLoading","contactsMenuActions","contactsMenuOpenState","avatarAriaLabel","hasMenu","hasStatus","status","userStatus","canDisplayUserStatus","showUserStatusIconOnAvatar","getUserIdentifier","isDisplayNameDefined","isUserDefined","isUrlDefined","getCurrentUser","uid","shouldShowPlaceholder","avatarStyle","lineHeight","fontSize","round","initialsWrapperStyle","backgroundColor","initialsStyle","color","initials","fromCodePoint","codePointAt","toUpperCase","hyperlink","message","loadAvatarUrl","subscribe","fetchUserStatus","handleUserStatusUpdated","unsubscribe","userId","toggleMenu","fetchContactsMenu","post","generateUrl","topAction","actions","t0","updateImageIfValid","avatarUrlGenerator","getComputedStyle","body","getPropertyValue","oc_userconfig","avatar","getItem","Image","onload","onerror","debug","srcset","src","alt","NcHighlight","search","needsTruncate","min","floor","part1","part2","highlight1","highlight2","start","end","highlight","ranges","reduce","max","chunks","svg","cleanSvg","beforeMount","sanitizeSVG","NcAvatar","NcIconSvgWrapper","iconSvg","iconName","avatarSize","noMargin","margin","hasIcon","hasIconSvg","isValidSubname","isSizeBigEnough","ChevronDown","NcEllipsisedOption","NcListItemIcon","VueSelect","appendToBody","calculatePosition","Function","closeOnSelect","Deselect","fillColor","cursor","limit","dropdownShouldOpen","noDrop","filterBy","inputClass","inputId","keyboardFocusBorder","label","multiple","noWrap","resetFocusOnOptionsChange","userSelect","localCalculatePosition","toggle","autoUpdate","computePosition","middleware","offset","flip","shift","limiter","limitShift","left","top","localFilterBy","toLocaleLowerCase","localLabel","propsToForward","$props","propertyIsEnumerable","events","parseInt","toLowerCase","match","before","$destroy","beforeUpdate","getText","closeAfterClick","isMobile","addEventListener","handleWindowResize","removeEventListener","documentElement","clientWidth","RegExp","getCapabilities","user_status","enabled","generateOcsUrl","ocs","response","error","$parent","hash","needQuotes","iconUrl","source","avatarUrl","getAvatarUrl","mentionText","contenteditable","baseURI","nodeType","item","nodeName","nodeValue","hasChildNodes","childNodes","DOMParser","parseFromString","canAssign","userAssignable","userVisible","NextcloudVueDocs","tags","generateRemoteUrl","NcSelect","fetchTags","getOptionLabel","optionsFilter","passthru","availableTags","availableOptions","localValue","find","handleInput","_regeneratorRuntime","Op","hasOwn","obj","desc","$Symbol","iteratorSymbol","asyncIteratorSymbol","toStringTagSymbol","define","err","innerFn","outerFn","tryLocsList","protoGenerator","Generator","generator","context","Context","makeInvokeMethod","tryCatch","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","NativeIteratorPrototype","Gp","defineIteratorMethods","PromiseImpl","invoke","reject","record","result","_typeof","unwrapped","previousPromise","callInvokeWithMethodAndArg","state","delegateResult","maybeInvokeDelegate","methodName","info","pushTryEntry","locs","entry","resetTryEntry","iterable","iteratorMethod","doneResult","genFun","ctor","iter","val","object","skipTempReset","rootRecord","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","thrown","asyncGeneratorStep","gen","_next","_throw","_x","_ref","_callee","file","fileInfo","_context","axios","davGetDefaultPropfind","OCA","Files","App","fileList","filesClient","_client","parseMultiStatus","_parseFileInfo","isDirectory","mimetype","args","component","setFileInfo","replaceAll","FileInfoModel","_asyncToGenerator","NcAppSidebarTab","onMount","onUpdate","onDestroy","onScrollBottomReached","newFile","oldFile","_this","_this2","_callee2","_context2","mount","tab","_this3","_callee3","_context3","_vm","rootUrl","davClient","createClient","headers","requesttoken","_getRequestToken","getRequestToken","parseTags","fromEntries","entries","_ref2","_ref3","camelCase","parseIdFromLocation","queryPos","substring","parts","formatTag","initialTag","_objectSpread","logger","getLoggerBuilder","setApp","detectUser","fetchTagsBody","_yield$davClient$getD","getDirectoryContents","details","glob","fetchLastUsedTagIds","_yield$axios$get","lastUsedTagIds","fetchSelectedTags","fileId","_yield$davClient$getD2","selectTag","_ref4","_callee4","tagToPut","_context4","customRequest","_x2","_x3","createTag","_ref5","_callee5","tagToPost","_yield$davClient$cust","contentLocation","_context5","_x4","_x5","deleteTag","_ref6","_callee6","_context6","deleteFile","_x6","_x7","_createForOfIteratorHelper","allowArrayLike","it","_unsupportedIterableToArray","_e2","normalCompletion","didErr","step","_e3","minLen","_arrayLikeToArray","arr","len","arr2","defaultBaseTag","Vue","extend","NcSelectTags","sortedTags","selectedTags","loadingTags","lastUsedOrder","lastUsedTags","remainingTags","_iterator","_step","sortByLastUsed","t1","showError","immediate","handler","createOption","newDisplayName","_step2","_iterator2","baseTag","_objectWithoutProperties","_excluded","selectedTag","handleSelect","sortToFront","handleCreate","_this4","createdTag","unshift","handleDeselect","_this5","_setupProxy","LegacyView","NcActionButton","NcAppSidebar","SidebarTab","SystemTags","Sidebar","showTags","isFullScreen","hasLowHeight","views","davPath","linkToRemote","encodePath","time","relativeModifiedDate","mtime","fullTime","moment","format","humanFileSize","getPreviewIfAny","appSidebar","hasPreview","isFavourited","defaultAction","fileActions","getDefaultFileAction","PERMISSION_READ","defaultActionListener","isSystemTagsEnabled","canDisplay","resetData","updateTabs","screen","getIconUrl","mimeType","mountType","MimeType","shareTypes","ShareTypes","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","setActiveTab","setIsActive","isDir","Node","Folder","File","emit","fileid","root","mime","Notification","showTemporary","onDefaultAction","dir","$file","toggleTags","FileInfo","view","close","setFullScreenMode","_document$querySelect","_document$querySelect2","_document$querySelect3","_document$querySelect4","handleOpening","handleOpened","handleClosing","handleClosed","_d","$event","cid","destroy","scrollBottomReached","_classCallCheck","_state","check","Tab","_defineProperty","_id","_name","_icon","_mount","_setIsActive","_update","_destroy","_enabled","_scrollBottomReached","sanitizedSvg","_iconSvgSanitized","contentElement","getElementById","sidebarElement","AppSidebar","SidebarView","$mount","UPPERCASE","LOWERCASE","LEADING_CAPITAL","IDENTIFIER","SEPARATORS","LEADING_SEPARATORS","SEPARATORS_AND_IDENTIFIER","NUMBERS_AND_IDENTIFIER","pascalCase","preserveConsecutiveUppercase","string","toLocaleUpperCase","isLastCharLower","isLastCharUpper","isLastLastCharUpper","character","preserveCamelCase","lastIndex","m1","postProcess","___CSS_LOADER_EXPORT___","webpackContext","req","webpackContextResolve","__webpack_require__","code","setUid","mt","We","log","pow","toFixed","parseFloat","toLocaleString","DEFAULT","HIDDEN","NONE","CREATE","READ","UPDATE","DELETE","SHARE","ALL","K","oc","_nc_dav_properties","_nc_dav_namespaces","ni","ri","Y","Date","crtime","permissions","owner","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","set","updateMtime","Reflect","deleteProperty","Proxy","basename","extension","dirname","pathname","isDavRessource","move","rename","xt","bt","super","Q","tt","si","patch","oi","includeSelf","filename","Et","yt","parse","lastmod","getcontentlength","isExist","isEmptyObject","merge","getValue","isName","exec","getAllMatches","startIndex","nameRegexp","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","allowBooleanAttributes","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","unpairedTags","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","nt","we","ye","ve","prettify","xe","Ee","rt","Oe","Pe","st","ot","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","substr","lastIndexOf","entities","regex","De","Se","oneListGroup","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","repeat","arrayNodeName","buildAttrPairStr","replaceEntitiesValue","closeTag","__webpack_module_cache__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","priority","notFulfilled","Infinity","fulfilled","getter","definition","chunkId","all","promises","globalThis","prop","script","needAttach","scripts","getElementsByTagName","getAttribute","charset","timeout","onScriptComplete","event","clearTimeout","doneFns","setTimeout","nmd","paths","scriptUrl","importScripts","currentScript","installedChunks","installedChunkData","promise","errorType","realSrc","request","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"files-sidebar.js?v=4b284246393a408dbc0a","mappings":"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","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/paths/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcAppSidebar.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcAppSidebarTab.js","webpack:///nextcloud/node_modules/@nextcloud/vue/dist/Components/NcSelectTags.js","webpack:///nextcloud/apps/files/src/services/FileInfo.js","webpack://nextcloud/./apps/files/src/components/LegacyView.vue?fb5f","webpack:///nextcloud/apps/files/src/components/LegacyView.vue?vue&type=script&lang=js&","webpack:///nextcloud/apps/files/src/components/LegacyView.vue","webpack://nextcloud/./apps/files/src/components/LegacyView.vue?a2e2","webpack:///nextcloud/apps/files/src/components/SidebarTab.vue","webpack:///nextcloud/apps/files/src/components/SidebarTab.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/components/SidebarTab.vue?7aea","webpack://nextcloud/./apps/files/src/components/SidebarTab.vue?eddf","webpack:///nextcloud/apps/systemtags/src/services/davClient.ts","webpack:///nextcloud/apps/systemtags/src/utils.ts","webpack:///nextcloud/apps/systemtags/src/logger.ts","webpack:///nextcloud/apps/systemtags/src/services/api.ts","webpack:///nextcloud/apps/systemtags/src/components/SystemTags.vue","webpack:///nextcloud/apps/systemtags/src/components/SystemTags.vue?vue&type=script&lang=ts&","webpack://nextcloud/./apps/systemtags/src/components/SystemTags.vue?e83e","webpack://nextcloud/./apps/systemtags/src/components/SystemTags.vue?d721","webpack:///nextcloud/apps/files/src/views/Sidebar.vue","webpack:///nextcloud/apps/files/src/views/Sidebar.vue?vue&type=script&lang=js&","webpack://nextcloud/./apps/files/src/views/Sidebar.vue?5e80","webpack://nextcloud/./apps/files/src/views/Sidebar.vue?0b21","webpack://nextcloud/./apps/files/src/views/Sidebar.vue?589a","webpack:///nextcloud/apps/files/src/services/Sidebar.js","webpack:///nextcloud/apps/files/src/models/Tab.js","webpack:///nextcloud/apps/files/src/sidebar.js","webpack:///nextcloud/node_modules/camelcase/index.js","webpack:///nextcloud/apps/files/src/views/Sidebar.vue?vue&type=style&index=0&id=3af76862&prod&lang=scss&scoped=true&","webpack:///nextcloud/apps/systemtags/src/components/SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&","webpack:///nextcloud/node_modules/moment/locale|sync|/^\\.\\/.*$","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.encodePath = encodePath;\nexports.basename = basename;\nexports.dirname = dirname;\nexports.joinPaths = joinPaths;\nexports.isSamePath = isSamePath;\n\nrequire(\"core-js/modules/es.array.map.js\");\n\nrequire(\"core-js/modules/es.regexp.exec.js\");\n\nrequire(\"core-js/modules/es.string.split.js\");\n\nrequire(\"core-js/modules/es.string.replace.js\");\n\nrequire(\"core-js/modules/es.array.filter.js\");\n\nrequire(\"core-js/modules/es.array.reduce.js\");\n\nrequire(\"core-js/modules/es.array.concat.js\");\n\n/**\n * URI-Encodes a file path but keep the path slashes.\n */\nfunction encodePath(path) {\n if (!path) {\n return path;\n }\n\n return path.split('/').map(encodeURIComponent).join('/');\n}\n/**\n * Returns the base name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"somefile.txt\"\n */\n\n\nfunction basename(path) {\n return path.replace(/\\\\/g, '/').replace(/.*\\//, '');\n}\n/**\n * Returns the dir name of the given path.\n * For example for \"/abc/somefile.txt\" it will return \"/abc\"\n */\n\n\nfunction dirname(path) {\n return path.replace(/\\\\/g, '/').replace(/\\/[^\\/]*$/, '');\n}\n/**\n * Join path sections\n */\n\n\nfunction joinPaths() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n if (arguments.length < 1) {\n return '';\n } // discard empty arguments\n\n\n var nonEmptyArgs = args.filter(function (arg) {\n return arg.length > 0;\n });\n\n if (nonEmptyArgs.length < 1) {\n return '';\n }\n\n var lastArg = nonEmptyArgs[nonEmptyArgs.length - 1];\n var leadingSlash = nonEmptyArgs[0].charAt(0) === '/';\n var trailingSlash = lastArg.charAt(lastArg.length - 1) === '/';\n var sections = nonEmptyArgs.reduce(function (acc, section) {\n return acc.concat(section.split('/'));\n }, []);\n var first = !leadingSlash;\n var path = sections.reduce(function (acc, section) {\n if (section === '') {\n return acc;\n }\n\n if (first) {\n first = false;\n return acc + section;\n }\n\n return acc + '/' + section;\n }, '');\n\n if (trailingSlash) {\n // add it back\n return path + '/';\n }\n\n return path;\n}\n/**\n * Returns whether the given paths are the same, without\n * leading, trailing or doubled slashes and also removing\n * the dot sections.\n */\n\n\nfunction isSamePath(path1, path2) {\n var pathSections1 = (path1 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n var pathSections2 = (path2 || '').split('/').filter(function (p) {\n return p !== '.';\n });\n path1 = joinPaths.apply(undefined, pathSections1);\n path2 = joinPaths.apply(undefined, pathSections2);\n return path1 === path2;\n}\n//# sourceMappingURL=index.js.map","/*! For license information please see NcAppSidebar.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcAppSidebar\"]=t())}(self,(()=>(()=>{var e={7664:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>R});var o=a(3089),i=a(2297),n=a(1205),r=a(932),s=a(2734),c=a.n(s),l=a(1441),d=a.n(l);function m(e){return m=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},m(e)}function u(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function p(e){for(var t=1;te.length)&&(t=e.length);for(var a=0,o=new Array(t);a0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var a=t.querySelector(v);if(a){var o=g(this.$refs.menu.querySelectorAll(v)).indexOf(a);o>-1&&(this.focusIndex=o,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(v)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(v).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(v).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,a=(this.$slots.default||[]).filter((function(e){var t,a;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)})),o=a.every((function(e){var t,a,o,i;return\"NcActionLink\"===(null!==(t=null==e||null===(a=e.componentOptions)||void 0===a||null===(a=a.Ctor)||void 0===a||null===(a=a.extendOptions)||void 0===a?void 0:a.name)&&void 0!==t?t:null==e||null===(o=e.componentOptions)||void 0===o?void 0:o.tag)&&(null==e||null===(i=e.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i||null===(i=i.href)||void 0===i?void 0:i.startsWith(window.location.origin))})),i=a.filter(this.isValidSingleAction);if(this.forceMenu&&i.length>0&&this.inline>0&&(c().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),i=[]),0!==a.length){var n=function(a){var o,i,n,r,s,c,l,d,m,u,h,g,A=(null==a||null===(o=a.data)||void 0===o||null===(o=o.scopedSlots)||void 0===o||null===(o=o.icon())||void 0===o?void 0:o[0])||e(\"span\",{class:[\"icon\",null==a||null===(i=a.componentOptions)||void 0===i||null===(i=i.propsData)||void 0===i?void 0:i.icon]}),v=null==a||null===(n=a.componentOptions)||void 0===n||null===(n=n.listeners)||void 0===n?void 0:n.click,k=null==a||null===(r=a.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),f=(null==a||null===(c=a.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.ariaLabel)||k,y=t.forceName?k:\"\",C=null==a||null===(l=a.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.title;return t.forceName||C||(C=k),e(\"NcButton\",{class:[\"action-item action-item--single\",null==a||null===(d=a.data)||void 0===d?void 0:d.staticClass,null==a||null===(m=a.data)||void 0===m?void 0:m.class],attrs:{\"aria-label\":f,title:C},ref:null==a||null===(u=a.data)||void 0===u?void 0:u.ref,props:p({type:t.type||(y?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==a||null===(h=a.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==a||null===(g=a.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!v&&{click:function(e){v&&v(e)}})},[e(\"template\",{slot:\"icon\"},[A]),y])},r=function(a){var i,n,r=(null===(i=t.$slots.icon)||void 0===i?void 0:i[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(n=t.$refs.menuButton)||void 0===n?void 0:n.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":o?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:o?null:\"menu\"}},[a])])])};if(1===a.length&&1===i.length&&!this.forceMenu)return n(i[0]);if(i.length>0&&this.inline>0){var s=i.slice(0,this.inline),l=a.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(n)),[l.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(l)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(a)])}}};var f=a(3379),y=a.n(f),C=a(7795),b=a.n(C),w=a(569),P=a.n(w),S=a(3565),N=a.n(S),x=a(9216),j=a.n(x),E=a(4589),O=a.n(E),_=a(9546),B={};B.styleTagTransform=O(),B.setAttributes=N(),B.insert=P().bind(null,\"head\"),B.domAPI=b(),B.insertStyleElement=j();y()(_.Z,B);_.Z&&_.Z.locals&&_.Z.locals;var z=a(5155),F={};F.styleTagTransform=O(),F.setAttributes=N(),F.insert=P().bind(null,\"head\"),F.domAPI=b(),F.insertStyleElement=j();y()(z.Z,F);z.Z&&z.Z.locals&&z.Z.locals;var M=a(1900),T=a(5727),D=a.n(T),G=(0,M.Z)(k,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(G);const R=G.exports},3089:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function i(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function n(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,a,o,i=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(a=t.trim)||void 0===a?void 0:a.call(t),c=!!s,l=null===(o=this.$slots)||void 0===o?void 0:o.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var d=function(){var t,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=a.navigate,d=a.isActive,m=a.isExactActive;return e(i.to||!i.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":l&&!c,\"button-vue--text-only\":c&&!l,\"button-vue--icon-and-text\":l&&c},r(t,\"button-vue--vue-\".concat(i.realType),i.realType),r(t,\"button-vue--wide\",i.wide),r(t,\"button-vue--\".concat(i.flexAlignment),\"center\"!==i.flexAlignment),r(t,\"button-vue--reverse\",i.isReverseAligned),r(t,\"active\",d),r(t,\"router-link-exact-active\",m),t)],attrs:n({\"aria-label\":i.ariaLabel,\"aria-pressed\":i.pressed,disabled:i.disabled,type:i.href?null:i.nativeType,role:i.href?\"button\":null,href:!i.to&&i.href?i.href:null,target:!i.to&&i.href?\"_self\":null,rel:!i.to&&i.href?\"nofollow noreferrer noopener\":null,download:!i.to&&i.href&&i.download?i.download:null},i.$attrs),on:n(n({},i.$listeners),{},{click:function(e){\"boolean\"==typeof i.pressed&&i.$emit(\"update:pressed\",!i.pressed),i.$emit(\"click\",e),null==o||o(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[l?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":i.ariaHidden}},[i.$slots.icon]):null,c?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:d}}):d()}};var c=a(3379),l=a.n(c),d=a(7795),m=a.n(d),u=a(569),p=a.n(u),h=a(3565),g=a.n(h),A=a(9216),v=a.n(A),k=a(4589),f=a.n(k),y=a(7294),C={};C.styleTagTransform=f(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=m(),C.insertStyleElement=v();l()(y.Z,C);y.Z&&y.Z.locals&&y.Z.locals;var b=a(1900),w=a(2102),P=a.n(w),S=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof P()&&P()(S);const N=S.exports},998:(e,t,a)=>{\"use strict\";function o(e){return o=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},o(e)}function i(e,t,a){return(t=function(e){var t=function(e,t){if(\"object\"!==o(e)||null===e)return e;var a=e[Symbol.toPrimitive];if(void 0!==a){var i=a.call(e,t||\"default\");if(\"object\"!==o(i))return i;throw new TypeError(\"@@toPrimitive must return a primitive value.\")}return(\"string\"===t?String:Number)(e)}(e,\"string\");return\"symbol\"===o(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}a.d(t,{default:()=>V});var n=a(6492),r=a(1205),s=a(932);const c={methods:{n:s.n,t:s.t}},l=require(\"vue-material-design-icons/CheckboxBlankOutline.vue\");var d=a.n(l);const m=require(\"vue-material-design-icons/MinusBox.vue\");var u=a.n(m);const p=require(\"vue-material-design-icons/CheckboxMarked.vue\");var h=a.n(p);const g=require(\"vue-material-design-icons/RadioboxMarked.vue\");var A=a.n(g);const v=require(\"vue-material-design-icons/RadioboxBlank.vue\");var k=a.n(v);const f=require(\"vue-material-design-icons/ToggleSwitchOff.vue\");var y=a.n(f);const C=require(\"vue-material-design-icons/ToggleSwitch.vue\");var b=a.n(C);function w(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[\"@@iterator\"])return Array.from(e)}(e)||function(e,t){if(!e)return;if(\"string\"==typeof e)return P(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===a&&e.constructor&&(a=e.constructor.name);if(\"Map\"===a||\"Set\"===a)return Array.from(e);if(\"Arguments\"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a))return P(e,t)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,o=new Array(t);a-1:this.checked===this.value:!0===this.checked},checkboxRadioIconElement:function(){return this.type===N?this.isChecked?A():k():this.type===x?this.isChecked?b():y():this.indeterminate?u():this.isChecked?h():d()}},mounted:function(){if(this.name&&this.type===S&&!Array.isArray(this.checked))throw new Error(\"When using groups of checkboxes, the updated value will be an array.\");if(this.name&&this.type===x)throw new Error(\"Switches are not made to be used for data sets. Please use checkboxes instead.\");if(\"boolean\"!=typeof this.checked&&this.type===x)throw new Error(\"Switches can only be used with boolean as checked prop.\")},methods:{onToggle:function(){if(!this.disabled)if(this.type!==N)if(this.type!==x)if(\"boolean\"!=typeof this.checked){var e=this.getInputsSet().filter((function(e){return e.checked})).map((function(e){return e.value}));this.$emit(\"update:checked\",e)}else this.$emit(\"update:checked\",!this.isChecked);else this.$emit(\"update:checked\",!this.isChecked);else this.$emit(\"update:checked\",this.value)},getInputsSet:function(){return w(document.getElementsByName(this.name))}}};var O=a(3379),_=a.n(O),B=a(7795),z=a.n(B),F=a(569),M=a.n(F),T=a(3565),D=a.n(T),G=a(9216),R=a.n(G),q=a(4589),U=a.n(q),L=a(6267),$={};$.styleTagTransform=U(),$.setAttributes=D(),$.insert=M().bind(null,\"head\"),$.domAPI=z(),$.insertStyleElement=R();_()(L.Z,$);L.Z&&L.Z.locals&&L.Z.locals;var I=a(1900),H=a(3768),W=a.n(H),Z=(0,I.Z)(E,(function(){var e,t=this,a=t._self._c;return a(t.wrapperElement,{tag:\"component\",staticClass:\"checkbox-radio-switch\",class:(e={},i(e,\"checkbox-radio-switch-\"+t.type,t.type),i(e,\"checkbox-radio-switch--checked\",t.isChecked),i(e,\"checkbox-radio-switch--disabled\",t.disabled),i(e,\"checkbox-radio-switch--indeterminate\",t.indeterminate),i(e,\"checkbox-radio-switch--button-variant\",t.buttonVariant),i(e,\"checkbox-radio-switch--button-variant-v-grouped\",t.buttonVariant&&\"vertical\"===t.buttonVariantGrouped),i(e,\"checkbox-radio-switch--button-variant-h-grouped\",t.buttonVariant&&\"horizontal\"===t.buttonVariantGrouped),e),style:t.cssVars},[a(\"input\",t._g(t._b({staticClass:\"checkbox-radio-switch__input\",attrs:{id:t.id,disabled:t.disabled,type:t.inputType},domProps:{value:t.value}},\"input\",t.inputProps,!1),t.inputListeners)),t._v(\" \"),a(\"label\",{staticClass:\"checkbox-radio-switch__label\",attrs:{for:t.id}},[a(\"div\",{staticClass:\"checkbox-radio-switch__icon\"},[t._t(\"icon\",(function(){return[t.loading?a(\"NcLoadingIcon\"):t.buttonVariant?t._e():a(t.checkboxRadioIconElement,{tag:\"component\",attrs:{size:t.size}})]}),{checked:t.isChecked,loading:t.loading})],2),t._v(\" \"),a(\"span\",{staticClass:\"checkbox-radio-switch__label-text\"},[t._t(\"default\")],2)])])}),[],!1,null,\"51081647\",null);\"function\"==typeof W()&&W()(Z);const V=Z.exports},9462:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>b});const o={name:\"NcEmptyContent\",props:{name:{type:String,default:\"\"},description:{type:String,default:\"\"}},computed:{hasName:function(){return\"\"!==this.name},hasDescription:function(){var e;return\"\"!==this.description||(null===(e=this.$slots.description)||void 0===e?void 0:e[0])}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(5886),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900),f=a(9258),y=a.n(f),C=(0,k.Z)(o,(function(){var e=this,t=e._self._c;return t(\"div\",{staticClass:\"empty-content\",attrs:{role:\"note\"}},[e.$slots.icon?t(\"div\",{staticClass:\"empty-content__icon\",attrs:{\"aria-hidden\":\"true\"}},[e._t(\"icon\")],2):e._e(),e._v(\" \"),e._t(\"name\",(function(){return[e.hasName?t(\"h2\",{staticClass:\"empty-content__name\"},[e._v(\"\\n\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\")]):e._e()]})),e._v(\" \"),e.hasDescription?t(\"p\",[e._t(\"description\",(function(){return[e._v(\"\\n\\t\\t\\t\"+e._s(e.description)+\"\\n\\t\\t\")]}))],2):e._e(),e._v(\" \"),e.$slots.action?t(\"div\",{staticClass:\"empty-content__action\"},[e._t(\"action\")],2):e._e()],2)}),[],!1,null,\"048f418c\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},6492:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>b});const o={name:\"NcLoadingIcon\",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return[\"auto\",\"light\",\"dark\"].includes(e)},default:\"auto\"},name:{type:String,default:\"\"}},computed:{colors:function(){var e=[\"#777\",\"#CCC\"];return\"light\"===this.appearance?e:\"dark\"===this.appearance?e.reverse():[\"var(--color-loading-light)\",\"var(--color-loading-dark)\"]}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(8502),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900),f=a(9280),y=a.n(f),C=(0,k.Z)(o,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"material-design-icon loading-icon\",attrs:{\"aria-label\":e.name,role:\"img\"}},[t(\"svg\",{attrs:{width:e.size,height:e.size,viewBox:\"0 0 24 24\"}},[t(\"path\",{attrs:{fill:e.colors[0],d:\"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z\"}}),e._v(\" \"),t(\"path\",{attrs:{fill:e.colors[1],d:\"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z\"}},[e.name?t(\"title\",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,\"27fa1197\",null);\"function\"==typeof y()&&y()(C);const b=C.exports},2297:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>E});var o=a(9454),i=a(4505),n=a(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,a=t.hasOwnProperty,o=Object.defineProperty||function(e,t,a){e[t]=a.value},i=\"function\"==typeof Symbol?Symbol:{},n=i.iterator||\"@@iterator\",c=i.asyncIterator||\"@@asyncIterator\",l=i.toStringTag||\"@@toStringTag\";function d(e,t,a){return Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},\"\")}catch(e){d=function(e,t,a){return e[t]=a}}function m(e,t,a,i){var n=t&&t.prototype instanceof h?t:h,r=Object.create(n.prototype),s=new x(i||[]);return o(r,\"_invoke\",{value:w(e,a,s)}),r}function u(e,t,a){try{return{type:\"normal\",arg:e.call(t,a)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=m;var p={};function h(){}function g(){}function A(){}var v={};d(v,n,(function(){return this}));var k=Object.getPrototypeOf,f=k&&k(k(j([])));f&&f!==t&&a.call(f,n)&&(v=f);var y=A.prototype=h.prototype=Object.create(v);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(o,n,s,c){var l=u(e[o],e,n);if(\"throw\"!==l.type){var d=l.arg,m=d.value;return m&&\"object\"==r(m)&&a.call(m,\"__await\")?t.resolve(m.__await).then((function(e){i(\"next\",e,s,c)}),(function(e){i(\"throw\",e,s,c)})):t.resolve(m).then((function(e){d.value=e,s(d)}),(function(e){return i(\"throw\",e,s,c)}))}c(l.arg)}var n;o(this,\"_invoke\",{value:function(e,a){function o(){return new t((function(t,o){i(e,a,t,o)}))}return n=n?n.then(o,o):o()}})}function w(e,t,a){var o=\"suspendedStart\";return function(i,n){if(\"executing\"===o)throw new Error(\"Generator is already running\");if(\"completed\"===o){if(\"throw\"===i)throw n;return E()}for(a.method=i,a.arg=n;;){var r=a.delegate;if(r){var s=P(r,a);if(s){if(s===p)continue;return s}}if(\"next\"===a.method)a.sent=a._sent=a.arg;else if(\"throw\"===a.method){if(\"suspendedStart\"===o)throw o=\"completed\",a.arg;a.dispatchException(a.arg)}else\"return\"===a.method&&a.abrupt(\"return\",a.arg);o=\"executing\";var c=u(e,t,a);if(\"normal\"===c.type){if(o=a.done?\"completed\":\"suspendedYield\",c.arg===p)continue;return{value:c.arg,done:a.done}}\"throw\"===c.type&&(o=\"completed\",a.method=\"throw\",a.arg=c.arg)}}}function P(e,t){var a=t.method,o=e.iterator[a];if(void 0===o)return t.delegate=null,\"throw\"===a&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,P(e,t),\"throw\"===t.method)||\"return\"!==a&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+a+\"' method\")),p;var i=u(o,e.iterator,t.arg);if(\"throw\"===i.type)return t.method=\"throw\",t.arg=i.arg,t.delegate=null,p;var n=i.arg;return n?n.done?(t[e.resultName]=n.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):n:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(S,this),this.reset(!0)}function j(e){if(e){var t=e[n];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function t(){for(;++o=0;--i){var n=this.tryEntries[i],r=n.completion;if(\"root\"===n.tryLoc)return o(\"end\");if(n.tryLoc<=this.prev){var s=a.call(n,\"catchLoc\"),c=a.call(n,\"finallyLoc\");if(s&&c){if(this.prev=0;--o){var i=this.tryEntries[o];if(i.tryLoc<=this.prev&&a.call(i,\"finallyLoc\")&&this.prev=0;--t){var a=this.tryEntries[t];if(a.finallyLoc===e)return this.complete(a.completion,a.afterLoc),N(a),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var a=this.tryEntries[t];if(a.tryLoc===e){var o=a.completion;if(\"throw\"===o.type){var i=o.arg;N(a)}return i}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,a){return this.delegate={iterator:j(e),resultName:t,nextLoc:a},\"next\"===this.method&&(this.arg=void 0),p}},e}function c(e,t,a,o,i,n,r){try{var s=e[n](r),c=s.value}catch(e){return void a(e)}s.done?t(c):Promise.resolve(c).then(o,i)}const l={name:\"NcPopover\",components:{Dropdown:o.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var a,o;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(o=null===(a=t.$refs.popover)||void 0===a||null===(a=a.$refs.popperContent)||void 0===a?void 0:a.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,i.createFocusTrap)(o,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,n.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,a=arguments;return new Promise((function(o,i){var n=e.apply(t,a);function r(e){c(n,o,i,r,s,\"next\",e)}function s(e){c(n,o,i,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},d=l;var m=a(3379),u=a.n(m),p=a(7795),h=a.n(p),g=a(569),A=a.n(g),v=a(3565),k=a.n(v),f=a(9216),y=a.n(f),C=a(4589),b=a.n(C),w=a(1625),P={};P.styleTagTransform=b(),P.setAttributes=k(),P.insert=A().bind(null,\"head\"),P.domAPI=h(),P.insertStyleElement=y();u()(w.Z,P);w.Z&&w.Z.locals&&w.Z.locals;var S=a(1900),N=a(2405),x=a.n(N),j=(0,S.Z)(d,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof x()&&x()(j);const E=j.exports},3329:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>i});const o={name:\"NcVNodes\",props:{vnodes:{type:[Array,Object],default:null}},render:function(e){var t,a,o;return this.vnodes||(null===(t=this.$slots)||void 0===t?void 0:t.default)||(null===(a=this.$scopedSlots)||void 0===a||null===(o=a.default)||void 0===o?void 0:o.call(a))}};const i=(0,a(1900).Z)(o,undefined,undefined,!1,null,null,null).exports},8167:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>o});const o={inserted:function(e){e.focus()}}},640:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>r});const o=require(\"linkify-string\");var i=a.n(o);const n=function(e){return i()(e,{defaultProtocol:\"https\",target:\"_blank\",className:\"external linkified\",attributes:{rel:\"nofollow noopener noreferrer\"}})};const r=function(e,t){var a;!0===(null===(a=t.value)||void 0===a?void 0:a.linkify)&&(e.innerHTML=n(t.value.text))}},336:(e,t,a)=>{\"use strict\";a.d(t,{default:()=>k});var o=a(9454),i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(8384),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;o.options.themes.tooltip.html=!1,o.options.themes.tooltip.delay={show:500,hide:200},o.options.themes.tooltip.distance=10,o.options.themes.tooltip[\"arrow-padding\"]=3;const k=o.VTooltip},932:(e,t,a)=>{\"use strict\";a.d(t,{n:()=>r,t:()=>s});var o=a(7931),i=(0,o.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var a in e.translations)e.translations[a].pluralId?t[a]={msgid:a,msgid_plural:e.translations[a].pluralId,msgstr:e.translations[a].msgstr}:t[a]={msgid:a,msgstr:[e.translations[a]]};i.addTranslation(e.locale,{translations:{\"\":t}})}));var n=i.build(),r=n.ngettext.bind(n),s=n.gettext.bind(n)},1205:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>o});const o=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},1206:(e,t,a)=>{\"use strict\";a.d(t,{L:()=>o});var o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},8384:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/directives/Tooltip/index.scss\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCSA,0CACC,iBAAA,CACA,cAAA,CACA,KAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,QAAA,CACA,SAAA,CACA,eAAA,CACA,gBAAA,CACA,SAAA,CACA,eAAA,CAEA,eAAA,CACA,sDAAA,CAGA,iGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAID,oGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAID,mGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAID,kGACC,SAAA,CACA,oBAAA,CACA,8CAAA,CAID,4DACC,iBAAA,CACA,uCAAA,CACA,SAAA,CAED,6DACC,kBAAA,CACA,uBAAA,CACA,SAAA,CAKF,0CACC,eAAA,CACA,eAAA,CACA,iBAAA,CACA,4BAAA,CACA,kCAAA,CACA,6CAAA,CAID,oDACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBAhFY\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n/**\\n* @copyright Copyright (c) 2016, John Molakvoæ \\n* @copyright Copyright (c) 2016, Robin Appelman \\n* @copyright Copyright (c) 2016, Jan-Christoph Borchardt \\n* @copyright Copyright (c) 2016, Erik Pellikka \\n* @copyright Copyright (c) 2015, Vincent Petry \\n*\\n* Bootstrap (http://getbootstrap.com)\\n* SCSS copied from version 3.3.5\\n* Copyright 2011-2015 Twitter, Inc.\\n* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n*/\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-tooltip {\\n\\t&.v-popper__popper {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tright: auto;\\n\\t\\tleft: auto;\\n\\t\\tdisplay: block;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\ttext-align: left;\\n\\t\\ttext-align: start;\\n\\t\\topacity: 0;\\n\\t\\tline-height: 1.6;\\n\\n\\t\\tline-break: auto;\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t// TOP\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// BOTTOM\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// RIGHT\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tright: 100%;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// LEFT\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tleft: 100%;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t// HIDDEN / SHOWN\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity .15s, visibility .15s;\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity .15s;\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n\\n\\t// CONTENT\\n\\t.v-popper__inner {\\n\\t\\tmax-width: 350px;\\n\\t\\tpadding: 5px 8px;\\n\\t\\ttext-align: center;\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder-radius: var(--border-radius);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t}\\n\\n\\t// ARROW\\n\\t.v-popper__arrow-container {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 1;\\n\\t\\twidth: 0;\\n\\t\\theight: 0;\\n\\t\\tmargin: 0;\\n\\t\\tborder-style: solid;\\n\\t\\tborder-color: transparent;\\n\\t\\tborder-width: $arrow-width;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},2365:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-1c6914a9]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar[data-v-1c6914a9]{z-index:1500;top:0;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:100%;border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1c6914a9]:focus{opacity:1;background-color:rgba(127,127,127,.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1c6914a9]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1c6914a9]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1c6914a9]{padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px;padding-top:10px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{z-index:3;position:absolute;top:9px;left:-44px;gap:0}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1c6914a9]{top:6px;right:50px;background-color:rgba(0,0,0,0);position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1c6914a9]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1c6914a9]{padding-right:94px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc.app-sidebar-header__desc--without-actions[data-v-1c6914a9]{padding-right:50px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1c6914a9]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1c6914a9]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1c6914a9]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1c6914a9]{position:relative;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:18px 6px 18px 9px;gap:0 4px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1c6914a9]{padding-left:6px}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__mainname-form[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__mainname-form[data-v-1c6914a9]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subname--editable .app-sidebar-header__subname[data-v-1c6914a9]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1c6914a9]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]{box-shadow:none}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions .app-sidebar-header__star[data-v-1c6914a9]:not([aria-pressed=true]):hover{box-shadow:none;background-color:var(--color-background-hover)}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container[data-v-1c6914a9]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container[data-v-1c6914a9]{display:flex;align-items:center;min-height:44px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname[data-v-1c6914a9] .linkified{cursor:pointer;text-decoration:underline;margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form[data-v-1c6914a9]{display:flex;flex:1 1 auto;align-items:center}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__mainname-form input.app-sidebar-header__mainname-input[data-v-1c6914a9]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname-container .app-sidebar-header__menu[data-v-1c6914a9]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,.25);margin-left:5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__mainname[data-v-1c6914a9],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__name-container .app-sidebar-header__subname[data-v-1c6914a9]{padding:0;opacity:.7;font-size:var(--default-font-size)}.app-sidebar .app-sidebar-header__description[data-v-1c6914a9]{display:flex;align-items:center;margin:0 10px}@media only screen and (max-width: 768px){.app-sidebar[data-v-1c6914a9]{width:100vw;max-width:100vw}}.slide-right-leave-active[data-v-1c6914a9],.slide-right-enter-active[data-v-1c6914a9]{transition-duration:var(--animation-quick);transition-property:max-width,min-width}.slide-right-enter-to[data-v-1c6914a9],.slide-right-leave[data-v-1c6914a9]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1c6914a9],.slide-right-leave-to[data-v-1c6914a9]{min-width:0 !important;max-width:0 !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebar.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCYD,8BACC,YAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,iBAAA,CACA,eAAA,CACA,qBAAA,CACA,aAAA,CACA,UAAA,CACA,eA5BmB,CA6BnB,eA5BmB,CA6BnB,WAAA,CACA,yCAAA,CACA,uCAAA,CAGC,sEACC,iBAAA,CACA,WAAA,CACA,OA1BmB,CA2BnB,SA3BmB,CA4BnB,UCjBc,CDkBd,WClBc,CDmBd,UCDc,CDEd,kBAAA,CACA,qOAGC,SCLW,CDMX,sCCFsB,CDQvB,qHACC,kBAAA,CAEA,iJACC,SAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,iBAAA,CACA,aAAA,CAED,+IACC,cAAA,CACA,aAAA,CACA,WAAA,CACA,kBAAA,CACA,gBAlE2B,CAoE3B,yLACC,kBAAA,CAGD,qLACC,SAAA,CACA,iBAAA,CACA,OAAA,CACA,UAAA,CACA,KAAA,CAED,yKACC,OAxEgB,CAyEhB,UAAA,CACA,8BAAA,CACA,iBAAA,CASH,kHACC,iBAAA,CACA,OAtFkB,CAuFlB,UAAA,CAGD,kHACC,kBAAA,CAEA,4JACC,kBAAA,CAMH,4EACC,YAAA,CACA,qBAAA,CAID,0DACC,UAAA,CACA,YAAA,CACA,gBAAA,CACA,2BAAA,CACA,0BAAA,CACA,uBAAA,CACA,uEACC,cAAA,CAKF,wDACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,kBAAA,CACA,yBAAA,CACA,SAAA,CAGA,8EACC,gBAAA,CAGD,wNAEC,eAAA,CACA,kBAAA,CAGD,6GACC,eAAA,CAGD,8FACC,YAAA,CACA,WCtIa,CDuIb,UCvIa,CDwIb,sBAAA,CACA,aAAA,CAEA,wHAEC,eAAA,CACA,uJACC,eAAA,CACA,8CAAA,CAMH,4FACC,aAAA,CACA,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAEA,oIACC,YAAA,CACA,kBAAA,CACA,eChKY,CDmKZ,kKACC,SAAA,CACA,eAAA,CACA,cAAA,CACA,gBAtLa,CAyLb,6KACC,cAAA,CACA,yBAAA,CACA,QAAA,CAIF,uKACC,YAAA,CACA,aAAA,CACA,kBAAA,CAEA,gNACC,aAAA,CACA,QAAA,CACA,WA3Mc,CA4Md,cAAA,CACA,gBAAA,CAKF,8JACC,WCjMW,CDkMX,UClMW,CDmMX,kBAAA,CACA,sCC7KoB,CD8KpB,eAAA,CAKF,mPAEC,eAAA,CACA,UAAA,CACA,QAAA,CACA,kBAAA,CACA,sBAAA,CAID,yHACC,SAAA,CACA,UCpMY,CDqMZ,kCAAA,CAMH,+DACC,YAAA,CACA,kBAAA,CACA,aAAA,CAMH,0CACC,8BACC,WAAA,CACA,eAAA,CAAA,CAIF,sFAEC,0CAAA,CACA,uCAAA,CAGD,2EAEC,eA5QmB,CA6QnB,eA5QmB,CA+QpB,2EAEC,sBAAA,CACA,sBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n$sidebar-min-width: 300px;\\n$sidebar-max-width: 500px;\\n\\n$desc-vertical-padding: 18px;\\n$desc-vertical-padding-compact: 10px;\\n$desc-input-padding: 7px;\\n\\n// name and subname\\n$desc-name-height: 30px;\\n$desc-subname-height: 22px;\\n$desc-height: $desc-name-height + $desc-subname-height;\\n\\n$top-buttons-spacing: 6px;\\n\\n/*\\n\\tSidebar: to be used within #content\\n\\tapp-content will be shrinked properly\\n*/\\n.app-sidebar {\\n\\tz-index: 1500;\\n\\ttop: 0;\\n\\tright: 0;\\n\\tdisplay: flex;\\n\\toverflow-x: hidden;\\n\\toverflow-y: auto;\\n\\tflex-direction: column;\\n\\tflex-shrink: 0;\\n\\twidth: 27vw;\\n\\tmin-width: $sidebar-min-width;\\n\\tmax-width: $sidebar-max-width;\\n\\theight: 100%;\\n\\tborder-left: 1px solid var(--color-border);\\n\\tbackground: var(--color-main-background);\\n\\n\\t.app-sidebar-header {\\n\\t\\t> .app-sidebar__close {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 100;\\n\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\tright: $top-buttons-spacing;\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\tborder-radius: math.div($clickable-area, 2);\\n\\t\\t\\t&:hover,\\n\\t\\t\\t&:active,\\n\\t\\t\\t&:focus {\\n\\t\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\t\\tbackground-color: $action-background-hover;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Compact mode only affects a sidebar with a figure\\n\\t\\t&--compact.app-sidebar-header--with-figure {\\n\\t\\t\\t.app-sidebar-header__info {\\n\\t\\t\\t\\tflex-direction: row;\\n\\n\\t\\t\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\t\\t\\tz-index: 2;\\n\\t\\t\\t\\t\\twidth: $desc-height + $desc-vertical-padding;\\n\\t\\t\\t\\t\\theight: $desc-height + $desc-vertical-padding;\\n\\t\\t\\t\\t\\tmargin: math.div($desc-vertical-padding, 2);\\n\\t\\t\\t\\t\\tborder-radius: 3px;\\n\\t\\t\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t.app-sidebar-header__desc {\\n\\t\\t\\t\\t\\tpadding-left: 0;\\n\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\tmin-width: 0;\\n\\t\\t\\t\\t\\tpadding-right: 2 * $clickable-area + $top-buttons-spacing;\\n\\t\\t\\t\\t\\tpadding-top: $desc-vertical-padding-compact;\\n\\n\\t\\t\\t\\t\\t&.app-sidebar-header__desc--without-actions {\\n\\t\\t\\t\\t\\t\\tpadding-right: #{$clickable-area + $top-buttons-spacing};\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t.app-sidebar-header__tertiary-actions {\\n\\t\\t\\t\\t\\t\\tz-index: 3; // above star\\n\\t\\t\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\t\\t\\ttop: math.div($desc-vertical-padding, 2);\\n\\t\\t\\t\\t\\t\\tleft: -1 * $clickable-area;\\n\\t\\t\\t\\t\\t\\tgap: 0; // override gap\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\t\\t\\t\\tright: $clickable-area + $top-buttons-spacing; // left of the close button\\n\\t\\t\\t\\t\\t\\tbackground-color: transparent;\\n\\t\\t\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// sidebar without figure\\n\\t\\t&:not(.app-sidebar-header--with-figure) {\\n\\t\\t\\t// align the menu with the close button\\n\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: $top-buttons-spacing;\\n\\t\\t\\t\\tright: $top-buttons-spacing + $clickable-area;\\n\\t\\t\\t}\\n\\t\\t\\t// increase the padding to not overlap the menu\\n\\t\\t\\t.app-sidebar-header__desc {\\n\\t\\t\\t\\tpadding-right: #{$clickable-area * 2 + $top-buttons-spacing};\\n\\n\\t\\t\\t\\t&.app-sidebar-header__desc--without-actions {\\n\\t\\t\\t\\t\\tpadding-right: #{$clickable-area + $top-buttons-spacing};\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// the container with the figure and the description\\n\\t\\t.app-sidebar-header__info {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t// header background\\n\\t\\t&__figure {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 250px;\\n\\t\\t\\tmax-height: 250px;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\tbackground-position: center;\\n\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t&--with-action {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// description\\n\\t\\t&__desc {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: row;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tpadding: #{$desc-vertical-padding} #{$top-buttons-spacing} #{$desc-vertical-padding} #{math.div($desc-vertical-padding, 2)};\\n\\t\\t\\tgap: 0 4px;\\n\\n\\t\\t\\t// custom overrides\\n\\t\\t\\t&--with-tertiary-action {\\n\\t\\t\\t\\tpadding-left: 6px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--editable .app-sidebar-header__mainname-form,\\n\\t\\t\\t&--with-subname--editable .app-sidebar-header__mainname-form {\\n\\t\\t\\t\\tmargin-top: -2px;\\n\\t\\t\\t\\tmargin-bottom: -2px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--with-subname--editable .app-sidebar-header__subname {\\n\\t\\t\\t\\tmargin-top: -2px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.app-sidebar-header__tertiary-actions {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\tjustify-content: center;\\n\\t\\t\\t\\tflex: 0 0 auto;\\n\\n\\t\\t\\t\\t.app-sidebar-header__star {\\n\\t\\t\\t\\t\\t// Override default Button component styles\\n\\t\\t\\t\\t\\tbox-shadow: none;\\n\\t\\t\\t\\t\\t&:not([aria-pressed='true']):hover {\\n\\t\\t\\t\\t\\t\\tbox-shadow: none;\\n\\t\\t\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t// names\\n\\t\\t\\t.app-sidebar-header__name-container {\\n\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tflex-direction: column;\\n\\t\\t\\t\\tjustify-content: center;\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t.app-sidebar-header__mainname-container {\\n\\t\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t\\tmin-height: $clickable-area;\\n\\n\\t\\t\\t\\t\\t// main name\\n\\t\\t\\t\\t\\t.app-sidebar-header__mainname {\\n\\t\\t\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t\\t\\t\\tmin-height: 30px;\\n\\t\\t\\t\\t\\t\\tfont-size: 20px;\\n\\t\\t\\t\\t\\t\\tline-height: $desc-name-height;\\n\\n\\t\\t\\t\\t\\t\\t// Needs 'deep' as the link is generated by the linkify directive\\n\\t\\t\\t\\t\\t\\t&:deep(.linkified) {\\n\\t\\t\\t\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t\\t\\t\\t\\ttext-decoration: underline;\\n\\t\\t\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t.app-sidebar-header__mainname-form {\\n\\t\\t\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t\\t\\t\\tinput.app-sidebar-header__mainname-input {\\n\\t\\t\\t\\t\\t\\t\\tflex: 1 1 auto;\\n\\t\\t\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\t\\t\\tpadding: $desc-input-padding;\\n\\t\\t\\t\\t\\t\\t\\tfont-size: 20px;\\n\\t\\t\\t\\t\\t\\t\\tfont-weight: bold;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t// main menu\\n\\t\\t\\t\\t\\t.app-sidebar-header__menu {\\n\\t\\t\\t\\t\\t\\theight: $clickable-area;\\n\\t\\t\\t\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\t\\t\\t\\tborder-radius: math.div($clickable-area, 2);\\n\\t\\t\\t\\t\\t\\tbackground-color: $action-background-hover;\\n\\t\\t\\t\\t\\t\\tmargin-left: 5px;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// shared between main and subname\\n\\t\\t\\t\\t.app-sidebar-header__mainname,\\n\\t\\t\\t\\t.app-sidebar-header__subname {\\n\\t\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// subname\\n\\t\\t\\t\\t.app-sidebar-header__subname {\\n\\t\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\t\\t\\tfont-size: var(--default-font-size);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// sidebar description slot\\n\\t\\t&__description {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tmargin: 0 10px;\\n\\t\\t}\\n\\t}\\n}\\n\\n// Make the sidebar full-width on small screens\\n@media only screen and (max-width: 768px) {\\n\\t.app-sidebar {\\n\\t\\twidth: 100vw;\\n\\t\\tmax-width: 100vw;\\n\\t}\\n}\\n\\n.slide-right-leave-active,\\n.slide-right-enter-active {\\n\\ttransition-duration: var(--animation-quick);\\n\\ttransition-property: max-width, min-width;\\n}\\n\\n.slide-right-enter-to,\\n.slide-right-leave {\\n\\tmin-width: $sidebar-min-width;\\n\\tmax-width: $sidebar-max-width;\\n}\\n\\n.slide-right-enter,\\n.slide-right-leave-to {\\n\\tmin-width: 0 !important;\\n\\tmax-width: 0 !important;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},2887:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-header__description button,.app-sidebar-header__description .button,.app-sidebar-header__description input[type=button],.app-sidebar-header__description input[type=submit],.app-sidebar-header__description input[type=reset]{padding:6px 22px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebar.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCHA,4OAIC,gBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// ! slots specific designs, cannot be scoped\\n// if any button inside the description slot, increase visual padding\\n.app-sidebar-header__description {\\n\\tbutton, .button,\\n\\tinput[type='button'],\\n\\tinput[type='submit'],\\n\\tinput[type='reset'] {\\n\\t\\tpadding: 6px 22px;\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},5385:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-3946530b]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar-tabs[data-v-3946530b]{display:flex;flex-direction:column;min-height:0;flex:1 1 100%}.app-sidebar-tabs__nav[data-v-3946530b]{display:flex;justify-content:stretch;margin-top:10px;padding:0 4px}.app-sidebar-tabs__tab[data-v-3946530b]{flex:1 1}.app-sidebar-tabs__tab.active[data-v-3946530b]{color:var(--color-primary-element)}.app-sidebar-tabs__tab-caption[data-v-3946530b]{flex:0 1 100%;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:center}.app-sidebar-tabs__tab-icon[data-v-3946530b]{display:flex;align-items:center;justify-content:center;background-size:20px}.app-sidebar-tabs__tab[data-v-3946530b] .checkbox-radio-switch__label{max-width:unset}.app-sidebar-tabs__content[data-v-3946530b]{position:relative;min-height:0;height:100%}.app-sidebar-tabs__content--multiple[data-v-3946530b]>:not(section){display:none}[data-v-3946530b] .checkbox-radio-switch--button-variant.checkbox-radio-switch{border:unset}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebar/NcAppSidebarTabs.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,qBAAA,CACA,YAAA,CACA,aAAA,CAEA,wCACC,YAAA,CACA,uBAAA,CACA,eAAA,CACA,aAAA,CAGD,wCACC,QAAA,CACA,+CACC,kCAAA,CAGD,gDACC,aAAA,CACA,UAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CAGD,6CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,oBAAA,CAID,sEACC,eAAA,CAIF,4CACC,iBAAA,CAEA,YAAA,CACA,WAAA,CAGA,oEACC,YAAA,CAKH,+EACC,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.app-sidebar-tabs {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\tmin-height: 0;\\n\\tflex: 1 1 100%;\\n\\n\\t&__nav {\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: stretch;\\n\\t\\tmargin-top: 10px;\\n\\t\\tpadding: 0 4px;\\n\\t}\\n\\n\\t&__tab {\\n\\t\\tflex: 1 1;\\n\\t\\t&.active {\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t}\\n\\n\\t\\t&-caption {\\n\\t\\t\\tflex: 0 1 100%;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\ttext-align: center;\\n\\t\\t}\\n\\n\\t\\t&-icon {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\tbackground-size: 20px;\\n\\t\\t}\\n\\n\\t\\t// Override max-width to use all available space\\n\\t\\t:deep(.checkbox-radio-switch__label) {\\n\\t\\t\\tmax-width: unset;\\n\\t\\t}\\n\\t}\\n\\n\\t&__content {\\n\\t\\tposition: relative;\\n\\t\\t// take full available height\\n\\t\\tmin-height: 0;\\n\\t\\theight: 100%;\\n\\t\\t// force the use of the tab component if more than one tab\\n\\t\\t// you can just put raw content if you don't use tabs\\n\\t\\t&--multiple > :not(section) {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n}\\n\\n:deep(.checkbox-radio-switch--button-variant.checkbox-radio-switch) {\\n\\tborder: unset;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},7294:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},6267:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-51081647]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-radio-switch[data-v-51081647]{display:flex}.checkbox-radio-switch__input[data-v-51081647]{position:absolute;z-index:-1;opacity:0 !important;width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch__input:focus-visible+label[data-v-51081647]{outline:2px solid var(--color-primary-element) !important}.checkbox-radio-switch__label[data-v-51081647]{display:flex;align-items:center;flex-direction:row;gap:4px;user-select:none;min-height:44px;border-radius:44px;padding:4px 14px;width:100%;max-width:fit-content}.checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch__label *[data-v-51081647]{cursor:pointer}.checkbox-radio-switch__label-text[data-v-51081647]:empty{display:none}.checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element);width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch--disabled .checkbox-radio-switch__label[data-v-51081647]{opacity:.5}.checkbox-radio-switch--disabled .checkbox-radio-switch__label .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-background-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label[data-v-51081647]:hover{background-color:var(--color-primary-element-light-hover)}.checkbox-radio-switch-checkbox .checkbox-radio-switch__label[data-v-51081647],.checkbox-radio-switch-switch .checkbox-radio-switch__label[data-v-51081647]{padding:4px 10px}.checkbox-radio-switch-switch:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-text-maxcontrast)}.checkbox-radio-switch-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant.checkbox-radio-switch[data-v-51081647]{border:2px solid var(--color-border-maxcontrast);overflow:hidden}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked[data-v-51081647]{font-weight:bold}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked label[data-v-51081647]{background-color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__label-text[data-v-51081647]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.checkbox-radio-switch--button-variant:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*[data-v-51081647]{color:var(--color-main-text)}.checkbox-radio-switch--button-variant .checkbox-radio-switch__icon[data-v-51081647]:empty{display:none}.checkbox-radio-switch--button-variant[data-v-51081647]:not(.checkbox-radio-switch--button-variant-v-grouped):not(.checkbox-radio-switch--button-variant-h-grouped),.checkbox-radio-switch--button-variant .checkbox-radio-switch__label[data-v-51081647]{border-radius:calc(var(--default-clickable-area)/2)}.checkbox-radio-switch--button-variant-v-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-basis:100%;max-width:unset}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:last-of-type{border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:last-of-type){border-bottom:0 !important}.checkbox-radio-switch--button-variant-v-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-bottom:2px}.checkbox-radio-switch--button-variant-v-grouped[data-v-51081647]:not(:first-of-type){border-top:0 !important}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:first-of-type{border-top-left-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-left-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:last-of-type{border-top-right-radius:calc(var(--default-clickable-area)/2 + 2px);border-bottom-right-radius:calc(var(--default-clickable-area)/2 + 2px)}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:last-of-type){border-right:0 !important}.checkbox-radio-switch--button-variant-h-grouped:not(:last-of-type) .checkbox-radio-switch__label[data-v-51081647]{margin-right:2px}.checkbox-radio-switch--button-variant-h-grouped[data-v-51081647]:not(:first-of-type){border-left:0 !important}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label-text[data-v-51081647]{text-align:center}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__label[data-v-51081647]{flex-direction:column;justify-content:center;width:100%;margin:0;gap:0}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,wCACC,YAAA,CAEA,+CACC,iBAAA,CACA,UAAA,CACA,oBAAA,CACA,sBAAA,CACA,uBAAA,CAGD,mEACC,yDAAA,CAGD,+CACC,YAAA,CACA,kBAAA,CACA,kBAAA,CACA,OAAA,CACA,gBAAA,CACA,eCEe,CDDf,kBCCe,CAAA,gBAAA,CDEf,UAAA,CAEA,qBAAA,CAEA,gGACC,cAAA,CAGD,0DAEC,YAAA,CAIF,gDACC,kCAAA,CACA,sBAAA,CACA,uBAAA,CAGD,gFACC,UCNiB,CDOjB,+GACC,4BAAA,CAIF,2SAEC,8CAAA,CAGD,6PAEC,yDAAA,CAIA,4JACC,gBAAA,CAKF,mHACC,mCAAA,CAID,6IACC,wCAAA,CAOD,8EACC,gDAAA,CACA,eAAA,CAEA,uFACC,gBAAA,CAEA,6FACC,mDAAA,CAMH,2FACC,eAAA,CACA,sBAAA,CACA,kBAAA,CACA,UAAA,CAID,4HACC,4BAAA,CAID,2FACC,YAAA,CAGD,0PAEC,mDArCe,CAyChB,gGACC,eAAA,CAEA,eAAA,CAGA,gFACC,kEA9CoB,CA+CpB,mEA/CoB,CAiDrB,+EACC,qEAlDoB,CAmDpB,sEAnDoB,CAuDrB,qFACC,0BAAA,CACA,mHACC,iBAAA,CAGF,sFACC,uBAAA,CAMD,gFACC,kEArEoB,CAsEpB,qEAtEoB,CAwErB,+EACC,mEAzEoB,CA0EpB,sEA1EoB,CA8ErB,qFACC,yBAAA,CACA,mHACC,gBAAA,CAGF,sFACC,wBAAA,CAGF,qGACC,iBAAA,CAED,gGACC,qBAAA,CACA,sBAAA,CACA,UAAA,CACA,QAAA,CACA,KAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.checkbox-radio-switch {\\n\\tdisplay: flex;\\n\\n\\t&__input {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: -1;\\n\\t\\topacity: 0 !important; // We need !important, or it gets overwritten by server style\\n\\t\\twidth: var(--icon-size);\\n\\t\\theight: var(--icon-size);\\n\\t}\\n\\n\\t&__input:focus-visible + label {\\n\\t\\toutline: 2px solid var(--color-primary-element) !important;\\n\\t}\\n\\n\\t&__label {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tflex-direction: row;\\n\\t\\tgap: 4px;\\n\\t\\tuser-select: none;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tborder-radius: $clickable-area;\\n\\t\\tpadding: 4px $icon-margin;\\n\\t\\t// Set to 100% to make text overflow work on button style\\n\\t\\twidth: 100%;\\n\\t\\t// but restrict to content so plain checkboxes / radio switches do not expand\\n\\t\\tmax-width: fit-content;\\n\\n\\t\\t&, * {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t}\\n\\n\\t\\t&-text:empty {\\n\\t\\t\\t// hide text if empty to ensure checkbox outline is a circle instead of oval\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t&__icon > * {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t\\twidth: var(--icon-size);\\n\\t\\theight: var(--icon-size);\\n\\t}\\n\\n\\t&--disabled &__label {\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t.checkbox-radio-switch__icon > * {\\n\\t\\t\\tcolor: var(--color-main-text)\\n\\t\\t}\\n\\t}\\n\\n\\t&:not(&--disabled, &--checked):focus-within &__label,\\n\\t&:not(&--disabled, &--checked) &__label:hover {\\n\\t\\tbackground-color: var(--color-background-hover);\\n\\t}\\n\\n\\t&--checked:not(&--disabled):focus-within &__label,\\n\\t&--checked:not(&--disabled) &__label:hover {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&-checkbox, &-switch {\\n\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\tpadding: 4px 10px; // we use 24x24px sized MDI icons for checkbox and radiobutton -> (44px - 24 px) / 2 = 10px\\n\\t\\t}\\n\\t}\\n\\n\\t// Switch specific rules\\n\\t&-switch:not(&--checked) &__icon > * {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t// If switch is checked AND disabled, use the fade primary colour\\n\\t&-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked &__icon > * {\\n\\t\\tcolor: var(--color-primary-element-light);\\n\\t}\\n\\n\\t$border-radius: calc(var(--default-clickable-area) / 2);\\n\\t// keep inner border width in mind\\n\\t$border-radius-outer: calc($border-radius + 2px);\\n\\n\\t&--button-variant.checkbox-radio-switch {\\n\\t\\tborder: 2px solid var(--color-border-maxcontrast);\\n\\t\\toverflow: hidden;\\n\\n\\t\\t&--checked {\\n\\t\\t\\tfont-weight: bold;\\n\\n\\t\\t\\tlabel {\\n\\t\\t\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t// Text overflow of button style\\n\\t&--button-variant &__label-text {\\n\\t\\toverflow: hidden;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\twhite-space: nowrap;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t// Set icon color for non active elements to main text color\\n\\t&--button-variant:not(&--checked) &__icon > * {\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t// Hide icon container if empty to remove virtual padding\\n\\t&--button-variant &__icon:empty {\\n\\t\\tdisplay: none;\\n\\t}\\n\\n\\t&--button-variant:not(&--button-variant-v-grouped):not(&--button-variant-h-grouped),\\n\\t&--button-variant &__label {\\n\\t\\tborder-radius: $border-radius;\\n\\t}\\n\\n\\t/* Special rules for vertical button groups */\\n\\t&--button-variant-v-grouped &__label {\\n\\t\\tflex-basis: 100%;\\n\\t\\t// vertically grouped buttons should all have the same width\\n\\t\\tmax-width: unset;\\n\\t}\\n\\t&--button-variant-v-grouped {\\n\\t\\t&:first-of-type {\\n\\t\\t\\tborder-top-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-top-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\t\\t&:last-of-type {\\n\\t\\t\\tborder-bottom-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\n\\t\\t// remove borders between elements\\n\\t\\t&:not(:last-of-type) {\\n\\t\\t\\tborder-bottom: 0!important;\\n\\t\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\t\\tmargin-bottom: 2px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t&:not(:first-of-type) {\\n\\t\\t\\tborder-top: 0!important;\\n\\t\\t}\\n\\t}\\n\\n\\t/* Special rules for horizontal button groups */\\n\\t&--button-variant-h-grouped {\\n\\t\\t&:first-of-type {\\n\\t\\t\\tborder-top-left-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-left-radius: $border-radius-outer;\\n\\t\\t}\\n\\t\\t&:last-of-type {\\n\\t\\t\\tborder-top-right-radius: $border-radius-outer;\\n\\t\\t\\tborder-bottom-right-radius: $border-radius-outer;\\n\\t\\t}\\n\\n\\t\\t// remove borders between elements\\n\\t\\t&:not(:last-of-type) {\\n\\t\\t\\tborder-right: 0!important;\\n\\t\\t\\t.checkbox-radio-switch__label {\\n\\t\\t\\t\\tmargin-right: 2px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t&:not(:first-of-type) {\\n\\t\\t\\tborder-left: 0!important;\\n\\t\\t}\\n\\t}\\n\\t&--button-variant-h-grouped &__label-text {\\n\\t\\ttext-align: center;\\n\\t}\\n\\t&--button-variant-h-grouped &__label {\\n\\t\\tflex-direction: column;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t\\tmargin: 0;\\n\\t\\tgap: 0;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},5886:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-048f418c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.empty-content[data-v-048f418c]{display:flex;align-items:center;flex-direction:column;margin-top:20vh}.modal-wrapper .empty-content[data-v-048f418c]{margin-top:5vh;margin-bottom:5vh}.empty-content__icon[data-v-048f418c]{display:flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-repeat:no-repeat;background-position:center;background-size:64px}.empty-content__icon[data-v-048f418c] svg{width:64px;height:64px;max-width:64px;max-height:64px}.empty-content__name[data-v-048f418c]{margin-bottom:10px;text-align:center}.empty-content__action[data-v-048f418c]{margin-top:8px}.modal-wrapper .empty-content__action[data-v-048f418c]{margin-top:20px;display:flex}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcEmptyContent/NcEmptyContent.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,gCACC,YAAA,CACA,kBAAA,CACA,qBAAA,CACA,eAAA,CAEA,+CACC,cAAA,CACA,iBAAA,CAGD,sCACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kBAAA,CACA,UAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,0CACC,UAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CAIF,sCACC,kBAAA,CACA,iBAAA,CAGD,wCACC,cAAA,CAEA,uDACC,eAAA,CACA,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.empty-content {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tflex-direction: column;\\n\\tmargin-top: 20vh;\\n\\n\\t.modal-wrapper & {\\n\\t\\tmargin-top: 5vh;\\n\\t\\tmargin-bottom: 5vh;\\n\\t}\\n\\n\\t&__icon {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 64px;\\n\\t\\theight: 64px;\\n\\t\\tmargin: 0 auto 15px;\\n\\t\\topacity: .4;\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-position: center;\\n\\t\\tbackground-size: 64px;\\n\\n\\t\\t:deep(svg) {\\n\\t\\t\\twidth: 64px;\\n\\t\\t\\theight: 64px;\\n\\t\\t\\tmax-width: 64px;\\n\\t\\t\\tmax-height: 64px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\tmargin-bottom: 10px;\\n\\t\\ttext-align: center;\\n\\t}\\n\\n\\t&__action {\\n\\t\\tmargin-top: 8px;\\n\\n\\t\\t.modal-wrapper & {\\n\\t\\t\\tmargin-top: 20px;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t}\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},8502:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.loading-icon svg{\\n\\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,a)=>{\"use strict\";a.d(t,{Z:()=>s});var o=a(7537),i=a.n(o),n=a(3645),r=a.n(n)()(i());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a=\"\",o=void 0!==t[5];return t[4]&&(a+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(a+=\"@media \".concat(t[2],\" {\")),o&&(a+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),a+=e(t),o&&(a+=\"}\"),t[2]&&(a+=\"}\"),t[4]&&(a+=\"}\"),a})).join(\"\")},t.i=function(e,a,o,i,n){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(o)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=n),a&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=a):d[2]=a),i&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=i):d[4]=\"\".concat(i)),t.push(d))}},t}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],a=e[3];if(!a)return t;if(\"function\"==typeof btoa){var o=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),i=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(o),n=\"/*# \".concat(i,\" */\");return[t].concat([n]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function a(e){for(var a=-1,o=0;o{\"use strict\";var t={};e.exports=function(e,a){var o=function(e){if(void 0===t[e]){var a=document.querySelector(e);if(window.HTMLIFrameElement&&a instanceof window.HTMLIFrameElement)try{a=a.contentDocument.head}catch(e){a=null}t[e]=a}return t[e]}(e);if(!o)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");o.appendChild(a)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,a)=>{\"use strict\";e.exports=function(e){var t=a.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(a){!function(e,t,a){var o=\"\";a.supports&&(o+=\"@supports (\".concat(a.supports,\") {\")),a.media&&(o+=\"@media \".concat(a.media,\" {\"));var i=void 0!==a.layer;i&&(o+=\"@layer\".concat(a.layer.length>0?\" \".concat(a.layer):\"\",\" {\")),o+=a.css,i&&(o+=\"}\"),a.media&&(o+=\"}\"),a.supports&&(o+=\"}\");var n=a.sourceMap;n&&\"undefined\"!=typeof btoa&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(n)))),\" */\")),t.styleTagTransform(o,e,t.options)}(t,e,a)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5727:()=>{},2112:()=>{},2102:()=>{},3768:()=>{},9258:()=>{},9280:()=>{},2405:()=>{},1900:(e,t,a)=>{\"use strict\";function o(e,t,a,o,i,n,r,s){var c,l=\"function\"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),o&&(l.functional=!0),n&&(l._scopeId=\"data-v-\"+n),r?(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(r)},l._ssrRegister=c):i&&(c=s?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var d=l.render;l.render=function(e,t){return c.call(t),d(e,t)}}else{var m=l.beforeCreate;l.beforeCreate=m?[].concat(m,c):[c]}return{exports:e,options:l}}a.d(t,{Z:()=>o})},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function a(o){var i=t[o];if(void 0!==i)return i.exports;var n=t[o]={id:o,exports:{}};return e[o](n,n.exports,a),n.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var o in t)a.o(t,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},a.nc=void 0;var o={};return(()=>{\"use strict\";a.r(o),a.d(o,{default:()=>H});var e=a(3329);const t={name:\"NcAppSidebarTabs\",components:{NcCheckboxRadioSwitch:a(998).default,NcVNodes:e.default},provide:function(){var e=this;return{registerTab:this.registerTab,unregisterTab:this.unregisterTab,getActiveTab:function(){return e.activeTab}}},props:{active:{type:String,default:\"\"}},emits:[\"update:active\"],data:function(){return{tabs:[],activeTab:\"\"}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(t){return t.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()}},methods:{setActive:function(e){this.activeTab=e,this.$emit(\"update:active\",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&this.setActive(this.tabs[this.currentTabIndex-1].id),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex0?this.tabs[0].id:\"\"},registerTab:function(e){this.tabs.push(e),this.tabs.sort((function(e,t){return e.order===t.order?OC.Util.naturalSortCompare(e.name,t.name):e.order-t.order})),this.updateActive()},unregisterTab:function(e){var t=this.tabs.findIndex((function(t){return t.id===e}));-1!==t&&this.tabs.splice(t,1),this.activeTab===e&&this.updateActive()}}};var i=a(3379),n=a.n(i),r=a(7795),s=a.n(r),c=a(569),l=a.n(c),d=a(3565),m=a.n(d),u=a(9216),p=a.n(u),h=a(4589),g=a.n(h),A=a(5385),v={};v.styleTagTransform=g(),v.setAttributes=m(),v.insert=l().bind(null,\"head\"),v.domAPI=s(),v.insertStyleElement=p();n()(A.Z,v);A.Z&&A.Z.locals&&A.Z.locals;var k=a(1900);const f=(0,k.Z)(t,(function(){var e=this,t=e._self._c;return t(\"div\",{staticClass:\"app-sidebar-tabs\"},[e.hasMultipleTabs?t(\"div\",{staticClass:\"app-sidebar-tabs__nav\",attrs:{role:\"tablist\"},on:{keydown:[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"left\",37,t.key,[\"Left\",\"ArrowLeft\"])||\"button\"in t&&0!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPreviousTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"right\",39,t.key,[\"Right\",\"ArrowRight\"])||\"button\"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNextTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusActiveTabContent.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"home\",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"end\",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments))},function(t){return t.type.indexOf(\"key\")||33===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab.apply(null,arguments)):null},function(t){return t.type.indexOf(\"key\")||34===t.keyCode?t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab.apply(null,arguments)):null}]}},e._l(e.tabs,(function(a){return t(\"NcCheckboxRadioSwitch\",{key:a.id,staticClass:\"app-sidebar-tabs__tab\",class:{active:a.id===e.activeTab},attrs:{\"aria-controls\":\"tab-\".concat(a.id),\"aria-selected\":e.activeTab===a.id,\"button-variant\":!0,checked:e.activeTab===a.id,\"data-id\":a.id,tabindex:e.activeTab===a.id?0:-1,\"button-variant-grouped\":\"horizontal\",role:\"tab\",type:\"button\"},on:{\"update:checked\":function(t){return e.setActive(a.id)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"NcVNodes\",{attrs:{vnodes:a.renderIcon()}},[t(\"span\",{staticClass:\"app-sidebar-tabs__tab-icon\",class:a.icon})])]},proxy:!0}],null,!0)},[t(\"span\",{staticClass:\"app-sidebar-tabs__tab-caption\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(a.name)+\"\\n\\t\\t\\t\")])])})),1):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-tabs__content\",class:{\"app-sidebar-tabs__content--multiple\":e.hasMultipleTabs}},[e._t(\"default\")],2)])}),[],!1,null,\"3946530b\",null).exports;var y=a(7664),C=a(6492),b=a(3089),w=a(9462),P=a(8167),S=a(640),N=a(336),x=a(932);const j=require(\"vue-material-design-icons/ArrowRight.vue\");var E=a.n(j);const O=require(\"vue-material-design-icons/Close.vue\");var _=a.n(O);const B=require(\"vue-material-design-icons/Star.vue\");var z=a.n(B);const F=require(\"vue-material-design-icons/StarOutline.vue\");var M=a.n(F);const T=require(\"@vueuse/components\"),D={name:\"NcAppSidebar\",components:{NcActions:y.default,NcAppSidebarTabs:f,ArrowRight:E(),NcButton:b.default,NcLoadingIcon:C.default,NcEmptyContent:w.default,Close:_(),Star:z(),StarOutline:M()},directives:{focus:P.default,linkify:S.default,ClickOutside:T.vOnClickOutside,Tooltip:N.default},props:{active:{type:String,default:\"\"},name:{type:String,default:\"\",required:!0},nameEditable:{type:Boolean,default:!1},namePlaceholder:{type:String,default:\"\"},subname:{type:String,default:\"\"},subtitle:{type:String,default:\"\"},background:{type:String,default:\"\"},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyName:{type:Boolean,default:!1},title:{type:String,default:\"\"}},emits:[\"close\",\"closing\",\"closed\",\"opening\",\"opened\",\"figure-click\",\"update:starred\",\"update:nameEditable\",\"update:name\",\"update:active\",\"submit-name\",\"dismiss-editing\"],data:function(){return{changeNameTranslated:(0,x.t)(\"Change name\"),closeTranslated:(0,x.t)(\"Close sidebar\"),favoriteTranslated:(0,x.t)(\"Favorite\"),isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners[\"figure-click\"]}},watch:{starred:function(){this.isStarred=this.starred}},beforeDestroy:function(){this.$emit(\"closed\")},methods:{onBeforeEnter:function(e){this.$emit(\"opening\",e)},onAfterEnter:function(e){this.$emit(\"opened\",e)},onBeforeLeave:function(e){this.$emit(\"closing\",e)},onAfterLeave:function(e){this.$emit(\"closed\",e)},closeSidebar:function(e){this.$emit(\"close\",e)},onFigureClick:function(e){this.$emit(\"figure-click\",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit(\"update:starred\",this.isStarred)},editName:function(){var e=this;this.$emit(\"update:nameEditable\",!0),this.nameEditable&&this.$nextTick((function(){return e.$refs.nameInput.focus()}))},onNameInput:function(e){this.$emit(\"update:name\",e.target.value)},onSubmitName:function(e){this.$emit(\"update:nameEditable\",!1),this.$emit(\"submit-name\",e)},onDismissEditing:function(){this.$emit(\"update:nameEditable\",!1),this.$emit(\"dismiss-editing\")},onUpdateActive:function(e){this.$emit(\"update:active\",e)}}};var G=a(2365),R={};R.styleTagTransform=g(),R.setAttributes=m(),R.insert=l().bind(null,\"head\"),R.domAPI=s(),R.insertStyleElement=p();n()(G.Z,R);G.Z&&G.Z.locals&&G.Z.locals;var q=a(2887),U={};U.styleTagTransform=g(),U.setAttributes=m(),U.insert=l().bind(null,\"head\"),U.domAPI=s(),U.insertStyleElement=p();n()(q.Z,U);q.Z&&q.Z.locals&&q.Z.locals;var L=a(2112),$=a.n(L),I=(0,k.Z)(D,(function(){var e=this,t=e._self._c;return t(\"transition\",{attrs:{appear:\"\",name:\"slide-right\"},on:{\"before-enter\":e.onBeforeEnter,\"after-enter\":e.onAfterEnter,\"before-leave\":e.onBeforeLeave,\"after-leave\":e.onAfterLeave}},[t(\"aside\",{staticClass:\"app-sidebar\",attrs:{id:\"app-sidebar-vue\"}},[t(\"header\",{staticClass:\"app-sidebar-header\",class:{\"app-sidebar-header--with-figure\":e.hasFigure,\"app-sidebar-header--compact\":e.compact}},[t(\"div\",{staticClass:\"app-sidebar-header__info\"},[e.hasFigure&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__figure\",class:{\"app-sidebar-header__figure--with-action\":e.hasFigureClickListener},style:{backgroundImage:\"url(\".concat(e.background,\")\")},attrs:{tabindex:\"0\"},on:{click:e.onFigureClick,keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.onFigureClick.apply(null,arguments)}}},[e._t(\"header\")],2):e._e(),e._v(\" \"),e.empty?e._e():t(\"div\",{staticClass:\"app-sidebar-header__desc\",class:{\"app-sidebar-header__desc--with-tertiary-action\":e.canStar||e.$slots[\"tertiary-actions\"],\"app-sidebar-header__desc--editable\":e.nameEditable&&!e.subname,\"app-sidebar-header__desc--with-subname--editable\":e.nameEditable&&e.subname,\"app-sidebar-header__desc--without-actions\":!e.$slots[\"secondary-actions\"]}},[e.canStar||e.$slots[\"tertiary-actions\"]?t(\"div\",{staticClass:\"app-sidebar-header__tertiary-actions\"},[e._t(\"tertiary-actions\",(function(){return[e.canStar?t(\"NcButton\",{staticClass:\"app-sidebar-header__star\",attrs:{\"aria-label\":e.favoriteTranslated,pressed:e.isStarred,type:\"secondary\"},on:{click:function(t){return t.preventDefault(),e.toggleStarred.apply(null,arguments)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[e.starLoading?t(\"NcLoadingIcon\"):e.isStarred?t(\"Star\",{attrs:{size:20}}):t(\"StarOutline\",{attrs:{size:20}})]},proxy:!0}],null,!1,2575459756)}):e._e()]}))],2):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-header__name-container\"},[t(\"div\",{staticClass:\"app-sidebar-header__mainname-container\"},[t(\"h2\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.nameEditable,expression:\"!nameEditable\"},{name:\"linkify\",rawName:\"v-linkify\",value:{text:e.name,linkify:e.linkifyName},expression:\"{text: name, linkify: linkifyName}\"}],staticClass:\"app-sidebar-header__mainname\",attrs:{\"aria-label\":e.title,title:e.title,tabindex:e.nameEditable?0:void 0},on:{click:function(t){return t.target!==t.currentTarget?null:e.editName.apply(null,arguments)}}},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\\t\\t\\t\\t\")]),e._v(\" \"),e.nameEditable?[t(\"form\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:function(){return e.onSubmitName()},expression:\"() => onSubmitName()\"}],staticClass:\"app-sidebar-header__mainname-form\",on:{submit:function(t){return t.preventDefault(),e.onSubmitName.apply(null,arguments)}}},[t(\"input\",{directives:[{name:\"focus\",rawName:\"v-focus\"}],ref:\"nameInput\",staticClass:\"app-sidebar-header__mainname-input\",attrs:{type:\"text\",placeholder:e.namePlaceholder},domProps:{value:e.name},on:{keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"])?null:e.onDismissEditing.apply(null,arguments)},input:e.onNameInput}}),e._v(\" \"),t(\"NcButton\",{attrs:{type:\"tertiary-no-background\",\"aria-label\":e.changeNameTranslated,\"native-type\":\"submit\"},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"ArrowRight\",{attrs:{size:20}})]},proxy:!0}],null,!1,1252225425)})],1)]:e._e(),e._v(\" \"),e.$slots[\"secondary-actions\"]?t(\"NcActions\",{staticClass:\"app-sidebar-header__menu\",attrs:{\"force-menu\":e.forceMenu}},[e._t(\"secondary-actions\")],2):e._e()],2),e._v(\" \"),\"\"!==e.subname.trim()?t(\"p\",{staticClass:\"app-sidebar-header__subname\",attrs:{\"aria-label\":e.subtitle,title:e.subtitle}},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.subname)+\"\\n\\t\\t\\t\\t\\t\\t\")]):e._e()])])]),e._v(\" \"),t(\"NcButton\",{staticClass:\"app-sidebar__close\",attrs:{title:e.closeTranslated,\"aria-label\":e.closeTranslated,type:\"tertiary\"},on:{click:function(t){return t.preventDefault(),e.closeSidebar.apply(null,arguments)}},scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"Close\",{attrs:{size:20}})]},proxy:!0}])}),e._v(\" \"),e.$slots.description&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__description\"},[e._t(\"description\")],2):e._e()],1),e._v(\" \"),t(\"NcAppSidebarTabs\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.loading,expression:\"!loading\"}],ref:\"tabs\",attrs:{active:e.active},on:{\"update:active\":e.onUpdateActive}},[e._t(\"default\")],2),e._v(\" \"),e.loading?t(\"NcEmptyContent\",{scopedSlots:e._u([{key:\"icon\",fn:function(){return[t(\"NcLoadingIcon\",{attrs:{size:64}})]},proxy:!0}],null,!1,826850984)}):e._e()],1)])}),[],!1,null,\"1c6914a9\",null);\"function\"==typeof $()&&$()(I);const H=I.exports})(),o})()));\n//# sourceMappingURL=NcAppSidebar.js.map","/*! For license information please see NcAppSidebarTab.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcAppSidebarTab\"]=t())}(self,(()=>(()=>{\"use strict\";var e={4909:(e,t,n)=>{n.d(t,{Z:()=>s});var r=n(7537),o=n.n(r),a=n(3645),i=n.n(a)()(o());i.push([e.id,\".material-design-icon[data-v-4c850128]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.app-sidebar__tab[data-v-4c850128]{display:none;padding:10px;min-height:100%;max-height:100%;height:100%;overflow:auto}.app-sidebar__tab[data-v-4c850128]:focus{border-color:var(--color-primary-element);box-shadow:0 0 .2em var(--color-primary-element);outline:0}.app-sidebar__tab--active[data-v-4c850128]{display:block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAppSidebarTab/NcAppSidebarTab.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,YAAA,CACA,YAAA,CACA,eAAA,CACA,eAAA,CACA,WAAA,CACA,aAAA,CAEA,yCACC,yCAAA,CACA,gDAAA,CACA,SAAA,CAGD,2CACC,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.app-sidebar__tab {\\n\\tdisplay: none;\\n\\tpadding: 10px;\\n\\tmin-height: 100%; // fill available height\\n\\tmax-height: 100%; // scroll inside\\n\\theight: 100%;\\n\\toverflow: auto;\\n\\n\\t&:focus {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t\\tbox-shadow: 0 0 0.2em var(--color-primary-element);\\n\\t\\toutline: 0;\\n\\t}\\n\\n\\t&--active {\\n\\t\\tdisplay: block;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=i},3645:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",r=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),r&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),r&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,r,o,a){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var s=0;s0?\" \".concat(d[5]):\"\",\" {\").concat(d[1],\"}\")),d[5]=a),n&&(d[2]?(d[1]=\"@media \".concat(d[2],\" {\").concat(d[1],\"}\"),d[2]=n):d[2]=n),o&&(d[4]?(d[1]=\"@supports (\".concat(d[4],\") {\").concat(d[1],\"}\"),d[4]=o):d[4]=\"\".concat(o)),t.push(d))}},t}},7537:e=>{e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if(\"function\"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(r),a=\"/*# \".concat(o,\" */\");return[t].concat([a]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{var t=[];function n(e){for(var n=-1,r=0;r{var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");r.appendChild(n)}},9216:e=>{e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r=\"\";n.supports&&(r+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(r+=\"@media \".concat(n.media,\" {\"));var o=void 0!==n.layer;o&&(r+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),r+=n.css,o&&(r+=\"}\"),n.media&&(r+=\"}\"),n.supports&&(r+=\"}\");var a=n.sourceMap;a&&\"undefined\"!=typeof btoa&&(r+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a)))),\" */\")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.nc=void 0;var r={};return(()=>{n.r(r),n.d(r,{default:()=>b});const e={name:\"NcAppSidebarTab\",inject:[\"registerTab\",\"unregisterTab\",\"getActiveTab\"],props:{id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,default:\"\"},order:{type:Number,default:0}},emits:[\"bottom-reached\",\"scroll\"],expose:[\"id\",\"name\",\"icon\",\"order\",\"renderIcon\"],computed:{isActive:function(){return this.getActiveTab()===this.id}},created:function(){this.registerTab(this)},beforeDestroy:function(){this.unregisterTab(this.id)},methods:{onScroll:function(e){this.$el.scrollHeight-this.$el.scrollTop===this.$el.clientHeight&&this.$emit(\"bottom-reached\",e),this.$emit(\"scroll\",e)},renderIcon:function(){var e,t;return null===(e=(t=this.$scopedSlots).icon)||void 0===e?void 0:e.call(t)}}};var t=n(3379),o=n.n(t),a=n(7795),i=n.n(a),s=n(569),c=n.n(s),l=n(3565),d=n.n(l),u=n(9216),p=n.n(u),f=n(4589),v=n.n(f),A=n(4909),m={};m.styleTagTransform=v(),m.setAttributes=d(),m.insert=c().bind(null,\"head\"),m.domAPI=i(),m.insertStyleElement=p();o()(A.Z,m);A.Z&&A.Z.locals&&A.Z.locals;var h=function(e,t,n,r,o,a,i,s){var c,l=\"function\"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=n,l._compiled=!0),r&&(l.functional=!0),a&&(l._scopeId=\"data-v-\"+a),i?(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__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},l._ssrRegister=c):o&&(c=s?function(){o.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(l.functional){l._injectStyles=c;var d=l.render;l.render=function(e,t){return c.call(t),d(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}(e,(function(){var e=this,t=e._self._c;return t(\"section\",{staticClass:\"app-sidebar__tab\",class:{\"app-sidebar__tab--active\":e.isActive},attrs:{id:\"tab-\".concat(e.id),\"aria-hidden\":!e.isActive,\"aria-labelledby\":e.id,tabindex:\"0\",role:\"tabpanel\"},on:{scroll:e.onScroll}},[t(\"h3\",{staticClass:\"hidden-visually\"},[e._v(\"\\n\\t\\t\"+e._s(e.name)+\"\\n\\t\")]),e._v(\" \"),e._t(\"default\")],2)}),[],!1,null,\"4c850128\",null);const b=h.exports})(),r})()));\n//# sourceMappingURL=NcAppSidebarTab.js.map","/*! For license information please see NcSelectTags.js.LICENSE.txt */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],t):\"object\"==typeof exports?exports.NextcloudVue=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/NcSelectTags\"]=t())}(self,(()=>(()=>{var e={5166:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcActionLink\",mixins:[o(9156).Z],props:{href:{type:String,default:\"#\",required:!0,validator:function(e){try{return new URL(e)}catch(t){return e.startsWith(\"#\")||e.startsWith(\"/\")}}},download:{type:String,default:null},target:{type:String,default:\"_self\",validator:function(e){return e&&(!e.startsWith(\"_\")||[\"_blank\",\"_self\",\"_parent\",\"_top\"].indexOf(e)>-1)}},title:{type:String,default:null},ariaHidden:{type:Boolean,default:null}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(4402),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=c().bind(null,\"head\"),f.domAPI=s(),f.insertStyleElement=p();i()(v.Z,f);v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9158),k=o.n(y),C=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t(\"li\",{staticClass:\"action\"},[t(\"a\",{staticClass:\"action-link focusable\",attrs:{download:e.download,href:e.href,\"aria-label\":e.ariaLabel,target:e.target,title:e.title,rel:\"nofollow noreferrer noopener\",role:\"menuitem\"},on:{click:e.onClick}},[e._t(\"icon\",(function(){return[t(\"span\",{staticClass:\"action-link__icon\",class:[e.isIconUrl?\"action-link__icon--url\":e.icon],style:{backgroundImage:e.isIconUrl?\"url(\".concat(e.icon,\")\"):null},attrs:{\"aria-hidden\":e.ariaHidden}})]})),e._v(\" \"),e.name?t(\"p\",[t(\"strong\",{staticClass:\"action-link__name\"},[e._v(\"\\n\\t\\t\\t\\t\"+e._s(e.name)+\"\\n\\t\\t\\t\")]),e._v(\" \"),t(\"br\"),e._v(\" \"),t(\"span\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}})]):e.isLongText?t(\"p\",{staticClass:\"action-link__longtext\",domProps:{textContent:e._s(e.text)}}):t(\"span\",{staticClass:\"action-link__text\"},[e._v(e._s(e.text))]),e._v(\" \"),e._e()],2)])}),[],!1,null,\"df184e4e\",null);\"function\"==typeof k()&&k()(C);const b=C.exports},7664:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>G});var a=o(3089),n=o(2297),i=o(1205),r=o(932),s=o(2734),l=o.n(s),c=o(1441),u=o.n(c);function d(e){return d=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},d(e)}function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function p(e){for(var t=1;te.length)&&(t=e.length);for(var o=0,a=new Array(t);o0&&void 0!==arguments[0])||arguments[0];this.opened&&(this.opened=!1,this.$refs.popover.clearFocusTrap({returnFocus:e}),this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.focusIndex=0,this.$refs.menuButton.$el.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest(\"li\");if(t){var o=t.querySelector(f);if(o){var a=g(this.$refs.menu.querySelectorAll(f)).indexOf(o);a>-1&&(this.focusIndex=a,this.focusAction())}}}},onKeydown:function(e){(38===e.keyCode||9===e.keyCode&&e.shiftKey)&&this.focusPreviousAction(e),(40===e.keyCode||9===e.keyCode&&!e.shiftKey)&&this.focusNextAction(e),33===e.keyCode&&this.focusFirstAction(e),34===e.keyCode&&this.focusLastAction(e),27===e.keyCode&&(this.closeMenu(),e.preventDefault())},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(f)[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest(\"li.action\");e.focus(),t&&t.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(f).length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$refs.menu.querySelectorAll(f).length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus:function(e){this.$emit(\"focus\",e)},onBlur:function(e){this.$emit(\"blur\",e)}},render:function(e){var t=this,o=(this.$slots.default||[]).filter((function(e){var t,o;return(null==e||null===(t=e.componentOptions)||void 0===t?void 0:t.tag)||(null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)})),a=o.every((function(e){var t,o,a,n;return\"NcActionLink\"===(null!==(t=null==e||null===(o=e.componentOptions)||void 0===o||null===(o=o.Ctor)||void 0===o||null===(o=o.extendOptions)||void 0===o?void 0:o.name)&&void 0!==t?t:null==e||null===(a=e.componentOptions)||void 0===a?void 0:a.tag)&&(null==e||null===(n=e.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n||null===(n=n.href)||void 0===n?void 0:n.startsWith(window.location.origin))})),n=o.filter(this.isValidSingleAction);if(this.forceMenu&&n.length>0&&this.inline>0&&(l().util.warn(\"Specifying forceMenu will ignore any inline actions rendering.\"),n=[]),0!==o.length){var i=function(o){var a,n,i,r,s,l,c,u,d,m,h,g,v=(null==o||null===(a=o.data)||void 0===a||null===(a=a.scopedSlots)||void 0===a||null===(a=a.icon())||void 0===a?void 0:a[0])||e(\"span\",{class:[\"icon\",null==o||null===(n=o.componentOptions)||void 0===n||null===(n=n.propsData)||void 0===n?void 0:n.icon]}),f=null==o||null===(i=o.componentOptions)||void 0===i||null===(i=i.listeners)||void 0===i?void 0:i.click,A=null==o||null===(r=o.componentOptions)||void 0===r||null===(r=r.children)||void 0===r||null===(r=r[0])||void 0===r||null===(r=r.text)||void 0===r||null===(s=r.trim)||void 0===s?void 0:s.call(r),y=(null==o||null===(l=o.componentOptions)||void 0===l||null===(l=l.propsData)||void 0===l?void 0:l.ariaLabel)||A,k=t.forceName?A:\"\",C=null==o||null===(c=o.componentOptions)||void 0===c||null===(c=c.propsData)||void 0===c?void 0:c.title;return t.forceName||C||(C=A),e(\"NcButton\",{class:[\"action-item action-item--single\",null==o||null===(u=o.data)||void 0===u?void 0:u.staticClass,null==o||null===(d=o.data)||void 0===d?void 0:d.class],attrs:{\"aria-label\":y,title:C},ref:null==o||null===(m=o.data)||void 0===m?void 0:m.ref,props:p({type:t.type||(k?\"secondary\":\"tertiary\"),disabled:t.disabled||(null==o||null===(h=o.componentOptions)||void 0===h||null===(h=h.propsData)||void 0===h?void 0:h.disabled),ariaHidden:t.ariaHidden},null==o||null===(g=o.componentOptions)||void 0===g?void 0:g.propsData),on:p({focus:t.onFocus,blur:t.onBlur},!!f&&{click:function(e){f&&f(e)}})},[e(\"template\",{slot:\"icon\"},[v]),k])},r=function(o){var n,i,r=(null===(n=t.$slots.icon)||void 0===n?void 0:n[0])||(t.defaultIcon?e(\"span\",{class:[\"icon\",t.defaultIcon]}):e(\"DotsHorizontal\",{props:{size:20}}));return e(\"NcPopover\",{ref:\"popover\",props:{delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container,popoverBaseClass:\"action-item__popper\",setReturnFocus:null===(i=t.$refs.menuButton)||void 0===i?void 0:i.$el},attrs:p(p({delay:0,handleResize:!0,shown:t.opened,placement:t.placement,boundary:t.boundariesElement,container:t.container},t.manualOpen&&{triggers:[]}),{},{popoverBaseClass:\"action-item__popper\"}),on:{show:t.openMenu,\"after-show\":t.onOpen,hide:t.closeMenu}},[e(\"NcButton\",{class:\"action-item__menutoggle\",props:{type:t.triggerBtnType,disabled:t.disabled,ariaHidden:t.ariaHidden},slot:\"trigger\",ref:\"menuButton\",attrs:{\"aria-haspopup\":a?null:\"menu\",\"aria-label\":t.menuName?null:t.ariaLabel,\"aria-controls\":t.opened?t.randomId:null,\"aria-expanded\":t.opened.toString()},on:{focus:t.onFocus,blur:t.onBlur}},[e(\"template\",{slot:\"icon\"},[r]),t.menuName]),e(\"div\",{class:{open:t.opened},attrs:{tabindex:\"-1\"},on:{keydown:t.onKeydown,mousemove:t.onMouseFocusAction},ref:\"menu\"},[e(\"ul\",{attrs:{id:t.randomId,tabindex:\"-1\",role:a?null:\"menu\"}},[o])])])};if(1===o.length&&1===n.length&&!this.forceMenu)return i(n[0]);if(n.length>0&&this.inline>0){var s=n.slice(0,this.inline),c=o.filter((function(e){return!s.includes(e)}));return e(\"div\",{class:[\"action-items\",\"action-item--\".concat(this.triggerBtnType)]},[].concat(g(s.map(i)),[c.length>0?e(\"div\",{class:[\"action-item\",{\"action-item--open\":this.opened}]},[r(c)]):null]))}return e(\"div\",{class:[\"action-item action-item--default-popover\",\"action-item--\".concat(this.triggerBtnType),{\"action-item--open\":this.opened}]},[r(o)])}}};var y=o(3379),k=o.n(y),C=o(7795),b=o.n(C),w=o(569),S=o.n(w),P=o(3565),N=o.n(P),x=o(9216),j=o.n(x),O=o(4589),E=o.n(O),B=o(9546),z={};z.styleTagTransform=E(),z.setAttributes=N(),z.insert=S().bind(null,\"head\"),z.domAPI=b(),z.insertStyleElement=j();k()(B.Z,z);B.Z&&B.Z.locals&&B.Z.locals;var _=o(5155),F={};F.styleTagTransform=E(),F.setAttributes=N(),F.insert=S().bind(null,\"head\"),F.domAPI=b(),F.insertStyleElement=j();k()(_.Z,F);_.Z&&_.Z.locals&&_.Z.locals;var M=o(1900),L=o(5727),D=o.n(L),T=(0,M.Z)(A,undefined,undefined,!1,null,\"55038265\",null);\"function\"==typeof D()&&D()(T);const G=T.exports},2158:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>$});var a=o(7664),n=o(5166),i=o(3089),r=o(6492),s=o(9319),l=o(1137),c=o(932),u=o(768),d=o.n(u),m=o(1441),p=o.n(m),h=o(3607),g=o(542);const v=require(\"@nextcloud/browser-storage\");var f=o(4262);const A=require(\"@vueuse/components\");function y(e){return y=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},y(e)}function k(){k=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,d=c.value;return d&&\"object\"==y(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===d)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),d;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,d):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function b(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){C(i,a,n,r,s,\"next\",e)}function s(e){C(i,a,n,r,s,\"throw\",e)}r(void 0)}))}}var w=(0,v.getBuilder)(\"nextcloud\").persist().build();function S(e,t){e&&w.setItem(\"user-has-avatar.\"+e,t)}const P={name:\"NcAvatar\",directives:{ClickOutside:A.vOnClickOutside},components:{DotsHorizontal:p(),NcActions:a.default,NcActionLink:n.default,NcButton:i.default,NcLoadingIcon:r.default},mixins:[l.iQ],props:{url:{type:String,default:void 0},iconClass:{type:String,default:void 0},user:{type:String,default:void 0},showUserStatus:{type:Boolean,default:!0},showUserStatusCompact:{type:Boolean,default:!0},preloadedUserStatus:{type:Object,default:void 0},isGuest:{type:Boolean,default:!1},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},disableMenu:{type:Boolean,default:!1},tooltipMessage:{type:String,default:null},isNoUser:{type:Boolean,default:!1},menuContainer:{type:[String,Object,Element,Boolean],default:\"body\"}},data:function(){return{avatarUrlLoaded:null,avatarSrcSetLoaded:null,userDoesNotExist:!1,isAvatarLoaded:!1,isMenuLoaded:!1,contactsMenuLoading:!1,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{avatarAriaLabel:function(){var e,t;if(this.hasMenu)return this.hasStatus&&this.showUserStatus&&this.showUserStatusCompact?(0,c.t)(\"Avatar of {displayName}, {status}\",{displayName:null!==(t=this.displayName)&&void 0!==t?t:this.user,status:this.userStatus.status}):(0,c.t)(\"Avatar of {displayName}\",{displayName:null!==(e=this.displayName)&&void 0!==e?e:this.user})},canDisplayUserStatus:function(){return this.showUserStatus&&this.hasStatus&&[\"online\",\"away\",\"dnd\"].includes(this.userStatus.status)},showUserStatusIconOnAvatar:function(){return this.showUserStatus&&this.showUserStatusCompact&&this.hasStatus&&\"dnd\"!==this.userStatus.status&&this.userStatus.icon},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},hasMenu:function(){var e;return!this.disableMenu&&(this.isMenuLoaded?this.menu.length>0:!(this.user===(null===(e=(0,h.getCurrentUser)())||void 0===e?void 0:e.uid)||this.userDoesNotExist||this.url))},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){return{\"--size\":this.size+\"px\",lineHeight:this.size+\"px\",fontSize:Math.round(.45*this.size)+\"px\"}},initialsWrapperStyle:function(){var e=(0,s.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{backgroundColor:\"rgba(\".concat(t,\", \").concat(o,\", \").concat(a,\", 0.1)\")}},initialsStyle:function(){var e=(0,s.default)(this.getUserIdentifier),t=e.r,o=e.g,a=e.b;return{color:\"rgb(\".concat(t,\", \").concat(o,\", \").concat(a,\")\")}},tooltip:function(){return!this.disableTooltip&&(this.tooltipMessage?this.tooltipMessage:this.displayName)},initials:function(){var e;if(this.shouldShowPlaceholder){var t=this.getUserIdentifier,o=t.indexOf(\" \");\"\"===t?e=\"?\":(e=String.fromCodePoint(t.codePointAt(0)),-1!==o&&(e=e.concat(String.fromCodePoint(t.codePointAt(o+1)))))}return e.toUpperCase()},menu:function(){var e,t,o,a=this.contactsMenuActions.map((function(e){return{href:e.hyperlink,icon:e.icon,text:e.title}}));return this.showUserStatus&&(this.userStatus.icon||this.userStatus.message)?[{href:\"#\",icon:\"data:image/svg+xml;utf8,\".concat((e=this.userStatus.icon,t=document.createTextNode(e),o=document.createElement(\"p\"),o.appendChild(t),o.innerHTML),\"\"),text:\"\".concat(this.userStatus.message)}].concat(a):a}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.isMenuLoaded=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl(),(0,g.subscribe)(\"settings:avatar:updated\",this.loadAvatarUrl),(0,g.subscribe)(\"settings:display-name:updated\",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(this.preloadedUserStatus?(this.userStatus.status=this.preloadedUserStatus.status||\"\",this.userStatus.message=this.preloadedUserStatus.message||\"\",this.userStatus.icon=this.preloadedUserStatus.icon||\"\",this.hasStatus=null!==this.preloadedUserStatus.status):this.fetchUserStatus(this.user),(0,g.subscribe)(\"user_status:status.updated\",this.handleUserStatusUpdated))},beforeDestroy:function(){(0,g.unsubscribe)(\"settings:avatar:updated\",this.loadAvatarUrl),(0,g.unsubscribe)(\"settings:display-name:updated\",this.loadAvatarUrl),this.showUserStatus&&this.user&&!this.isNoUser&&(0,g.unsubscribe)(\"user_status:status.updated\",this.handleUserStatusUpdated)},methods:{t:c.t,handleUserStatusUpdated:function(e){this.user===e.userId&&(this.userStatus={status:e.status,icon:e.icon,message:e.message})},toggleMenu:function(){var e=this;return b(k().mark((function t(){return k().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.hasMenu){t.next=2;break}return t.abrupt(\"return\");case 2:if(e.contactsMenuOpenState){t.next=5;break}return t.next=5,e.fetchContactsMenu();case 5:e.contactsMenuOpenState=!e.contactsMenuOpenState;case 6:case\"end\":return t.stop()}}),t)})))()},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var e=this;return b(k().mark((function t(){var o,a,n;return k().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.contactsMenuLoading=!0,t.prev=1,o=encodeURIComponent(e.user),t.next=5,d().post((0,f.generateUrl)(\"contactsmenu/findOne\"),\"shareType=0&shareWith=\".concat(o));case 5:a=t.sent,n=a.data,e.contactsMenuActions=n.topAction?[n.topAction].concat(n.actions):n.actions,t.next=13;break;case 10:t.prev=10,t.t0=t.catch(1),e.contactsMenuOpenState=!1;case 13:e.contactsMenuLoading=!1,e.isMenuLoaded=!0;case 15:case\"end\":return t.stop()}}),t,null,[[1,10]])})))()},loadAvatarUrl:function(){if(this.isAvatarLoaded=!1,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.isAvatarLoaded=!0,void(this.userDoesNotExist=!0);if(this.isUrlDefined)this.updateImageIfValid(this.url);else if(this.size<=64){var e=this.avatarUrlGenerator(this.user,64),t=[e+\" 1x\",this.avatarUrlGenerator(this.user,512)+\" 8x\"].join(\", \");this.updateImageIfValid(e,t)}else{var o=this.avatarUrlGenerator(this.user,512);this.updateImageIfValid(o)}},avatarUrlGenerator:function(e,t){var o,a=\"invert(100%)\"===window.getComputedStyle(document.body).getPropertyValue(\"--background-invert-if-dark\"),n=\"/avatar/{user}/{size}\"+(a?\"/dark\":\"\");this.isGuest&&(n=\"/avatar/guest/{user}/{size}\"+(a?\"/dark\":\"\"));var i=(0,f.generateUrl)(n,{user:e,size:t});return e===(null===(o=(0,h.getCurrentUser)())||void 0===o?void 0:o.uid)&&\"undefined\"!=typeof oc_userconfig&&(i+=\"?v=\"+oc_userconfig.avatar.version),i},updateImageIfValid:function(e){var t,o,a=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=(t=this.user,\"string\"==typeof(o=w.getItem(\"user-has-avatar.\"+t))?Boolean(o):null);if(this.isUserDefined&&\"boolean\"==typeof i)return this.isAvatarLoaded=!0,this.avatarUrlLoaded=e,n&&(this.avatarSrcSetLoaded=n),void(!1===i&&(this.userDoesNotExist=!0));var r=new Image;r.onload=function(){a.avatarUrlLoaded=e,n&&(a.avatarSrcSetLoaded=n),a.isAvatarLoaded=!0,S(a.user,!0)},r.onerror=function(){console.debug(\"Invalid avatar url\",e),a.avatarUrlLoaded=null,a.avatarSrcSetLoaded=null,a.userDoesNotExist=!0,a.isAvatarLoaded=!1,S(a.user,!1)},n&&(r.srcset=n),r.src=e}}};var N=o(3379),x=o.n(N),j=o(7795),O=o.n(j),E=o(569),B=o.n(E),z=o(3565),_=o.n(z),F=o(9216),M=o.n(F),L=o(4589),D=o.n(L),T=o(6222),G={};G.styleTagTransform=D(),G.setAttributes=_(),G.insert=B().bind(null,\"head\"),G.domAPI=O(),G.insertStyleElement=M();x()(T.Z,G);T.Z&&T.Z.locals&&T.Z.locals;var U=o(1900),R=o(3051),q=o.n(R),I=(0,U.Z)(P,(function(){var e=this,t=e._self._c;return t(\"div\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:e.closeMenu,expression:\"closeMenu\"}],ref:\"main\",staticClass:\"avatardiv popovermenu-wrapper\",class:{\"avatardiv--unknown\":e.userDoesNotExist,\"avatardiv--with-menu\":e.hasMenu,\"avatardiv--with-menu-loading\":e.contactsMenuLoading},style:e.avatarStyle,attrs:{title:e.tooltip,tabindex:e.hasMenu?\"0\":void 0,\"aria-label\":e.avatarAriaLabel,role:e.hasMenu?\"button\":void 0},on:{click:e.toggleMenu,keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.toggleMenu.apply(null,arguments)}}},[e._t(\"icon\",(function(){return[e.iconClass?t(\"div\",{staticClass:\"avatar-class-icon\",class:e.iconClass}):e.isAvatarLoaded&&!e.userDoesNotExist?t(\"img\",{attrs:{src:e.avatarUrlLoaded,srcset:e.avatarSrcSetLoaded,alt:\"\"}}):e._e()]})),e._v(\" \"),e.hasMenu&&!e.menu.length?t(\"NcButton\",{staticClass:\"action-item action-item__menutoggle\",attrs:{\"aria-label\":e.t(\"Open contact menu\"),type:\"tertiary-no-background\"},scopedSlots:e._u([{key:\"icon\",fn:function(){return[e.contactsMenuLoading?t(\"NcLoadingIcon\"):t(\"DotsHorizontal\",{attrs:{size:20}})]},proxy:!0}],null,!1,2617833509)}):e.hasMenu?t(\"NcActions\",{attrs:{\"force-menu\":\"\",\"manual-open\":\"\",type:\"tertiary-no-background\",container:e.menuContainer,open:e.contactsMenuOpenState},scopedSlots:e._u([e.contactsMenuLoading?{key:\"icon\",fn:function(){return[t(\"NcLoadingIcon\")]},proxy:!0}:null],null,!0)},e._l(e.menu,(function(o,a){return t(\"NcActionLink\",{key:a,attrs:{href:o.href,icon:o.icon}},[e._v(\"\\n\\t\\t\\t\"+e._s(o.text)+\"\\n\\t\\t\")])})),1):e._e(),e._v(\" \"),e.showUserStatusIconOnAvatar?t(\"div\",{staticClass:\"avatardiv__user-status avatardiv__user-status--icon\"},[e._v(\"\\n\\t\\t\"+e._s(e.userStatus.icon)+\"\\n\\t\")]):e.canDisplayUserStatus?t(\"div\",{staticClass:\"avatardiv__user-status\",class:\"avatardiv__user-status--\"+e.userStatus.status}):e._e(),e._v(\" \"),!e.userDoesNotExist||e.iconClass||e.$slots.icon?e._e():t(\"div\",{staticClass:\"avatardiv__initials-wrapper\",style:e.initialsWrapperStyle},[t(\"div\",{staticClass:\"unknown\",style:e.initialsStyle},[e._v(\"\\n\\t\\t\\t\"+e._s(e.initials)+\"\\n\\t\\t\")])])],2)}),[],!1,null,\"7de2f7ff\",null);\"function\"==typeof q()&&q()(I);const $=I.exports},3089:(e,t,o)=>{\"use strict\";function a(e){return a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},a(e)}function n(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function i(e){for(var t=1;tN});const s={name:\"NcButton\",props:{alignment:{type:String,default:\"center\",validator:function(e){return[\"start\",\"start-reverse\",\"center\",\"center-reverse\",\"end\",\"end-reverse\"].includes(e)}},disabled:{type:Boolean,default:!1},type:{type:String,validator:function(e){return-1!==[\"primary\",\"secondary\",\"tertiary\",\"tertiary-no-background\",\"tertiary-on-primary\",\"error\",\"warning\",\"success\"].indexOf(e)},default:\"secondary\"},nativeType:{type:String,validator:function(e){return-1!==[\"submit\",\"reset\",\"button\"].indexOf(e)},default:\"button\"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:[\"update:pressed\",\"click\"],computed:{realType:function(){return this.pressed?\"primary\":!1===this.pressed&&\"primary\"===this.type?\"secondary\":this.type},flexAlignment:function(){return this.alignment.split(\"-\")[0]},isReverseAligned:function(){return this.alignment.includes(\"-\")}},render:function(e){var t,o,a,n=this,s=null===(t=this.$slots.default)||void 0===t||null===(t=t[0])||void 0===t||null===(t=t.text)||void 0===t||null===(o=t.trim)||void 0===o?void 0:o.call(t),l=!!s,c=null===(a=this.$slots)||void 0===a?void 0:a.icon;s||this.ariaLabel||console.warn(\"You need to fill either the text or the ariaLabel props in the button component.\",{text:s,ariaLabel:this.ariaLabel},this);var u=function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=o.navigate,u=o.isActive,d=o.isExactActive;return e(n.to||!n.href?\"button\":\"a\",{class:[\"button-vue\",(t={\"button-vue--icon-only\":c&&!l,\"button-vue--text-only\":l&&!c,\"button-vue--icon-and-text\":c&&l},r(t,\"button-vue--vue-\".concat(n.realType),n.realType),r(t,\"button-vue--wide\",n.wide),r(t,\"button-vue--\".concat(n.flexAlignment),\"center\"!==n.flexAlignment),r(t,\"button-vue--reverse\",n.isReverseAligned),r(t,\"active\",u),r(t,\"router-link-exact-active\",d),t)],attrs:i({\"aria-label\":n.ariaLabel,\"aria-pressed\":n.pressed,disabled:n.disabled,type:n.href?null:n.nativeType,role:n.href?\"button\":null,href:!n.to&&n.href?n.href:null,target:!n.to&&n.href?\"_self\":null,rel:!n.to&&n.href?\"nofollow noreferrer noopener\":null,download:!n.to&&n.href&&n.download?n.download:null},n.$attrs),on:i(i({},n.$listeners),{},{click:function(e){\"boolean\"==typeof n.pressed&&n.$emit(\"update:pressed\",!n.pressed),n.$emit(\"click\",e),null==a||a(e)}})},[e(\"span\",{class:\"button-vue__wrapper\"},[c?e(\"span\",{class:\"button-vue__icon\",attrs:{\"aria-hidden\":n.ariaHidden}},[n.$slots.icon]):null,l?e(\"span\",{class:\"button-vue__text\"},[s]):null])])};return this.to?e(\"router-link\",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:u}}):u()}};var l=o(3379),c=o.n(l),u=o(7795),d=o.n(u),m=o(569),p=o.n(m),h=o(3565),g=o.n(h),v=o(9216),f=o.n(v),A=o(4589),y=o.n(A),k=o(7294),C={};C.styleTagTransform=y(),C.setAttributes=g(),C.insert=p().bind(null,\"head\"),C.domAPI=d(),C.insertStyleElement=f();c()(k.Z,C);k.Z&&k.Z.locals&&k.Z.locals;var b=o(1900),w=o(2102),S=o.n(w),P=(0,b.Z)(s,undefined,undefined,!1,null,\"7aad13a0\",null);\"function\"==typeof S()&&S()(P);const N=P.exports},4378:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>k});var a=o(281),n=o(1336);const i={name:\"NcEllipsisedOption\",components:{NcHighlight:a.default},props:{name:{type:String,default:\"\"},search:{type:String,default:\"\"}},computed:{needsTruncate:function(){return this.name&&this.name.length>=10},split:function(){return this.name.length-Math.min(Math.floor(this.name.length/2),10)},part1:function(){return this.needsTruncate?this.name.slice(0,this.split):this.name},part2:function(){return this.needsTruncate?this.name.slice(this.split):\"\"},highlight1:function(){return this.search?(0,n.Z)(this.name,this.search):[]},highlight2:function(){var e=this;return this.highlight1.map((function(t){return{start:t.start-e.split,end:t.end-e.split}}))}}};var r=o(3379),s=o.n(r),l=o(7795),c=o.n(l),u=o(569),d=o.n(u),m=o(3565),p=o.n(m),h=o(9216),g=o.n(h),v=o(4589),f=o.n(v),A=o(436),y={};y.styleTagTransform=f(),y.setAttributes=p(),y.insert=d().bind(null,\"head\"),y.domAPI=c(),y.insertStyleElement=g();s()(A.Z,y);A.Z&&A.Z.locals&&A.Z.locals;const k=(0,o(1900).Z)(i,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"name-parts\",attrs:{title:e.name}},[t(\"NcHighlight\",{staticClass:\"name-parts__first\",attrs:{text:e.part1,search:e.search,highlight:e.highlight1}}),e._v(\" \"),e.part2?t(\"NcHighlight\",{staticClass:\"name-parts__last\",attrs:{text:e.part2,search:e.search,highlight:e.highlight2}}):e._e()],1)}),[],!1,null,\"3daafbe0\",null).exports},281:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>p});var a=o(1336);function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function r(e){for(var t=1;t0?this.highlight:(0,a.Z)(this.text,this.search),t.forEach((function(e,o){e.end0&&t.push({start:o.start<0?0:o.start,end:o.end>e.text.length?e.text.length:o.end}),t}),[]),t.sort((function(e,t){return e.start-t.start})),t=t.reduce((function(e,t){if(e.length){var o=e.length-1;e[o].end>=t.start?e[o]={start:e[o].start,end:Math.max(e[o].end,t.end)}:e.push(t)}else e.push(t);return e}),[]),t):t},chunks:function(){if(0===this.ranges.length)return[{start:0,end:this.text.length,highlight:!1,text:this.text}];for(var e=[],t=0,o=0;t=this.ranges.length&&t{\"use strict\";o.d(t,{default:()=>x});const a=require(\"@skjnldsv/sanitize-svg\");function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}function i(){i=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},r=\"function\"==typeof Symbol?Symbol:{},s=r.iterator||\"@@iterator\",l=r.asyncIterator||\"@@asyncIterator\",c=r.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,s,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,s)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(a,r,s,l){var c=m(e[a],e,r);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==n(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){i(\"next\",e,s,l)}),(function(e){i(\"throw\",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return i(\"throw\",e,s,l)}))}l(c.arg)}var r;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){i(e,o,t,a)}))}return r=r?r.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[s];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function r(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function s(e){return function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function s(e){r(i,a,n,s,l,\"next\",e)}function l(e){r(i,a,n,s,l,\"throw\",e)}s(void 0)}))}}const l={name:\"NcIconSvgWrapper\",props:{svg:{type:String,default:\"\"},name:{type:String,default:\"\"}},data:function(){return{cleanSvg:\"\"}},beforeMount:function(){var e=this;return s(i().mark((function t(){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.sanitizeSVG();case 2:case\"end\":return t.stop()}}),t)})))()},methods:{sanitizeSVG:function(){var e=this;return s(i().mark((function t(){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.svg){t.next=2;break}return t.abrupt(\"return\");case 2:return t.next=4,(0,a.sanitizeSVG)(e.svg);case 4:e.cleanSvg=t.sent;case 5:case\"end\":return t.stop()}}),t)})))()}}};var c=o(3379),u=o.n(c),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),C=o(2105),b={};b.styleTagTransform=k(),b.setAttributes=v(),b.insert=h().bind(null,\"head\"),b.domAPI=m(),b.insertStyleElement=A();u()(C.Z,b);C.Z&&C.Z.locals&&C.Z.locals;var w=o(1900),S=o(1287),P=o.n(S),N=(0,w.Z)(l,(function(){var e=this;return(0,e._self._c)(\"span\",{staticClass:\"icon-vue\",attrs:{role:\"img\",\"aria-hidden\":!e.name,\"aria-label\":e.name},domProps:{innerHTML:e._s(e.cleanSvg)}})}),[],!1,null,\"5937dacc\",null);\"function\"==typeof P()&&P()(N);const x=N.exports},2321:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>x});var a=o(2158),n=o(281),i=o(9598),r=o(1137);const s={name:\"NcListItemIcon\",components:{NcAvatar:a.default,NcHighlight:n.default,NcIconSvgWrapper:i.default},mixins:[r.iQ],props:{name:{type:String,required:!0},subname:{type:String,default:\"\"},icon:{type:String,default:\"\"},iconSvg:{type:String,default:\"\"},iconName:{type:String,default:\"\"},search:{type:String,default:\"\"},avatarSize:{type:Number,default:32},noMargin:{type:Boolean,default:!1},displayName:{type:String,default:null},isNoUser:{type:Boolean,default:!1},id:{type:String,default:null}},data:function(){return{margin:8}},computed:{hasIcon:function(){return\"\"!==this.icon},hasIconSvg:function(){return\"\"!==this.iconSvg},isValidSubname:function(){var e,t;return\"\"!==(null===(e=this.subname)||void 0===e||null===(t=e.trim)||void 0===t?void 0:t.call(e))},isSizeBigEnough:function(){return this.avatarSize>=32},cssVars:function(){var e=this.noMargin?0:this.margin;return{\"--height\":this.avatarSize+2*e+\"px\",\"--margin\":this.margin+\"px\"}}},beforeMount:function(){this.isNoUser||this.subname||this.fetchUserStatus(this.user)}},l=s;var c=o(3379),u=o.n(c),d=o(7795),m=o.n(d),p=o(569),h=o.n(p),g=o(3565),v=o.n(g),f=o(9216),A=o.n(f),y=o(4589),k=o.n(y),C=o(4629),b={};b.styleTagTransform=k(),b.setAttributes=v(),b.insert=h().bind(null,\"head\"),b.domAPI=m(),b.insertStyleElement=A();u()(C.Z,b);C.Z&&C.Z.locals&&C.Z.locals;var w=o(1900),S=o(8488),P=o.n(S),N=(0,w.Z)(l,(function(){var e=this,t=e._self._c;return t(\"span\",e._g({staticClass:\"option\",style:e.cssVars,attrs:{id:e.id}},e.$listeners),[t(\"NcAvatar\",e._b({staticClass:\"option__avatar\",attrs:{\"disable-menu\":!0,\"disable-tooltip\":!0,\"display-name\":e.displayName||e.name,\"is-no-user\":e.isNoUser,size:e.avatarSize}},\"NcAvatar\",e.$attrs,!1)),e._v(\" \"),t(\"div\",{staticClass:\"option__details\"},[t(\"NcHighlight\",{staticClass:\"option__lineone\",attrs:{text:e.name,search:e.search}}),e._v(\" \"),e.isValidSubname&&e.isSizeBigEnough?t(\"NcHighlight\",{staticClass:\"option__linetwo\",attrs:{text:e.subname,search:e.search}}):e.hasStatus?t(\"span\",[t(\"span\",[e._v(e._s(e.userStatus.icon))]),e._v(\" \"),t(\"span\",[e._v(e._s(e.userStatus.message))])]):e._e()],1),e._v(\" \"),e._t(\"default\",(function(){return[e.hasIconSvg?t(\"NcIconSvgWrapper\",{staticClass:\"option__icon\",attrs:{svg:e.iconSvg,name:e.iconName}}):e.hasIcon?t(\"span\",{staticClass:\"icon option__icon\",class:e.icon,attrs:{\"aria-label\":e.iconName}}):e._e()]}))],2)}),[],!1,null,\"160648e6\",null);\"function\"==typeof P()&&P()(N);const x=N.exports},6492:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>b});const a={name:\"NcLoadingIcon\",props:{size:{type:Number,default:20},appearance:{type:String,validator:function(e){return[\"auto\",\"light\",\"dark\"].includes(e)},default:\"auto\"},name:{type:String,default:\"\"}},computed:{colors:function(){var e=[\"#777\",\"#CCC\"];return\"light\"===this.appearance?e:\"dark\"===this.appearance?e.reverse():[\"var(--color-loading-light)\",\"var(--color-loading-dark)\"]}}};var n=o(3379),i=o.n(n),r=o(7795),s=o.n(r),l=o(569),c=o.n(l),u=o(3565),d=o.n(u),m=o(9216),p=o.n(m),h=o(4589),g=o.n(h),v=o(8502),f={};f.styleTagTransform=g(),f.setAttributes=d(),f.insert=c().bind(null,\"head\"),f.domAPI=s(),f.insertStyleElement=p();i()(v.Z,f);v.Z&&v.Z.locals&&v.Z.locals;var A=o(1900),y=o(9280),k=o.n(y),C=(0,A.Z)(a,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"material-design-icon loading-icon\",attrs:{\"aria-label\":e.name,role:\"img\"}},[t(\"svg\",{attrs:{width:e.size,height:e.size,viewBox:\"0 0 24 24\"}},[t(\"path\",{attrs:{fill:e.colors[0],d:\"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z\"}}),e._v(\" \"),t(\"path\",{attrs:{fill:e.colors[1],d:\"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z\"}},[e.name?t(\"title\",[e._v(e._s(e.name))]):e._e()])])])}),[],!1,null,\"27fa1197\",null);\"function\"==typeof k()&&k()(C);const b=C.exports},2297:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>O});var a=o(9454),n=o(4505),i=o(1206);function r(e){return r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function s(){s=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",l=n.asyncIterator||\"@@asyncIterator\",c=n.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,s,l){var c=m(e[a],e,i);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==r(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,s,l)}),(function(e){n(\"throw\",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n(\"throw\",e,s,l)}))}l(c.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function l(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}const c={name:\"NcPopover\",components:{Dropdown:a.Dropdown},inheritAttrs:!1,props:{popoverBaseClass:{type:String,default:\"\"},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:[\"after-show\",\"after-hide\"],beforeDestroy:function(){this.clearFocusTrap()},methods:{useFocusTrap:function(){var e,t=this;return(e=s().mark((function e(){var o,a;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$nextTick();case 2:if(t.focusTrap){e.next=4;break}return e.abrupt(\"return\");case 4:if(a=null===(o=t.$refs.popover)||void 0===o||null===(o=o.$refs.popperContent)||void 0===o?void 0:o.$el){e.next=7;break}return e.abrupt(\"return\");case 7:t.$focusTrap=(0,n.createFocusTrap)(a,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:t.setReturnFocus,trapStack:(0,i.L)()}),t.$focusTrap.activate();case 9:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){l(i,a,n,r,s,\"next\",e)}function s(e){l(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()},clearFocusTrap:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{var t;null===(t=this.$focusTrap)||void 0===t||t.deactivate(e),this.$focusTrap=null}catch(e){console.warn(e)}},afterShow:function(){var e=this;this.$nextTick((function(){e.$emit(\"after-show\"),e.useFocusTrap()}))},afterHide:function(){this.$emit(\"after-hide\"),this.clearFocusTrap()}}},u=c;var d=o(3379),m=o.n(d),p=o(7795),h=o.n(p),g=o(569),v=o.n(g),f=o(3565),A=o.n(f),y=o(9216),k=o.n(y),C=o(4589),b=o.n(C),w=o(1625),S={};S.styleTagTransform=b(),S.setAttributes=A(),S.insert=v().bind(null,\"head\"),S.domAPI=h(),S.insertStyleElement=k();m()(w.Z,S);w.Z&&w.Z.locals&&w.Z.locals;var P=o(1900),N=o(2405),x=o.n(N),j=(0,P.Z)(u,(function(){var e=this;return(0,e._self._c)(\"Dropdown\",e._g(e._b({ref:\"popover\",attrs:{distance:10,\"arrow-padding\":10,\"no-auto-focus\":!0,\"popper-class\":e.popoverBaseClass},on:{\"apply-show\":e.afterShow,\"apply-hide\":e.afterHide},scopedSlots:e._u([{key:\"popper\",fn:function(){return[e._t(\"default\")]},proxy:!0}],null,!0)},\"Dropdown\",e.$attrs,!1),e.$listeners),[e._t(\"trigger\")],2)}),[],!1,null,null,null);\"function\"==typeof x()&&x()(j);const O=j.exports},7176:(e,t,o)=>{\"use strict\";o.d(t,{default:()=>G});const a=require(\"@nextcloud/vue-select\"),n=(require(\"@nextcloud/vue-select/dist/vue-select.css\"),require(\"@floating-ui/dom\")),i=require(\"vue-material-design-icons/ChevronDown.vue\");var r=o.n(i),s=o(8618),l=o.n(s),c=o(4378),u=o(2321),d=o(6492),m=o(3648),p=[\"inputClass\",\"noWrap\",\"placement\",\"userSelect\"];function h(e){return h=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},h(e)}function g(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function f(e){for(var t=1;t-1}:a.VueSelect.props.filterBy.default},localLabel:function(){return null!==this.label?this.label:this.userSelect?\"displayName\":a.VueSelect.props.label.default},propsToForward:function(){var e=this.$props,t=(e.inputClass,e.noWrap,e.placement,e.userSelect,f(f({},g(e,p)),{},{calculatePosition:this.localCalculatePosition,filterBy:this.localFilterBy,label:this.localLabel}));return t}}},k=y;var C=o(3379),b=o.n(C),w=o(7795),S=o.n(w),P=o(569),N=o.n(P),x=o(3565),j=o.n(x),O=o(9216),E=o.n(O),B=o(4589),z=o.n(B),_=o(7283),F={};F.styleTagTransform=z(),F.setAttributes=j(),F.insert=N().bind(null,\"head\"),F.domAPI=S(),F.insertStyleElement=E();b()(_.Z,F);_.Z&&_.Z.locals&&_.Z.locals;var M=o(1900),L=o(8220),D=o.n(L),T=(0,M.Z)(k,(function(){var e=this,t=e._self._c;return t(\"VueSelect\",e._g(e._b({staticClass:\"select\",class:{\"select--no-wrap\":e.noWrap},on:{search:function(t){return e.search=t}},scopedSlots:e._u([{key:\"search\",fn:function(o){var a=o.attributes,n=o.events;return[t(\"input\",e._g(e._b({class:[\"vs__search\",e.inputClass]},\"input\",a,!1),n))]}},{key:\"open-indicator\",fn:function(o){var a=o.attributes;return[t(\"ChevronDown\",e._b({attrs:{\"fill-color\":\"var(--vs-controls-color)\",size:26}},\"ChevronDown\",a,!1))]}},{key:\"option\",fn:function(o){return[e.userSelect?t(\"NcListItemIcon\",e._b({attrs:{name:o[e.localLabel],search:e.search}},\"NcListItemIcon\",o,!1)):t(\"NcEllipsisedOption\",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:\"selected-option\",fn:function(o){return[e.userSelect?t(\"NcListItemIcon\",e._b({attrs:{name:o[e.localLabel],search:e.search}},\"NcListItemIcon\",o,!1)):t(\"NcEllipsisedOption\",{attrs:{name:String(o[e.localLabel]),search:e.search}})]}},{key:\"spinner\",fn:function(o){return[o.loading?t(\"NcLoadingIcon\"):e._e()]}},{key:\"no-options\",fn:function(){return[e._v(\"\\n\\t\\t\"+e._s(e.t(\"No results\"))+\"\\n\\t\")]},proxy:!0},e._l(e.$scopedSlots,(function(t,o){return{key:o,fn:function(t){return[e._t(o,null,null,t)]}}}))],null,!0)},\"VueSelect\",e.propsToForward,!1),e.$listeners))}),[],!1,null,null,null);\"function\"==typeof D()&&D()(T);const G=T.exports},9319:(e,t,o)=>{\"use strict\";function a(e,t,o){this.r=e,this.g=t,this.b=o}function n(e,t,o){var n=[];n.push(t);for(var i=function(e,t){var o=new Array(3);return o[0]=(t[1].r-t[0].r)/e,o[1]=(t[1].g-t[0].g)/e,o[2]=(t[1].b-t[0].b)/e,o}(e,[t,o]),r=1;rl});const i=function(e){e||(e=6);var t=new a(182,70,157),o=new a(221,203,85),i=new a(0,130,201),r=n(e,t,o),s=n(e,o,i),l=n(e,i,t);return r.concat(s).concat(l)},r=require(\"md5\");var s=o.n(r);const l=function(e){var t=e.toLowerCase();null===t.match(/^([0-9a-f]{4}-?){8}$/)&&(t=s()(t)),t=t.replace(/[^0-9a-f]/g,\"\");return i(6)[function(e,t){for(var o=0,a=[],n=0;n{\"use strict\";o.d(t,{n:()=>r,t:()=>s});var a=o(7931),n=(0,a.getGettextBuilder)().detectLocale();[{locale:\"af\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ar\",translations:{\"{tag} (invisible)\":\"{tag} (غير مرئي)\",\"{tag} (restricted)\":\"{tag} (مقيد)\",\"a few seconds ago\":\"منذ عدة ثوانٍ مضت\",Actions:\"الإجراءات\",'Actions for item with name \"{name}\"':'إجراءات على العنصر المُسمَّى \"{name}\"',Activities:\"الحركات\",\"Animals & Nature\":\"الحيوانات والطبيعة\",\"Any link\":\"أيَّ رابطٍ\",\"Anything shared with the same group of people will show up here\":\"أي مادة تمت مشاركتها مع نفس المجموعة من الأشخاص سيتم عرضها هنا\",\"Avatar of {displayName}\":\"الرمز التجسيدي avatar ـ {displayName} \",\"Avatar of {displayName}, {status}\":\"الرمز التجسيدي لـ {displayName}، {status}\",Back:\"عودة\",\"Back to provider selection\":\"عودة إلى اختيار المُزوِّد\",\"Cancel changes\":\"إلغاء التغييرات\",\"Change name\":\"تغيير الاسم\",Choose:\"إختَر\",\"Clear search\":\"محو البحث\",\"Clear text\":\"محو النص\",Close:\"أغلِق\",\"Close modal\":\"أغلِق النافذة الصُّورِية\",\"Close navigation\":\"أغلِق المُتصفِّح\",\"Close sidebar\":\"قفل الشريط الجانبي\",\"Close Smart Picker\":\"أغلِق اللاقط الذكي Smart Picker\",\"Collapse menu\":\"طَيّ القائمة\",\"Confirm changes\":\"تأكيد التغييرات\",Custom:\"مُخصَّص\",\"Edit item\":\"تعديل عنصر\",\"Enter link\":\"أدخِل الرابط\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"خطأ في الحصول على الموارد ذات الصلة. يرجى الاتصال بمشرف النظام عندك إذا كان لديك أيّ أسئلة.\",\"External documentation for {name}\":\"التوثيق الخارجي لـ {name}\",Favorite:\"المُفضَّلة\",Flags:\"الأعلام\",\"Food & Drink\":\"الطعام والشراب\",\"Frequently used\":\"شائعة الاستعمال\",Global:\"شامل\",\"Go back to the list\":\"عودة إلى القائمة\",\"Hide password\":\"إخفاء كلمة المرور\",'Load more \"{options}\"\"':'حمّل \"{options}\"\" أكثر',\"Message limit of {count} characters reached\":\"تمّ الوصول إلى الحد الأقصى لعدد الأحرف في الرسالة: {count} حرف\",\"More items …\":\"عناصر أخرى ...\",\"More options\":\"خيارات أخرى ...\",Next:\"التالي\",\"No emoji found\":\"لم يتم العثور على أي إيموجي emoji\",\"No link provider found\":\"لا يوجد أيّ مزود روابط link provider\",\"No results\":\"ليس هناك أية نتيجة\",Objects:\"أشياء\",\"Open contact menu\":\"إفتَح قائمة جهات الاتصال\",'Open link to \"{resourceName}\"':'إفتَح الرابط إلى \"{resourceName}\"',\"Open menu\":\"إفتَح القائمة\",\"Open navigation\":\"إفتَح المتصفح\",\"Open settings menu\":\"إفتَح قائمة الإعدادات\",\"Password is secure\":\"كلمة المرور مُؤمّنة\",\"Pause slideshow\":\"تجميد عرض الشرائح\",\"People & Body\":\"ناس و أجسام\",\"Pick a date\":\"إختَر التاريخ\",\"Pick a date and a time\":\"إختَر التاريخ و الوقت\",\"Pick a month\":\"إختَر الشهر\",\"Pick a time\":\"إختَر الوقت\",\"Pick a week\":\"إختَر الأسبوع\",\"Pick a year\":\"إختَر السنة\",\"Pick an emoji\":\"إختَر رمز إيموجي emoji\",\"Please select a time zone:\":\"الرجاء تحديد المنطقة الزمنية:\",Previous:\"السابق\",\"Provider icon\":\"أيقونة المُزوِّد\",\"Raw link {options}\":\" الرابط الخام raw link ـ {options}\",\"Related resources\":\"مصادر ذات صلة\",Search:\"بحث\",\"Search emoji\":\"بحث عن إيموجي emoji\",\"Search results\":\"نتائج البحث\",\"sec. ago\":\"ثانية مضت\",\"seconds ago\":\"ثوان مضت\",\"Select a tag\":\"إختَر سِمَةً tag\",\"Select provider\":\"إختَر مٌزوِّداً\",Settings:\"الإعدادات\",\"Settings navigation\":\"إعدادات التّصفُّح\",\"Show password\":\"أظهِر كلمة المرور\",\"Smart Picker\":\"اللاقط الذكي smart picker\",\"Smileys & Emotion\":\"وجوهٌ ضاحكة و مشاعر\",\"Start slideshow\":\"إبدإ العرض\",\"Start typing to search\":\"إبدإ كتابة مفردات البحث\",Submit:\"إرسال\",Symbols:\"رموز\",\"Travel & Places\":\"سفر و أماكن\",\"Type to search time zone\":\"أكتُب للبحث عن منطقة زمنية\",\"Unable to search the group\":\"تعذّر البحث في المجموعة\",\"Undo changes\":\"تراجع عن التغييرات\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'أكتُب رسالةً؛ إستعمِل \"@\" للإشارة إلى شخص ما، و استخدم \":\" للإكمال التلقائي لرموز الإيموجي ...'}},{locale:\"ast\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"az\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"be\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bg\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bn_BD\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"br\",translations:{\"{tag} (invisible)\":\"{tag} (diwelus)\",\"{tag} (restricted)\":\"{tag} (bevennet)\",\"a few seconds ago\":\"\",Actions:\"Oberioù\",'Actions for item with name \"{name}\"':\"\",Activities:\"Oberiantizoù\",\"Animals & Nature\":\"Loened & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Dibab\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Serriñ\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Personelañ\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bannieloù\",\"Food & Drink\":\"Boued & Evajoù\",\"Frequently used\":\"Implijet alies\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Da heul\",\"No emoji found\":\"Emoji ebet kavet\",\"No link provider found\":\"\",\"No results\":\"Disoc'h ebet\",Objects:\"Traoù\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Arsav an diaporama\",\"People & Body\":\"Tud & Korf\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Choaz un emoji\",\"Please select a time zone:\":\"\",Previous:\"A-raok\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Klask\",\"Search emoji\":\"\",\"Search results\":\"Disoc'hoù an enklask\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Choaz ur c'hlav\",\"Select provider\":\"\",Settings:\"Arventennoù\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyioù & Fromoù\",\"Start slideshow\":\"Kregiñ an diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Arouezioù\",\"Travel & Places\":\"Beaj & Lec'hioù\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Dibosupl eo klask ar strollad\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"bs\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ca\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activitats\",\"Animals & Nature\":\"Animals i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualsevol cosa compartida amb el mateix grup de persones es mostrarà aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancel·la els canvis\",\"Change name\":\"\",Choose:\"Tria\",\"Clear search\":\"\",\"Clear text\":\"Netejar text\",Close:\"Tanca\",\"Close modal\":\"Tancar el mode\",\"Close navigation\":\"Tanca la navegació\",\"Close sidebar\":\"Tancar la barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmeu els canvis\",Custom:\"Personalitzat\",\"Edit item\":\"Edita l'element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferit\",Flags:\"Marques\",\"Food & Drink\":\"Menjar i begudes\",\"Frequently used\":\"Utilitzats recentment\",Global:\"Global\",\"Go back to the list\":\"Torna a la llista\",\"Hide password\":\"Amagar contrasenya\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"S'ha arribat al límit de {count} caràcters per missatge\",\"More items …\":\"Més artícles...\",\"More options\":\"\",Next:\"Següent\",\"No emoji found\":\"No s'ha trobat cap emoji\",\"No link provider found\":\"\",\"No results\":\"Sense resultats\",Objects:\"Objectes\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Obre la navegació\",\"Open settings menu\":\"\",\"Password is secure\":\"Contrasenya segura
\",\"Pause slideshow\":\"Atura la presentació\",\"People & Body\":\"Persones i cos\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Trieu un emoji\",\"Please select a time zone:\":\"Seleccioneu una zona horària:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionats\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Resultats de cerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccioneu una etiqueta\",\"Select provider\":\"\",Settings:\"Paràmetres\",\"Settings navigation\":\"Navegació d'opcions\",\"Show password\":\"Mostrar contrasenya\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Cares i emocions\",\"Start slideshow\":\"Inicia la presentació\",\"Start typing to search\":\"\",Submit:\"Envia\",Symbols:\"Símbols\",\"Travel & Places\":\"Viatges i llocs\",\"Type to search time zone\":\"Escriviu per cercar la zona horària\",\"Unable to search the group\":\"No es pot cercar el grup\",\"Undo changes\":\"Desfés els canvis\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escriu missatge, fes servir \"@\" per esmentar algú, fes servir \":\" per autocompletar emojis...'}},{locale:\"cs\",translations:{\"{tag} (invisible)\":\"{tag} (neviditelné)\",\"{tag} (restricted)\":\"{tag} (omezené)\",\"a few seconds ago\":\"před několika sekundami\",Actions:\"Akce\",'Actions for item with name \"{name}\"':\"Akce pro položku s názvem „{name}“\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvířata a příroda\",\"Any link\":\"Jakýkoli odkaz\",\"Anything shared with the same group of people will show up here\":\"Cokoli nasdíleného stejné skupině lidí se zobrazí zde\",\"Avatar of {displayName}\":\"Zástupný obrázek uživatele {displayName}\",\"Avatar of {displayName}, {status}\":\"Zástupný obrázek uživatele {displayName}, {status}\",Back:\"Zpět\",\"Back to provider selection\":\"Zpět na výběr poskytovatele\",\"Cancel changes\":\"Zrušit změny\",\"Change name\":\"Změnit název\",Choose:\"Zvolit\",\"Clear search\":\"Vyčistit vyhledávání\",\"Clear text\":\"Čitelný text\",Close:\"Zavřít\",\"Close modal\":\"Zavřít dialogové okno\",\"Close navigation\":\"Zavřít navigaci\",\"Close sidebar\":\"Zavřít postranní panel\",\"Close Smart Picker\":\"Zavřít inteligentní výběr\",\"Collapse menu\":\"Sbalit nabídku\",\"Confirm changes\":\"Potvrdit změny\",Custom:\"Uživatelsky určené\",\"Edit item\":\"Upravit položku\",\"Enter link\":\"Zadat odkaz\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Chyba při získávání souvisejících prostředků. Pokud máte jakékoli dotazy, obraťte se na správce vámi využívaného systému.\",\"External documentation for {name}\":\"Externí dokumentace pro {name}\",Favorite:\"Oblíbené\",Flags:\"Příznaky\",\"Food & Drink\":\"Jídlo a pití\",\"Frequently used\":\"Často používané\",Global:\"Globální\",\"Go back to the list\":\"Jít zpět na seznam\",\"Hide password\":\"Skrýt heslo\",'Load more \"{options}\"\"':\"Načíst více „{options}“\",\"Message limit of {count} characters reached\":\"Dosaženo limitu počtu ({count}) znaků zprávy\",\"More items …\":\"Další položky…\",\"More options\":\"Další volby\",Next:\"Následující\",\"No emoji found\":\"Nenalezeno žádné emoji\",\"No link provider found\":\"Nenalezen žádný poskytovatel odkazů\",\"No results\":\"Nic nenalezeno\",Objects:\"Objekty\",\"Open contact menu\":\"Otevřít nabídku kontaktů\",'Open link to \"{resourceName}\"':\"Otevřít odkaz na „{resourceName}“\",\"Open menu\":\"Otevřít nabídku\",\"Open navigation\":\"Otevřít navigaci\",\"Open settings menu\":\"Otevřít nabídku nastavení\",\"Password is secure\":\"Heslo je bezpečné\",\"Pause slideshow\":\"Pozastavit prezentaci\",\"People & Body\":\"Lidé a tělo\",\"Pick a date\":\"Vybrat datum\",\"Pick a date and a time\":\"Vybrat datum a čas\",\"Pick a month\":\"Vybrat měsíc\",\"Pick a time\":\"Vybrat čas\",\"Pick a week\":\"Vybrat týden\",\"Pick a year\":\"Vybrat rok\",\"Pick an emoji\":\"Vybrat emoji\",\"Please select a time zone:\":\"Vyberte časovou zónu:\",Previous:\"Předchozí\",\"Provider icon\":\"Ikona poskytovatele\",\"Raw link {options}\":\"Holý odkaz {options}\",\"Related resources\":\"Související prostředky\",Search:\"Hledat\",\"Search emoji\":\"Hledat emoji\",\"Search results\":\"Výsledky hledání\",\"sec. ago\":\"sek. před\",\"seconds ago\":\"sekund předtím\",\"Select a tag\":\"Vybrat štítek\",\"Select provider\":\"Vybrat poskytovatele\",Settings:\"Nastavení\",\"Settings navigation\":\"Pohyb po nastavení\",\"Show password\":\"Zobrazit heslo\",\"Smart Picker\":\"Inteligentní výběr\",\"Smileys & Emotion\":\"Úsměvy a emoce\",\"Start slideshow\":\"Spustit prezentaci\",\"Start typing to search\":\"Vyhledávejte psaním\",Submit:\"Odeslat\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestování a místa\",\"Type to search time zone\":\"Psaním vyhledejte časovou zónu\",\"Unable to search the group\":\"Nedaří se hledat skupinu\",\"Undo changes\":\"Vzít změny zpět\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Napište zprávu – pokud chcete někoho zmínit, napište před jeho uživatelským jménem „@“ (zavináč); automatické doplňování emotikonů zahájíte napsáním „:“ (dvojtečky)…\"}},{locale:\"cy_GB\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"da\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (begrænset)\",\"a few seconds ago\":\"et par sekunder siden\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':'Handlinger for element med navnet \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr & Natur\",\"Any link\":\"Ethvert link\",\"Anything shared with the same group of people will show up here\":\"Alt der deles med samme gruppe af personer vil vises her\",\"Avatar of {displayName}\":\"Avatar af {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar af {displayName}, {status}\",Back:\"Tilbage\",\"Back to provider selection\":\"Tilbage til udbydervalg\",\"Cancel changes\":\"Annuller ændringer\",\"Change name\":\"Ændre navn\",Choose:\"Vælg\",\"Clear search\":\"Ryd søgning\",\"Clear text\":\"Ryd tekst\",Close:\"Luk\",\"Close modal\":\"Luk vindue\",\"Close navigation\":\"Luk navigation\",\"Close sidebar\":\"Luk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekræft ændringer\",Custom:\"Brugerdefineret\",\"Edit item\":\"Rediger emne\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flag\",\"Food & Drink\":\"Mad & Drikke\",\"Frequently used\":\"Ofte brugt\",Global:\"Global\",\"Go back to the list\":\"Tilbage til listen\",\"Hide password\":\"Skjul kodeord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Begrænsning på {count} tegn er nået\",\"More items …\":\"Mere ...\",\"More options\":\"\",Next:\"Videre\",\"No emoji found\":\"Ingen emoji fundet\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åbn navigation\",\"Open settings menu\":\"\",\"Password is secure\":\"Kodeordet er sikkert\",\"Pause slideshow\":\"Suspender fremvisning\",\"People & Body\":\"Mennesker & Menneskekroppen\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vælg en emoji\",\"Please select a time zone:\":\"Vælg venligst en tidszone:\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterede emner\",Search:\"Søg\",\"Search emoji\":\"\",\"Search results\":\"Søgeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vælg et mærke\",\"Select provider\":\"\",Settings:\"Indstillinger\",\"Settings navigation\":\"Naviger i indstillinger\",\"Show password\":\"Vis kodeord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start fremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Rejser & Rejsemål\",\"Type to search time zone\":\"Indtast for at søge efter tidszone\",\"Unable to search the group\":\"Kan ikke søge på denne gruppe\",\"Undo changes\":\"Fortryd ændringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv besked, brug \"@\" for at nævne nogen, brug \":\" til emoji-autofuldførelse ...'}},{locale:\"de\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"\",Choose:\"Auswählen\",\"Clear search\":\"\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"\",\"No results\":\"Keine Ergebnisse\",Objects:\"Gegenstände\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte wählen Sie eine Zeitzone:\",Previous:\"Vorherige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe konnte nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"de_DE\",translations:{\"{tag} (invisible)\":\"{tag} (unsichtbar)\",\"{tag} (restricted)\":\"{tag} (eingeschränkt)\",\"a few seconds ago\":\"vor ein paar Sekunden\",Actions:\"Aktionen\",'Actions for item with name \"{name}\"':'Aktionen für Element mit dem Namen \"{name}“',Activities:\"Aktivitäten\",\"Animals & Nature\":\"Tiere & Natur\",\"Any link\":\"Irgendein Link\",\"Anything shared with the same group of people will show up here\":\"Alles, das mit derselben Gruppe von Personen geteilt wird, wird hier angezeigt\",\"Avatar of {displayName}\":\"Avatar von {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar von {displayName}, {status}\",Back:\"Zurück\",\"Back to provider selection\":\"Zurück zur Anbieterauswahl\",\"Cancel changes\":\"Änderungen verwerfen\",\"Change name\":\"Namen ändern\",Choose:\"Auswählen\",\"Clear search\":\"Suche leeren\",\"Clear text\":\"Klartext\",Close:\"Schließen\",\"Close modal\":\"Modal schließen\",\"Close navigation\":\"Navigation schließen\",\"Close sidebar\":\"Seitenleiste schließen\",\"Close Smart Picker\":\"Intelligente Auswahl schließen\",\"Collapse menu\":\"Menü einklappen\",\"Confirm changes\":\"Änderungen bestätigen\",Custom:\"Benutzerdefiniert\",\"Edit item\":\"Objekt bearbeiten\",\"Enter link\":\"Link eingeben\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Fehler beim Abrufen verwandter Ressourcen. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.\",\"External documentation for {name}\":\"Externe Dokumentation für {name}\",Favorite:\"Favorit\",Flags:\"Flaggen\",\"Food & Drink\":\"Essen & Trinken\",\"Frequently used\":\"Häufig verwendet\",Global:\"Global\",\"Go back to the list\":\"Zurück zur Liste\",\"Hide password\":\"Passwort verbergen\",'Load more \"{options}\"\"':'Weitere \"{options}“ laden',\"Message limit of {count} characters reached\":\"Nachrichtenlimit von {count} Zeichen erreicht\",\"More items …\":\"Weitere Elemente …\",\"More options\":\"Mehr Optionen\",Next:\"Weiter\",\"No emoji found\":\"Kein Emoji gefunden\",\"No link provider found\":\"Kein Linkanbieter gefunden\",\"No results\":\"Keine Ergebnisse\",Objects:\"Objekte\",\"Open contact menu\":\"Kontaktmenü öffnen\",'Open link to \"{resourceName}\"':'Link zu \"{resourceName}“ öffnen',\"Open menu\":\"Menü öffnen\",\"Open navigation\":\"Navigation öffnen\",\"Open settings menu\":\"Einstellungsmenü öffnen\",\"Password is secure\":\"Passwort ist sicher\",\"Pause slideshow\":\"Diashow pausieren\",\"People & Body\":\"Menschen & Körper\",\"Pick a date\":\"Ein Datum auswählen\",\"Pick a date and a time\":\"Datum und Uhrzeit auswählen\",\"Pick a month\":\"Einen Monat auswählen\",\"Pick a time\":\"Eine Uhrzeit auswählen\",\"Pick a week\":\"Eine Woche auswählen\",\"Pick a year\":\"Ein Jahr auswählen\",\"Pick an emoji\":\"Ein Emoji auswählen\",\"Please select a time zone:\":\"Bitte eine Zeitzone auswählen:\",Previous:\"Vorherige\",\"Provider icon\":\"Anbietersymbol\",\"Raw link {options}\":\"Unverarbeiteter Link {Optionen}\",\"Related resources\":\"Verwandte Ressourcen\",Search:\"Suche\",\"Search emoji\":\"Emoji suchen\",\"Search results\":\"Suchergebnisse\",\"sec. ago\":\"Sek. zuvor\",\"seconds ago\":\"Sekunden zuvor\",\"Select a tag\":\"Schlagwort auswählen\",\"Select provider\":\"Anbieter auswählen\",Settings:\"Einstellungen\",\"Settings navigation\":\"Einstellungen für die Navigation\",\"Show password\":\"Passwort anzeigen\",\"Smart Picker\":\"Intelligente Auswahl\",\"Smileys & Emotion\":\"Smileys & Emotionen\",\"Start slideshow\":\"Diashow starten\",\"Start typing to search\":\"Mit der Eingabe beginnen, um zu suchen\",Submit:\"Einreichen\",Symbols:\"Symbole\",\"Travel & Places\":\"Reisen & Orte\",\"Type to search time zone\":\"Tippen, um eine Zeitzone zu suchen\",\"Unable to search the group\":\"Die Gruppe kann nicht durchsucht werden\",\"Undo changes\":\"Änderungen rückgängig machen\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Nachricht schreiben, \"@\" um jemanden zu erwähnen, \":\" für die automatische Vervollständigung von Emojis …'}},{locale:\"el\",translations:{\"{tag} (invisible)\":\"{tag} (αόρατο)\",\"{tag} (restricted)\":\"{tag} (περιορισμένο)\",\"a few seconds ago\":\"\",Actions:\"Ενέργειες\",'Actions for item with name \"{name}\"':\"\",Activities:\"Δραστηριότητες\",\"Animals & Nature\":\"Ζώα & Φύση\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Οτιδήποτε μοιράζεται με την ίδια ομάδα ατόμων θα εμφανίζεται εδώ\",\"Avatar of {displayName}\":\"Άβαταρ του {displayName}\",\"Avatar of {displayName}, {status}\":\"Άβαταρ του {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ακύρωση αλλαγών\",\"Change name\":\"\",Choose:\"Επιλογή\",\"Clear search\":\"\",\"Clear text\":\"Εκκαθάριση κειμένου\",Close:\"Κλείσιμο\",\"Close modal\":\"Βοηθητικό κλείσιμο\",\"Close navigation\":\"Κλείσιμο πλοήγησης\",\"Close sidebar\":\"Κλείσιμο πλευρικής μπάρας\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Επιβεβαίωση αλλαγών\",Custom:\"Προσαρμογή\",\"Edit item\":\"Επεξεργασία\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Αγαπημένα\",Flags:\"Σημαίες\",\"Food & Drink\":\"Φαγητό & Ποτό\",\"Frequently used\":\"Συχνά χρησιμοποιούμενο\",Global:\"Καθολικό\",\"Go back to the list\":\"Επιστροφή στην αρχική λίστα \",\"Hide password\":\"Απόκρυψη κωδικού πρόσβασης\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Συμπληρώθηκε το όριο των {count} χαρακτήρων του μηνύματος\",\"More items …\":\"Περισσότερα στοιχεία …\",\"More options\":\"\",Next:\"Επόμενο\",\"No emoji found\":\"Δεν βρέθηκε emoji\",\"No link provider found\":\"\",\"No results\":\"Κανένα αποτέλεσμα\",Objects:\"Αντικείμενα\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Άνοιγμα πλοήγησης\",\"Open settings menu\":\"\",\"Password is secure\":\"Ο κωδικός πρόσβασης είναι ασφαλής\",\"Pause slideshow\":\"Παύση προβολής διαφανειών\",\"People & Body\":\"Άνθρωποι & Σώμα\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Επιλέξτε ένα emoji\",\"Please select a time zone:\":\"Παρακαλούμε επιλέξτε μια ζώνη ώρας:\",Previous:\"Προηγούμενο\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Σχετικοί πόροι\",Search:\"Αναζήτηση\",\"Search emoji\":\"\",\"Search results\":\"Αποτελέσματα αναζήτησης\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Επιλογή ετικέτας\",\"Select provider\":\"\",Settings:\"Ρυθμίσεις\",\"Settings navigation\":\"Πλοήγηση ρυθμίσεων\",\"Show password\":\"Εμφάνιση κωδικού πρόσβασης\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Φατσούλες & Συναίσθημα\",\"Start slideshow\":\"Έναρξη προβολής διαφανειών\",\"Start typing to search\":\"\",Submit:\"Υποβολή\",Symbols:\"Σύμβολα\",\"Travel & Places\":\"Ταξίδια & Τοποθεσίες\",\"Type to search time zone\":\"Πληκτρολογήστε για αναζήτηση ζώνης ώρας\",\"Unable to search the group\":\"Δεν είναι δυνατή η αναζήτηση της ομάδας\",\"Undo changes\":\"Αναίρεση Αλλαγών\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Γράψτε μήνυμα, χρησιμοποιείστε \"@\" για να αναφέρετε κάποιον, χρησιμοποιείστε \":\" για αυτόματη συμπλήρωση emoji …'}},{locale:\"en_GB\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"a few seconds ago\",Actions:\"Actions\",'Actions for item with name \"{name}\"':'Actions for item with name \"{name}\"',Activities:\"Activities\",\"Animals & Nature\":\"Animals & Nature\",\"Any link\":\"Any link\",\"Anything shared with the same group of people will show up here\":\"Anything shared with the same group of people will show up here\",\"Avatar of {displayName}\":\"Avatar of {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar of {displayName}, {status}\",Back:\"Back\",\"Back to provider selection\":\"Back to provider selection\",\"Cancel changes\":\"Cancel changes\",\"Change name\":\"Change name\",Choose:\"Choose\",\"Clear search\":\"Clear search\",\"Clear text\":\"Clear text\",Close:\"Close\",\"Close modal\":\"Close modal\",\"Close navigation\":\"Close navigation\",\"Close sidebar\":\"Close sidebar\",\"Close Smart Picker\":\"Close Smart Picker\",\"Collapse menu\":\"Collapse menu\",\"Confirm changes\":\"Confirm changes\",Custom:\"Custom\",\"Edit item\":\"Edit item\",\"Enter link\":\"Enter link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error getting related resources. Please contact your system administrator if you have any questions.\",\"External documentation for {name}\":\"External documentation for {name}\",Favorite:\"Favourite\",Flags:\"Flags\",\"Food & Drink\":\"Food & Drink\",\"Frequently used\":\"Frequently used\",Global:\"Global\",\"Go back to the list\":\"Go back to the list\",\"Hide password\":\"Hide password\",'Load more \"{options}\"\"':'Load more \"{options}\"\"',\"Message limit of {count} characters reached\":\"Message limit of {count} characters reached\",\"More items …\":\"More items …\",\"More options\":\"More options\",Next:\"Next\",\"No emoji found\":\"No emoji found\",\"No link provider found\":\"No link provider found\",\"No results\":\"No results\",Objects:\"Objects\",\"Open contact menu\":\"Open contact menu\",'Open link to \"{resourceName}\"':'Open link to \"{resourceName}\"',\"Open menu\":\"Open menu\",\"Open navigation\":\"Open navigation\",\"Open settings menu\":\"Open settings menu\",\"Password is secure\":\"Password is secure\",\"Pause slideshow\":\"Pause slideshow\",\"People & Body\":\"People & Body\",\"Pick a date\":\"Pick a date\",\"Pick a date and a time\":\"Pick a date and a time\",\"Pick a month\":\"Pick a month\",\"Pick a time\":\"Pick a time\",\"Pick a week\":\"Pick a week\",\"Pick a year\":\"Pick a year\",\"Pick an emoji\":\"Pick an emoji\",\"Please select a time zone:\":\"Please select a time zone:\",Previous:\"Previous\",\"Provider icon\":\"Provider icon\",\"Raw link {options}\":\"Raw link {options}\",\"Related resources\":\"Related resources\",Search:\"Search\",\"Search emoji\":\"Search emoji\",\"Search results\":\"Search results\",\"sec. ago\":\"sec. ago\",\"seconds ago\":\"seconds ago\",\"Select a tag\":\"Select a tag\",\"Select provider\":\"Select provider\",Settings:\"Settings\",\"Settings navigation\":\"Settings navigation\",\"Show password\":\"Show password\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Smileys & Emotion\",\"Start slideshow\":\"Start slideshow\",\"Start typing to search\":\"Start typing to search\",Submit:\"Submit\",Symbols:\"Symbols\",\"Travel & Places\":\"Travel & Places\",\"Type to search time zone\":\"Type to search time zone\",\"Unable to search the group\":\"Unable to search the group\",\"Undo changes\":\"Undo changes\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …'}},{locale:\"eo\",translations:{\"{tag} (invisible)\":\"{tag} (kaŝita)\",\"{tag} (restricted)\":\"{tag} (limigita)\",\"a few seconds ago\":\"\",Actions:\"Agoj\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiveco\",\"Animals & Nature\":\"Bestoj & Naturo\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Elektu\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Fermu\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Propra\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flagoj\",\"Food & Drink\":\"Manĝaĵo & Trinkaĵo\",\"Frequently used\":\"Ofte uzataj\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"La limo je {count} da literoj atingita\",\"More items …\":\"\",\"More options\":\"\",Next:\"Sekva\",\"No emoji found\":\"La emoĝio forestas\",\"No link provider found\":\"\",\"No results\":\"La rezulto forestas\",Objects:\"Objektoj\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Payzi bildprezenton\",\"People & Body\":\"Homoj & Korpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Elekti emoĝion \",\"Please select a time zone:\":\"\",Previous:\"Antaŭa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Serĉi\",\"Search emoji\":\"\",\"Search results\":\"Serĉrezultoj\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Elektu etikedon\",\"Select provider\":\"\",Settings:\"Agordo\",\"Settings navigation\":\"Agorda navigado\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Ridoj kaj Emocioj\",\"Start slideshow\":\"Komenci bildprezenton\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Signoj\",\"Travel & Places\":\"Vojaĵoj & Lokoj\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Ne eblas serĉi en la grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restringido)\",\"a few seconds ago\":\"hace unos pocos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa que sea compartida con el mismo grupo de personas se mostrará aquí\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingrese enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Banderas\",\"Food & Drink\":\"Comida y bebida\",\"Frequently used\":\"Usado con frecuenca\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"El mensaje ha alcanzado el límite de {count} caracteres\",\"More items …\":\"Más ítems...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No hay ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\" Ningún resultado\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de ajustes\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar la presentación \",\"People & Body\":\"Personas y cuerpos\",\"Pick a date\":\"Seleccione una fecha\",\"Pick a date and a time\":\"Seleccione una fecha y hora\",\"Pick a month\":\"Seleccione un mes\",\"Pick a time\":\"Seleccione una hora\",\"Pick a week\":\"Seleccione una semana\",\"Pick a year\":\"Seleccione un año\",\"Pick an emoji\":\"Elegir un emoji\",\"Please select a time zone:\":\"Por favor elige un huso de horario:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de la búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Seleccione una etiqueta\",\"Select provider\":\"Seleccione proveedor\",Settings:\"Ajustes\",\"Settings navigation\":\"Navegación por ajustes\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Smileys y emoticonos\",\"Start slideshow\":\"Iniciar la presentación\",\"Start typing to search\":\"Comience a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y lugares\",\"Type to search time zone\":\"Escribe para buscar un huso de horario\",\"Unable to search the group\":\"No es posible buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, utilice \"@\" para mencionar a alguien, utilice \":\" para autocompletado de emojis ...'}},{locale:\"es_419\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_AR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CL\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_CR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_DO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_EC\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restricted)\",\"a few seconds ago\":\"hace unos segundos\",Actions:\"Acciones\",'Actions for item with name \"{name}\"':'Acciones para el elemento con nombre \"{name}\"',Activities:\"Actividades\",\"Animals & Nature\":\"Animales y Naturaleza\",\"Any link\":\"Cualquier enlace\",\"Anything shared with the same group of people will show up here\":\"Cualquier cosa compartida con el mismo grupo de personas aparecerá aquí.\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Atrás\",\"Back to provider selection\":\"Volver a la selección de proveedor\",\"Cancel changes\":\"Cancelar cambios\",\"Change name\":\"Cambiar nombre\",Choose:\"Elegir\",\"Clear search\":\"Limpiar búsqueda\",\"Clear text\":\"Limpiar texto\",Close:\"Cerrar\",\"Close modal\":\"Cerrar modal\",\"Close navigation\":\"Cerrar navegación\",\"Close sidebar\":\"Cerrar barra lateral\",\"Close Smart Picker\":\"Cerrar selector inteligente\",\"Collapse menu\":\"Ocultar menú\",\"Confirm changes\":\"Confirmar cambios\",Custom:\"Personalizado\",\"Edit item\":\"Editar elemento\",\"Enter link\":\"Ingresar enlace\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Error al obtener recursos relacionados. Por favor, contacta a tu administrador del sistema si tienes alguna pregunta.\",\"External documentation for {name}\":\"Documentación externa para {name}\",Favorite:\"Favorito\",Flags:\"Marcas\",\"Food & Drink\":\"Comida y Bebida\",\"Frequently used\":\"Frecuentemente utilizado\",Global:\"Global\",\"Go back to the list\":\"Volver a la lista\",\"Hide password\":\"Ocultar contraseña\",'Load more \"{options}\"\"':'Cargar más \"{options}\"',\"Message limit of {count} characters reached\":\"Se ha alcanzado el límite de caracteres del mensaje {count}\",\"More items …\":\"Más elementos...\",\"More options\":\"Más opciones\",Next:\"Siguiente\",\"No emoji found\":\"No se encontró ningún emoji\",\"No link provider found\":\"No se encontró ningún proveedor de enlaces\",\"No results\":\"Sin resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir menú de contactos\",'Open link to \"{resourceName}\"':'Abrir enlace a \"{resourceName}\"',\"Open menu\":\"Abrir menú\",\"Open navigation\":\"Abrir navegación\",\"Open settings menu\":\"Abrir menú de configuración\",\"Password is secure\":\"La contraseña es segura\",\"Pause slideshow\":\"Pausar presentación de diapositivas\",\"People & Body\":\"Personas y Cuerpo\",\"Pick a date\":\"Seleccionar una fecha\",\"Pick a date and a time\":\"Seleccionar una fecha y una hora\",\"Pick a month\":\"Seleccionar un mes\",\"Pick a time\":\"Seleccionar una semana\",\"Pick a week\":\"Seleccionar una semana\",\"Pick a year\":\"Seleccionar un año\",\"Pick an emoji\":\"Seleccionar un emoji\",\"Please select a time zone:\":\"Por favor, selecciona una zona horaria:\",Previous:\"Anterior\",\"Provider icon\":\"Ícono del proveedor\",\"Raw link {options}\":\"Enlace directo {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Buscar\",\"Search emoji\":\"Buscar emoji\",\"Search results\":\"Resultados de búsqueda\",\"sec. ago\":\"hace segundos\",\"seconds ago\":\"Segundos atrás\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"Seleccionar proveedor\",Settings:\"Configuraciones\",\"Settings navigation\":\"Navegación de configuraciones\",\"Show password\":\"Mostrar contraseña\",\"Smart Picker\":\"Selector inteligente\",\"Smileys & Emotion\":\"Caritas y Emociones\",\"Start slideshow\":\"Iniciar presentación de diapositivas\",\"Start typing to search\":\"Comienza a escribir para buscar\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viajes y Lugares\",\"Type to search time zone\":\"Escribe para buscar la zona horaria\",\"Unable to search the group\":\"No se puede buscar en el grupo\",\"Undo changes\":\"Deshacer cambios\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escribir mensaje, usar \"@\" para mencionar a alguien, usar \":\" para autocompletar emojis...'}},{locale:\"es_GT\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_HN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_MX\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_NI\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PR\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_PY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_SV\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"es_UY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"et_EE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"eu\",translations:{\"{tag} (invisible)\":\"{tag} (ikusezina)\",\"{tag} (restricted)\":\"{tag} (mugatua)\",\"a few seconds ago\":\"\",Actions:\"Ekintzak\",'Actions for item with name \"{name}\"':\"\",Activities:\"Jarduerak\",\"Animals & Nature\":\"Animaliak eta Natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Pertsona-talde berarekin partekatutako edozer agertuko da hemen\",\"Avatar of {displayName}\":\"{displayName}-(e)n irudia\",\"Avatar of {displayName}, {status}\":\"{displayName} -(e)n irudia, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Ezeztatu aldaketak\",\"Change name\":\"\",Choose:\"Aukeratu\",\"Clear search\":\"\",\"Clear text\":\"Garbitu testua\",Close:\"Itxi\",\"Close modal\":\"Itxi modala\",\"Close navigation\":\"Itxi nabigazioa\",\"Close sidebar\":\"Itxi albo-barra\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Baieztatu aldaketak\",Custom:\"Pertsonalizatua\",\"Edit item\":\"Editatu elementua\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Gogokoa\",Flags:\"Banderak\",\"Food & Drink\":\"Janaria eta edariak\",\"Frequently used\":\"Askotan erabilia\",Global:\"Globala\",\"Go back to the list\":\"Bueltatu zerrendara\",\"Hide password\":\"Ezkutatu pasahitza\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Mezuaren {count} karaketere-limitera heldu zara\",\"More items …\":\"Elementu gehiago …\",\"More options\":\"\",Next:\"Hurrengoa\",\"No emoji found\":\"Ez da emojirik aurkitu\",\"No link provider found\":\"\",\"No results\":\"Emaitzarik ez\",Objects:\"Objektuak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Ireki nabigazioa\",\"Open settings menu\":\"\",\"Password is secure\":\"Pasahitza segurua da\",\"Pause slideshow\":\"Pausatu diaporama\",\"People & Body\":\"Jendea eta gorputza\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Hautatu emoji bat\",\"Please select a time zone:\":\"Mesedez hautatu ordu-zona bat:\",Previous:\"Aurrekoa\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Erlazionatutako baliabideak\",Search:\"Bilatu\",\"Search emoji\":\"\",\"Search results\":\"Bilaketa emaitzak\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Hautatu etiketa bat\",\"Select provider\":\"\",Settings:\"Ezarpenak\",\"Settings navigation\":\"Nabigazio ezarpenak\",\"Show password\":\"Erakutsi pasahitza\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileyak eta emozioa\",\"Start slideshow\":\"Hasi diaporama\",\"Start typing to search\":\"\",Submit:\"Bidali\",Symbols:\"Sinboloak\",\"Travel & Places\":\"Bidaiak eta lekuak\",\"Type to search time zone\":\"Idatzi ordu-zona bat bilatzeko\",\"Unable to search the group\":\"Ezin izan da taldea bilatu\",\"Undo changes\":\"Aldaketak desegin\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Idatzi mezua, erabili \"@\" norbait aipatzeko, erabili \":\" emojiak automatikoki osatzeko...'}},{locale:\"fa\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fi\",translations:{\"{tag} (invisible)\":\"{tag} (näkymätön)\",\"{tag} (restricted)\":\"{tag} (rajoitettu)\",\"a few seconds ago\":\"\",Actions:\"Toiminnot\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteetit\",\"Animals & Nature\":\"Eläimet & luonto\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Käyttäjän {displayName} avatar\",\"Avatar of {displayName}, {status}\":\"Käyttäjän {displayName} avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Peruuta muutokset\",\"Change name\":\"\",Choose:\"Valitse\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sulje\",\"Close modal\":\"\",\"Close navigation\":\"Sulje navigaatio\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Vahvista muutokset\",Custom:\"Mukautettu\",\"Edit item\":\"Muokkaa kohdetta\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Liput\",\"Food & Drink\":\"Ruoka & juoma\",\"Frequently used\":\"Usein käytetyt\",Global:\"Yleinen\",\"Go back to the list\":\"Siirry takaisin listaan\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Viestin merkken enimmäisimäärä {count} täynnä \",\"More items …\":\"\",\"More options\":\"\",Next:\"Seuraava\",\"No emoji found\":\"Emojia ei löytynyt\",\"No link provider found\":\"\",\"No results\":\"Ei tuloksia\",Objects:\"Esineet & asiat\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Avaa navigaatio\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Keskeytä diaesitys\",\"People & Body\":\"Ihmiset & keho\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Valitse emoji\",\"Please select a time zone:\":\"Valitse aikavyöhyke:\",Previous:\"Edellinen\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Etsi\",\"Search emoji\":\"\",\"Search results\":\"Hakutulokset\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Valitse tagi\",\"Select provider\":\"\",Settings:\"Asetukset\",\"Settings navigation\":\"Asetusnavigaatio\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Hymiöt & tunteet\",\"Start slideshow\":\"Aloita diaesitys\",\"Start typing to search\":\"\",Submit:\"Lähetä\",Symbols:\"Symbolit\",\"Travel & Places\":\"Matkustus & kohteet\",\"Type to search time zone\":\"Kirjoita etsiäksesi aikavyöhyke\",\"Unable to search the group\":\"Ryhmää ei voi hakea\",\"Undo changes\":\"Kumoa muutokset\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"fr\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (restreint)\",\"a few seconds ago\":\"il y a quelques instants\",Actions:\"Actions\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activités\",\"Animals & Nature\":\"Animaux & Nature\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tout ce qui est partagé avec le même groupe de personnes apparaîtra ici\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Retour\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annuler les modifications\",\"Change name\":\"Modifier le nom\",Choose:\"Choisir\",\"Clear search\":\"Effacer la recherche\",\"Clear text\":\"Effacer le texte\",Close:\"Fermer\",\"Close modal\":\"Fermer la fenêtre\",\"Close navigation\":\"Fermer la navigation\",\"Close sidebar\":\"Fermer la barre latérale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"Réduire le menu\",\"Confirm changes\":\"Confirmer les modifications\",Custom:\"Personnalisé\",\"Edit item\":\"Éditer l'élément\",\"Enter link\":\"Saisissez le lien\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"Documentation externe pour {name}\",Favorite:\"Favori\",Flags:\"Drapeaux\",\"Food & Drink\":\"Nourriture & Boissons\",\"Frequently used\":\"Utilisés fréquemment\",Global:\"Global\",\"Go back to the list\":\"Retourner à la liste\",\"Hide password\":\"Cacher le mot de passe\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de messages de {count} caractères atteinte\",\"More items …\":\"Plus d'éléments...\",\"More options\":\"Plus d'options\",Next:\"Suivant\",\"No emoji found\":\"Pas d’émoji trouvé\",\"No link provider found\":\"\",\"No results\":\"Aucun résultat\",Objects:\"Objets\",\"Open contact menu\":\"Ouvrir le menu Contact\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"Ouvrir le menu\",\"Open navigation\":\"Ouvrir la navigation\",\"Open settings menu\":\"Ouvrir le menu Paramètres\",\"Password is secure\":\"Le mot de passe est sécurisé\",\"Pause slideshow\":\"Mettre le diaporama en pause\",\"People & Body\":\"Personnes & Corps\",\"Pick a date\":\"Sélectionner une date\",\"Pick a date and a time\":\"Sélectionner une date et une heure\",\"Pick a month\":\"Sélectionner un mois\",\"Pick a time\":\"Sélectionner une heure\",\"Pick a week\":\"Sélectionner une semaine\",\"Pick a year\":\"Sélectionner une année\",\"Pick an emoji\":\"Choisissez un émoji\",\"Please select a time zone:\":\"Sélectionnez un fuseau horaire : \",Previous:\"Précédent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Ressources liées\",Search:\"Chercher\",\"Search emoji\":\"Rechercher un emoji\",\"Search results\":\"Résultats de recherche\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Sélectionnez une balise\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"Navigation dans les paramètres\",\"Show password\":\"Afficher le mot de passe\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Émotions\",\"Start slideshow\":\"Démarrer le diaporama\",\"Start typing to search\":\"\",Submit:\"Valider\",Symbols:\"Symboles\",\"Travel & Places\":\"Voyage & Lieux\",\"Type to search time zone\":\"Saisissez les premiers lettres pour rechercher un fuseau horaire\",\"Unable to search the group\":\"Impossible de chercher le groupe\",\"Undo changes\":\"Annuler les changements\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Écrire un message, utiliser \"@\" pour mentionner une personne, \":\" pour l\\'autocomplétion des émojis...'}},{locale:\"gd\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"gl\",translations:{\"{tag} (invisible)\":\"{tag} (invisíbel)\",\"{tag} (restricted)\":\"{tag} (restrinxido)\",\"a few seconds ago\":\"\",Actions:\"Accións\",'Actions for item with name \"{name}\"':\"\",Activities:\"Actividades\",\"Animals & Nature\":\"Animais e natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar os cambios\",\"Change name\":\"\",Choose:\"Escoller\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Pechar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirma os cambios\",Custom:\"Personalizado\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e bebida\",\"Frequently used\":\"Usado con frecuencia\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Acadouse o límite de {count} caracteres por mensaxe\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguinte\",\"No emoji found\":\"Non se atopou ningún «emoji»\",\"No link provider found\":\"\",\"No results\":\"Sen resultados\",Objects:\"Obxectos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pausar o diaporama\",\"People & Body\":\"Persoas e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolla un «emoji»\",\"Please select a time zone:\":\"\",Previous:\"Anterir\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Buscar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da busca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccione unha etiqueta\",\"Select provider\":\"\",Settings:\"Axustes\",\"Settings navigation\":\"Navegación polos axustes\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Sorrisos e emocións\",\"Start slideshow\":\"Iniciar o diaporama\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viaxes e lugares\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Non foi posíbel buscar o grupo\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"he\",translations:{\"{tag} (invisible)\":\"{tag} (נסתר)\",\"{tag} (restricted)\":\"{tag} (מוגבל)\",\"a few seconds ago\":\"לפני מספר שניות\",Actions:\"פעולות\",'Actions for item with name \"{name}\"':\"פעולות לפריט בשם „{name}”\",Activities:\"פעילויות\",\"Animals & Nature\":\"חיות וטבע\",\"Any link\":\"קישור כלשהו\",\"Anything shared with the same group of people will show up here\":\"כל מה שמשותף עם אותה קבוצת האנשים יופיע כאן\",\"Avatar of {displayName}\":\"תמונה ייצוגית של {displayName}\",\"Avatar of {displayName}, {status}\":\"תמונה ייצוגית של {displayName}, {status}\",Back:\"חזרה\",\"Back to provider selection\":\"חזרה לבחירת ספק\",\"Cancel changes\":\"ביטול שינויים\",\"Change name\":\"החלפת שם\",Choose:\"בחירה\",\"Clear search\":\"פינוי חיפוש\",\"Clear text\":\"פינוי טקסט\",Close:\"סגירה\",\"Close modal\":\"סגירת החלונית\",\"Close navigation\":\"סגירת הניווט\",\"Close sidebar\":\"סגירת סרגל הצד\",\"Close Smart Picker\":\"סגירת הבורר החכם\",\"Collapse menu\":\"צמצום התפריט\",\"Confirm changes\":\"אישור השינויים\",Custom:\"בהתאמה אישית\",\"Edit item\":\"עריכת פריט\",\"Enter link\":\"מילוי קישור\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"שגיאה בקבלת המשאבים הקשורים. נא ליצור קשר עם הנהלת המערכת אם יש לך שאלות.\",\"External documentation for {name}\":\"תיעוד חיצוני עבור {name}\",Favorite:\"למועדפים\",Flags:\"דגלים\",\"Food & Drink\":\"מזון ומשקאות\",\"Frequently used\":\"בשימוש תדיר\",Global:\"כללי\",\"Go back to the list\":\"חזרה לרשימה\",\"Hide password\":\"הסתרת סיסמה\",'Load more \"{options}\"\"':\"טעינת „{options}” נוספות\",\"Message limit of {count} characters reached\":\"הגעת למגבלה של {count} תווים\",\"More items …\":\"פריטים נוספים…\",\"More options\":\"אפשרויות נוספות\",Next:\"הבא\",\"No emoji found\":\"לא נמצא אמוג׳י\",\"No link provider found\":\"לא נמצא ספק קישורים\",\"No results\":\"אין תוצאות\",Objects:\"חפצים\",\"Open contact menu\":\"פתיחת תפריט קשר\",'Open link to \"{resourceName}\"':\"פתיחת קישור אל „{resourceName}”\",\"Open menu\":\"פתיחת תפריט\",\"Open navigation\":\"פתיחת ניווט\",\"Open settings menu\":\"פתיחת תפריט הגדרות\",\"Password is secure\":\"הסיסמה מאובטחת\",\"Pause slideshow\":\"השהיית מצגת\",\"People & Body\":\"אנשים וגוף\",\"Pick a date\":\"נא לבחור תאריך\",\"Pick a date and a time\":\"נא לבחור תאריך ושעה\",\"Pick a month\":\"נא לבחור חודש\",\"Pick a time\":\"נא לבחור שעה\",\"Pick a week\":\"נא לבחור שבוע\",\"Pick a year\":\"נא לבחור שנה\",\"Pick an emoji\":\"נא לבחור אמוג׳י\",\"Please select a time zone:\":\"נא לבחור אזור זמן:\",Previous:\"הקודם\",\"Provider icon\":\"סמל ספק\",\"Raw link {options}\":\"קישור גולמי {options}\",\"Related resources\":\"משאבים קשורים\",Search:\"חיפוש\",\"Search emoji\":\"חיפוש אמוג׳י\",\"Search results\":\"תוצאות חיפוש\",\"sec. ago\":\"לפני מספר שניות\",\"seconds ago\":\"לפני מס׳ שניות\",\"Select a tag\":\"בחירת תגית\",\"Select provider\":\"בחירת ספק\",Settings:\"הגדרות\",\"Settings navigation\":\"ניווט בהגדרות\",\"Show password\":\"הצגת סיסמה\",\"Smart Picker\":\"בורר חכם\",\"Smileys & Emotion\":\"חייכנים ורגשונים\",\"Start slideshow\":\"התחלת המצגת\",\"Start typing to search\":\"התחלת הקלדה מחפשת\",Submit:\"הגשה\",Symbols:\"סמלים\",\"Travel & Places\":\"טיולים ומקומות\",\"Type to search time zone\":\"יש להקליד כדי לחפש אזור זמן\",\"Unable to search the group\":\"לא ניתן לחפש בקבוצה\",\"Undo changes\":\"ביטול שינויים\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"כאן ניתן לכתוב הודעה, אפשר להשתמש ב־„@” כדי לאזכר מישהו, ב־„:” להשלמה אוטומטית של אמוג׳י…\"}},{locale:\"hi_IN\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hsb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"hu\",translations:{\"{tag} (invisible)\":\"{tag} (láthatatlan)\",\"{tag} (restricted)\":\"{tag} (korlátozott)\",\"a few seconds ago\":\"\",Actions:\"Műveletek\",'Actions for item with name \"{name}\"':\"\",Activities:\"Tevékenységek\",\"Animals & Nature\":\"Állatok és természet\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Minden, amit ugyanazzal a csoporttal oszt meg, itt fog megjelenni\",\"Avatar of {displayName}\":\"{displayName} profilképe\",\"Avatar of {displayName}, {status}\":\"{displayName} profilképe, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Változtatások elvetése\",\"Change name\":\"\",Choose:\"Válassszon\",\"Clear search\":\"\",\"Clear text\":\"Szöveg törlése\",Close:\"Bezárás\",\"Close modal\":\"Ablak bezárása\",\"Close navigation\":\"Navigáció bezárása\",\"Close sidebar\":\"Oldalsáv bezárása\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Változtatások megerősítése\",Custom:\"Egyéni\",\"Edit item\":\"Elem szerkesztése\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Kedvenc\",Flags:\"Zászlók\",\"Food & Drink\":\"Étel és ital\",\"Frequently used\":\"Gyakran használt\",Global:\"Globális\",\"Go back to the list\":\"Ugrás vissza a listához\",\"Hide password\":\"Jelszó elrejtése\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} karakteres üzenetkorlát elérve\",\"More items …\":\"További elemek...\",\"More options\":\"\",Next:\"Következő\",\"No emoji found\":\"Nem található emodzsi\",\"No link provider found\":\"\",\"No results\":\"Nincs találat\",Objects:\"Tárgyak\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigáció megnyitása\",\"Open settings menu\":\"\",\"Password is secure\":\"A jelszó biztonságos\",\"Pause slideshow\":\"Diavetítés szüneteltetése\",\"People & Body\":\"Emberek és test\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Válasszon egy emodzsit\",\"Please select a time zone:\":\"Válasszon időzónát:\",Previous:\"Előző\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Kapcsolódó erőforrások\",Search:\"Keresés\",\"Search emoji\":\"\",\"Search results\":\"Találatok\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Válasszon címkét\",\"Select provider\":\"\",Settings:\"Beállítások\",\"Settings navigation\":\"Navigáció a beállításokban\",\"Show password\":\"Jelszó megjelenítése\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Mosolyok és érzelmek\",\"Start slideshow\":\"Diavetítés indítása\",\"Start typing to search\":\"\",Submit:\"Beküldés\",Symbols:\"Szimbólumok\",\"Travel & Places\":\"Utazás és helyek\",\"Type to search time zone\":\"Gépeljen az időzóna kereséséhez\",\"Unable to search the group\":\"A csoport nem kereshető\",\"Undo changes\":\"Változtatások visszavonása\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"Írjon egy üzenetet, használja a „@”-ot valaki megemlítéséhet, illetve a „:”-ot az emodzsik automatikus kiegészítéséhez…\"}},{locale:\"hy\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ia\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"id\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ig\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"is\",translations:{\"{tag} (invisible)\":\"{tag} (ósýnilegt)\",\"{tag} (restricted)\":\"{tag} (takmarkað)\",\"a few seconds ago\":\"\",Actions:\"Aðgerðir\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aðgerðir\",\"Animals & Nature\":\"Dýr og náttúra\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Velja\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Loka\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Sérsniðið\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Flögg\",\"Food & Drink\":\"Matur og drykkur\",\"Frequently used\":\"Oftast notað\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Næsta\",\"No emoji found\":\"Ekkert tjáningartákn fannst\",\"No link provider found\":\"\",\"No results\":\"Engar niðurstöður\",Objects:\"Hlutir\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Gera hlé á skyggnusýningu\",\"People & Body\":\"Fólk og líkami\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Veldu tjáningartákn\",\"Please select a time zone:\":\"\",Previous:\"Fyrri\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Leita\",\"Search emoji\":\"\",\"Search results\":\"Leitarniðurstöður\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Veldu merki\",\"Select provider\":\"\",Settings:\"Stillingar\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Broskallar og tilfinningar\",\"Start slideshow\":\"Byrja skyggnusýningu\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"Tákn\",\"Travel & Places\":\"Staðir og ferðalög\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Get ekki leitað í hópnum\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"it\",translations:{\"{tag} (invisible)\":\"{tag} (invisibile)\",\"{tag} (restricted)\":\"{tag} (limitato)\",\"a few seconds ago\":\"\",Actions:\"Azioni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Attività\",\"Animals & Nature\":\"Animali e natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutto ciò che è stato condiviso con lo stesso gruppo di persone viene visualizzato qui\",\"Avatar of {displayName}\":\"Avatar di {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar di {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Annulla modifiche\",\"Change name\":\"\",Choose:\"Scegli\",\"Clear search\":\"\",\"Clear text\":\"Cancella il testo\",Close:\"Chiudi\",\"Close modal\":\"Chiudi il messaggio modale\",\"Close navigation\":\"Chiudi la navigazione\",\"Close sidebar\":\"Chiudi la barra laterale\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Conferma modifiche\",Custom:\"Personalizzato\",\"Edit item\":\"Modifica l'elemento\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Preferito\",Flags:\"Bandiere\",\"Food & Drink\":\"Cibo e bevande\",\"Frequently used\":\"Usati di frequente\",Global:\"Globale\",\"Go back to the list\":\"Torna all'elenco\",\"Hide password\":\"Nascondi la password\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite dei messaggi di {count} caratteri raggiunto\",\"More items …\":\"Più elementi ...\",\"More options\":\"\",Next:\"Successivo\",\"No emoji found\":\"Nessun emoji trovato\",\"No link provider found\":\"\",\"No results\":\"Nessun risultato\",Objects:\"Oggetti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Apri la navigazione\",\"Open settings menu\":\"\",\"Password is secure\":\"La password è sicura\",\"Pause slideshow\":\"Presentazione in pausa\",\"People & Body\":\"Persone e corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Scegli un emoji\",\"Please select a time zone:\":\"Si prega di selezionare un fuso orario:\",Previous:\"Precedente\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Risorse correlate\",Search:\"Cerca\",\"Search emoji\":\"\",\"Search results\":\"Risultati di ricerca\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleziona un'etichetta\",\"Select provider\":\"\",Settings:\"Impostazioni\",\"Settings navigation\":\"Navigazione delle impostazioni\",\"Show password\":\"Mostra la password\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Faccine ed emozioni\",\"Start slideshow\":\"Avvia presentazione\",\"Start typing to search\":\"\",Submit:\"Invia\",Symbols:\"Simboli\",\"Travel & Places\":\"Viaggi e luoghi\",\"Type to search time zone\":\"Digita per cercare un fuso orario\",\"Unable to search the group\":\"Impossibile cercare il gruppo\",\"Undo changes\":\"Cancella i cambiamenti\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrivi un messaggio, \"@\" per menzionare qualcuno, \":\" per il completamento automatico delle emoji ...'}},{locale:\"ja\",translations:{\"{tag} (invisible)\":\"{タグ} (不可視)\",\"{tag} (restricted)\":\"{タグ} (制限付)\",\"a few seconds ago\":\"\",Actions:\"操作\",'Actions for item with name \"{name}\"':\"\",Activities:\"アクティビティ\",\"Animals & Nature\":\"動物と自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"同じグループで共有しているものは、全てここに表示されます\",\"Avatar of {displayName}\":\"{displayName} のアバター\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} のアバター\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"変更をキャンセル\",\"Change name\":\"\",Choose:\"選択\",\"Clear search\":\"\",\"Clear text\":\"テキストをクリア\",Close:\"閉じる\",\"Close modal\":\"モーダルを閉じる\",\"Close navigation\":\"ナビゲーションを閉じる\",\"Close sidebar\":\"サイドバーを閉じる\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"変更を承認\",Custom:\"カスタム\",\"Edit item\":\"編集\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"お気に入り\",Flags:\"国旗\",\"Food & Drink\":\"食べ物と飲み物\",\"Frequently used\":\"よく使うもの\",Global:\"全体\",\"Go back to the list\":\"リストに戻る\",\"Hide password\":\"パスワードを非表示\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"{count} 文字のメッセージ上限に達しています\",\"More items …\":\"他のアイテム\",\"More options\":\"\",Next:\"次\",\"No emoji found\":\"絵文字が見つかりません\",\"No link provider found\":\"\",\"No results\":\"なし\",Objects:\"物\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"ナビゲーションを開く\",\"Open settings menu\":\"\",\"Password is secure\":\"パスワードは保護されています\",\"Pause slideshow\":\"スライドショーを一時停止\",\"People & Body\":\"様々な人と体の部位\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"絵文字を選択\",\"Please select a time zone:\":\"タイムゾーンを選んで下さい:\",Previous:\"前\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"関連リソース\",Search:\"検索\",\"Search emoji\":\"\",\"Search results\":\"検索結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"タグを選択\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"ナビゲーション設定\",\"Show password\":\"パスワードを表示\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"感情表現\",\"Start slideshow\":\"スライドショーを開始\",\"Start typing to search\":\"\",Submit:\"提出\",Symbols:\"記号\",\"Travel & Places\":\"旅行と場所\",\"Type to search time zone\":\"タイムゾーン検索のため入力してください\",\"Unable to search the group\":\"グループを検索できません\",\"Undo changes\":\"変更を取り消し\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'メッセージを記入、\"@\"でメンション、\":\"で絵文字の自動補完 ...'}},{locale:\"ka\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ka_GE\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kab\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"km\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"kn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ko\",translations:{\"{tag} (invisible)\":\"{tag}(숨김)\",\"{tag} (restricted)\":\"{tag}(제한)\",\"a few seconds ago\":\"방금 전\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"활동\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"la\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lb\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lo\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lt_LT\",translations:{\"{tag} (invisible)\":\"{tag} (nematoma)\",\"{tag} (restricted)\":\"{tag} (apribota)\",\"a few seconds ago\":\"\",Actions:\"Veiksmai\",'Actions for item with name \"{name}\"':\"\",Activities:\"Veiklos\",\"Animals & Nature\":\"Gyvūnai ir gamta\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Pasirinkti\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Užverti\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"Tinkinti\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vėliavos\",\"Food & Drink\":\"Maistas ir gėrimai\",\"Frequently used\":\"Dažniausiai naudoti\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Pasiekta {count} simbolių žinutės riba\",\"More items …\":\"\",\"More options\":\"\",Next:\"Kitas\",\"No emoji found\":\"Nerasta jaustukų\",\"No link provider found\":\"\",\"No results\":\"Nėra rezultatų\",Objects:\"Objektai\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pristabdyti skaidrių rodymą\",\"People & Body\":\"Žmonės ir kūnas\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Pasirinkti jaustuką\",\"Please select a time zone:\":\"\",Previous:\"Ankstesnis\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Ieškoti\",\"Search emoji\":\"\",\"Search results\":\"Paieškos rezultatai\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Pasirinkti žymę\",\"Select provider\":\"\",Settings:\"Nustatymai\",\"Settings navigation\":\"Naršymas nustatymuose\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Šypsenos ir emocijos\",\"Start slideshow\":\"Pradėti skaidrių rodymą\",\"Start typing to search\":\"\",Submit:\"Pateikti\",Symbols:\"Simboliai\",\"Travel & Places\":\"Kelionės ir vietos\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"Nepavyko atlikti paiešką grupėje\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"lv\",translations:{\"{tag} (invisible)\":\"{tag} (neredzams)\",\"{tag} (restricted)\":\"{tag} (ierobežots)\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Izvēlēties\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Aizvērt\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Nākamais\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Nav rezultātu\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzēt slaidrādi\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Iepriekšējais\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izvēlēties birku\",\"Select provider\":\"\",Settings:\"Iestatījumi\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Sākt slaidrādi\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mk\",translations:{\"{tag} (invisible)\":\"{tag} (невидливо)\",\"{tag} (restricted)\":\"{tag} (ограничено)\",\"a few seconds ago\":\"\",Actions:\"Акции\",'Actions for item with name \"{name}\"':\"\",Activities:\"Активности\",\"Animals & Nature\":\"Животни & Природа\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар на {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар на {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Откажи ги промените\",\"Change name\":\"\",Choose:\"Избери\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Затвори модал\",\"Close navigation\":\"Затвори навигација\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Потврди ги промените\",Custom:\"Прилагодени\",\"Edit item\":\"Уреди\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Фаворити\",Flags:\"Знамиња\",\"Food & Drink\":\"Храна & Пијалоци\",\"Frequently used\":\"Најчесто користени\",Global:\"Глобално\",\"Go back to the list\":\"Врати се на листата\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Ограничувањето на должината на пораката од {count} карактери е надминато\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следно\",\"No emoji found\":\"Не се пронајдени емотикони\",\"No link provider found\":\"\",\"No results\":\"Нема резултати\",Objects:\"Објекти\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Отвори навигација\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Пузирај слајдшоу\",\"People & Body\":\"Луѓе & Тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Избери емотикон\",\"Please select a time zone:\":\"Изберете временска зона:\",Previous:\"Предходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Барај\",\"Search emoji\":\"\",\"Search results\":\"Резултати од барувањето\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Избери ознака\",\"Select provider\":\"\",Settings:\"Параметри\",\"Settings navigation\":\"Параметри за навигација\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смешковци & Емотикони\",\"Start slideshow\":\"Стартувај слајдшоу\",\"Start typing to search\":\"\",Submit:\"Испрати\",Symbols:\"Симболи\",\"Travel & Places\":\"Патувања & Места\",\"Type to search time zone\":\"Напишете за да пребарате временска зона\",\"Unable to search the group\":\"Неможе да се принајде групата\",\"Undo changes\":\"Врати ги промените\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mn\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"mr\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ms_MY\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"my\",translations:{\"{tag} (invisible)\":\"{tag} (ကွယ်ဝှက်ထား)\",\"{tag} (restricted)\":\"{tag} (ကန့်သတ်)\",\"a few seconds ago\":\"\",Actions:\"လုပ်ဆောင်ချက်များ\",'Actions for item with name \"{name}\"':\"\",Activities:\"ပြုလုပ်ဆောင်တာများ\",\"Animals & Nature\":\"တိရစ္ဆာန်များနှင့် သဘာဝ\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"{displayName} ၏ ကိုယ်ပွား\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်\",\"Change name\":\"\",Choose:\"ရွေးချယ်ရန်\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"ပိတ်ရန်\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"ပြောင်းလဲမှုများ အတည်ပြုရန်\",Custom:\"အလိုကျချိန်ညှိမှု\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"အလံများ\",\"Food & Drink\":\"အစားအသောက်\",\"Frequently used\":\"မကြာခဏအသုံးပြုသော\",Global:\"ကမ္ဘာလုံးဆိုင်ရာ\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"ကန့်သတ် စာလုံးရေ {count} လုံး ပြည့်ပါပြီ\",\"More items …\":\"\",\"More options\":\"\",Next:\"နောက်သို့ဆက်ရန်\",\"No emoji found\":\"အီမိုဂျီ ရှာဖွေမတွေ့နိုင်ပါ\",\"No link provider found\":\"\",\"No results\":\"ရလဒ်မရှိပါ\",Objects:\"အရာဝတ္ထုများ\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"စလိုက်ရှိုး ခေတ္တရပ်ရန်\",\"People & Body\":\"လူပုဂ္ဂိုလ်များနှင့် ခန္ဓာကိုယ်\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"အီမိုဂျီရွေးရန်\",\"Please select a time zone:\":\"ဒေသစံတော်ချိန် ရွေးချယ်ပေးပါ\",Previous:\"ယခင်\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"ရှာဖွေရန်\",\"Search emoji\":\"\",\"Search results\":\"ရှာဖွေမှု ရလဒ်များ\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"tag ရွေးချယ်ရန်\",\"Select provider\":\"\",Settings:\"ချိန်ညှိချက်များ\",\"Settings navigation\":\"ချိန်ညှိချက်အညွှန်း\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"စမိုင်လီများနှင့် အီမိုရှင်း\",\"Start slideshow\":\"စလိုက်ရှိုးအား စတင်ရန်\",\"Start typing to search\":\"\",Submit:\"တင်သွင်းရန်\",Symbols:\"သင်္ကေတများ\",\"Travel & Places\":\"ခရီးသွားလာခြင်းနှင့် နေရာများ\",\"Type to search time zone\":\"ဒေသစံတော်ချိန်များ ရှာဖွေရန် စာရိုက်ပါ\",\"Unable to search the group\":\"အဖွဲ့အား ရှာဖွေ၍ မရနိုင်ပါ\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nb\",translations:{\"{tag} (invisible)\":\"{tag} (usynlig)\",\"{tag} (restricted)\":\"{tag} (beskyttet)\",\"a few seconds ago\":\"\",Actions:\"Handlinger\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktiviteter\",\"Animals & Nature\":\"Dyr og natur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Alt som er delt med den samme gruppen vil vises her\",\"Avatar of {displayName}\":\"Avataren til {displayName}\",\"Avatar of {displayName}, {status}\":\"{displayName}'s avatar, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Avbryt endringer\",\"Change name\":\"\",Choose:\"Velg\",\"Clear search\":\"\",\"Clear text\":\"Fjern tekst\",Close:\"Lukk\",\"Close modal\":\"Lukk modal\",\"Close navigation\":\"Lukk navigasjon\",\"Close sidebar\":\"Lukk sidepanel\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Bekreft endringer\",Custom:\"Tilpasset\",\"Edit item\":\"Rediger\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favoritt\",Flags:\"Flagg\",\"Food & Drink\":\"Mat og drikke\",\"Frequently used\":\"Ofte brukt\",Global:\"Global\",\"Go back to the list\":\"Gå tilbake til listen\",\"Hide password\":\"Skjul passord\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Karakter begrensing {count} nådd i melding\",\"More items …\":\"Flere gjenstander...\",\"More options\":\"\",Next:\"Neste\",\"No emoji found\":\"Fant ingen emoji\",\"No link provider found\":\"\",\"No results\":\"Ingen resultater\",Objects:\"Objekter\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Åpne navigasjon\",\"Open settings menu\":\"\",\"Password is secure\":\"Passordet er sikkert\",\"Pause slideshow\":\"Pause lysbildefremvisning\",\"People & Body\":\"Mennesker og kropp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Velg en emoji\",\"Please select a time zone:\":\"Vennligst velg tidssone\",Previous:\"Forrige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Relaterte ressurser\",Search:\"Søk\",\"Search emoji\":\"\",\"Search results\":\"Søkeresultater\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Velg en merkelapp\",\"Select provider\":\"\",Settings:\"Innstillinger\",\"Settings navigation\":\"Navigasjonsinstillinger\",\"Show password\":\"Vis passord\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smilefjes og følelser\",\"Start slideshow\":\"Start lysbildefremvisning\",\"Start typing to search\":\"\",Submit:\"Send\",Symbols:\"Symboler\",\"Travel & Places\":\"Reise og steder\",\"Type to search time zone\":\"Tast for å søke etter tidssone\",\"Unable to search the group\":\"Kunne ikke søke i gruppen\",\"Undo changes\":\"Tilbakestill endringer\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv melding, bruk \"@\" for å nevne noen, bruk \":\" for autofullføring av emoji...'}},{locale:\"ne\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nl\",translations:{\"{tag} (invisible)\":\"{tag} (onzichtbaar)\",\"{tag} (restricted)\":\"{tag} (beperkt)\",\"a few seconds ago\":\"\",Actions:\"Acties\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activiteiten\",\"Animals & Nature\":\"Dieren & Natuur\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar van {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar van {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Wijzigingen annuleren\",\"Change name\":\"\",Choose:\"Kies\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Sluiten\",\"Close modal\":\"\",\"Close navigation\":\"Navigatie sluiten\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Wijzigingen bevestigen\",Custom:\"Aangepast\",\"Edit item\":\"Item bewerken\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlaggen\",\"Food & Drink\":\"Eten & Drinken\",\"Frequently used\":\"Vaak gebruikt\",Global:\"Globaal\",\"Go back to the list\":\"Ga terug naar de lijst\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Berichtlimiet van {count} karakters bereikt\",\"More items …\":\"\",\"More options\":\"\",Next:\"Volgende\",\"No emoji found\":\"Geen emoji gevonden\",\"No link provider found\":\"\",\"No results\":\"Geen resultaten\",Objects:\"Objecten\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Navigatie openen\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pauzeer diavoorstelling\",\"People & Body\":\"Mensen & Lichaam\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Kies een emoji\",\"Please select a time zone:\":\"Selecteer een tijdzone:\",Previous:\"Vorige\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Zoeken\",\"Search emoji\":\"\",\"Search results\":\"Zoekresultaten\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecteer een label\",\"Select provider\":\"\",Settings:\"Instellingen\",\"Settings navigation\":\"Instellingen navigatie\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smileys & Emotie\",\"Start slideshow\":\"Start diavoorstelling\",\"Start typing to search\":\"\",Submit:\"Verwerken\",Symbols:\"Symbolen\",\"Travel & Places\":\"Reizen & Plaatsen\",\"Type to search time zone\":\"Type om de tijdzone te zoeken\",\"Unable to search the group\":\"Kan niet in de groep zoeken\",\"Undo changes\":\"Wijzigingen ongedaan maken\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"nn_NO\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"oc\",translations:{\"{tag} (invisible)\":\"{tag} (invisible)\",\"{tag} (restricted)\":\"{tag} (limit)\",\"a few seconds ago\":\"\",Actions:\"Accions\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"Causir\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Tampar\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"Seguent\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"Cap de resultat\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Metre en pausa lo diaporama\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"Precedent\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Seleccionar una etiqueta\",\"Select provider\":\"\",Settings:\"Paramètres\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"Lançar lo diaporama\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pl\",translations:{\"{tag} (invisible)\":\"{tag} (niewidoczna)\",\"{tag} (restricted)\":\"{tag} (ograniczona)\",\"a few seconds ago\":\"\",Actions:\"Działania\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktywność\",\"Animals & Nature\":\"Zwierzęta i natura\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tutaj pojawi się wszystko, co zostało udostępnione tej samej grupie osób\",\"Avatar of {displayName}\":\"Awatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Awatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anuluj zmiany\",\"Change name\":\"\",Choose:\"Wybierz\",\"Clear search\":\"\",\"Clear text\":\"Wyczyść tekst\",Close:\"Zamknij\",\"Close modal\":\"Zamknij modal\",\"Close navigation\":\"Zamknij nawigację\",\"Close sidebar\":\"Zamknij pasek boczny\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potwierdź zmiany\",Custom:\"Zwyczajne\",\"Edit item\":\"Edytuj element\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Ulubiony\",Flags:\"Flagi\",\"Food & Drink\":\"Jedzenie i picie\",\"Frequently used\":\"Często używane\",Global:\"Globalnie\",\"Go back to the list\":\"Powrót do listy\",\"Hide password\":\"Ukryj hasło\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Przekroczono limit wiadomości wynoszący {count} znaków\",\"More items …\":\"Więcej pozycji…\",\"More options\":\"\",Next:\"Następny\",\"No emoji found\":\"Nie znaleziono emoji\",\"No link provider found\":\"\",\"No results\":\"Brak wyników\",Objects:\"Obiekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otwórz nawigację\",\"Open settings menu\":\"\",\"Password is secure\":\"Hasło jest bezpieczne\",\"Pause slideshow\":\"Wstrzymaj pokaz slajdów\",\"People & Body\":\"Ludzie i ciało\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Wybierz emoji\",\"Please select a time zone:\":\"Wybierz strefę czasową:\",Previous:\"Poprzedni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Powiązane zasoby\",Search:\"Szukaj\",\"Search emoji\":\"\",\"Search results\":\"Wyniki wyszukiwania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Wybierz etykietę\",\"Select provider\":\"\",Settings:\"Ustawienia\",\"Settings navigation\":\"Ustawienia nawigacji\",\"Show password\":\"Pokaż hasło\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Buźki i emotikony\",\"Start slideshow\":\"Rozpocznij pokaz slajdów\",\"Start typing to search\":\"\",Submit:\"Wyślij\",Symbols:\"Symbole\",\"Travel & Places\":\"Podróże i miejsca\",\"Type to search time zone\":\"Wpisz, aby wyszukać strefę czasową\",\"Unable to search the group\":\"Nie można przeszukać grupy\",\"Undo changes\":\"Cofnij zmiany\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Napisz wiadomość, \"@\" aby o kimś wspomnieć, \":\" dla autouzupełniania emoji…'}},{locale:\"ps\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"pt_BR\",translations:{\"{tag} (invisible)\":\"{tag} (invisível)\",\"{tag} (restricted)\":\"{tag} (restrito) \",\"a few seconds ago\":\"\",Actions:\"Ações\",'Actions for item with name \"{name}\"':\"\",Activities:\"Atividades\",\"Animals & Nature\":\"Animais & Natureza\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"\",Choose:\"Escolher\",\"Clear search\":\"\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida & Bebida\",\"Frequently used\":\"Mais usados\",Global:\"Global\",\"Go back to the list\":\"Volte para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limite de mensagem de {count} caracteres atingido\",\"More items …\":\"Mais itens …\",\"More options\":\"\",Next:\"Próximo\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar apresentação de slides\",\"People & Body\":\"Pessoas & Corpo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selecionar uma tag\",\"Select provider\":\"\",Settings:\"Configurações\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smiles & Emoções\",\"Start slideshow\":\"Iniciar apresentação de slides\",\"Start typing to search\":\"\",Submit:\"Enviar\",Symbols:\"Símbolo\",\"Travel & Places\":\"Viagem & Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não foi possível pesquisar o grupo\",\"Undo changes\":\"Desfazer modificações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva mensagens, use \"@\" para mencionar algum, use \":\" for autocompletar emoji …'}},{locale:\"pt_PT\",translations:{\"{tag} (invisible)\":\"{tag} (invisivel)\",\"{tag} (restricted)\":\"{tag} (restrito)\",\"a few seconds ago\":\"alguns segundos atrás\",Actions:\"Ações\",'Actions for item with name \"{name}\"':'Ações para objeto com o nome \"[name]\"',Activities:\"Atividades\",\"Animals & Nature\":\"Animais e Natureza\",\"Any link\":\"Qualquer link\",\"Anything shared with the same group of people will show up here\":\"Qualquer coisa compartilhada com o mesmo grupo de pessoas aparecerá aqui\",\"Avatar of {displayName}\":\"Avatar de {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar de {displayName}, {status}\",Back:\"Voltar atrás\",\"Back to provider selection\":\"Voltar à seleção de fornecedor\",\"Cancel changes\":\"Cancelar alterações\",\"Change name\":\"Alterar nome\",Choose:\"Escolher\",\"Clear search\":\"Limpar a pesquisa\",\"Clear text\":\"Limpar texto\",Close:\"Fechar\",\"Close modal\":\"Fechar modal\",\"Close navigation\":\"Fechar navegação\",\"Close sidebar\":\"Fechar barra lateral\",\"Close Smart Picker\":'Fechar \"Smart Picker\"',\"Collapse menu\":\"Comprimir menu\",\"Confirm changes\":\"Confirmar alterações\",Custom:\"Personalizado\",\"Edit item\":\"Editar item\",\"Enter link\":\"Introduzir link\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Erro em obter info relacionadas. Por favor contacte o administrador do sistema para esclarecimentos adicionais.\",\"External documentation for {name}\":\"Documentação externa para {name}\",Favorite:\"Favorito\",Flags:\"Bandeiras\",\"Food & Drink\":\"Comida e Bebida\",\"Frequently used\":\"Mais utilizados\",Global:\"Global\",\"Go back to the list\":\"Voltar para a lista\",\"Hide password\":\"Ocultar a senha\",'Load more \"{options}\"\"':'Obter mais \"{options}\"\"',\"Message limit of {count} characters reached\":\"Atingido o limite de {count} carateres da mensagem.\",\"More items …\":\"Mais itens …\",\"More options\":\"Mais opções\",Next:\"Seguinte\",\"No emoji found\":\"Nenhum emoji encontrado\",\"No link provider found\":\"Nenhum fornecedor de link encontrado\",\"No results\":\"Sem resultados\",Objects:\"Objetos\",\"Open contact menu\":\"Abrir o menu de contato\",'Open link to \"{resourceName}\"':'Abrir link para \"{resourceName}\"',\"Open menu\":\"Abrir menu\",\"Open navigation\":\"Abrir navegação\",\"Open settings menu\":\"Abrir menu de configurações\",\"Password is secure\":\"A senha é segura\",\"Pause slideshow\":\"Pausar diaporama\",\"People & Body\":\"Pessoas e Corpo\",\"Pick a date\":\"Escolha uma data\",\"Pick a date and a time\":\"Escolha uma data e um horário\",\"Pick a month\":\"Escolha um mês\",\"Pick a time\":\"Escolha um horário\",\"Pick a week\":\"Escolha uma semana\",\"Pick a year\":\"Escolha um ano\",\"Pick an emoji\":\"Escolha um emoji\",\"Please select a time zone:\":\"Por favor, selecione um fuso horário: \",Previous:\"Anterior\",\"Provider icon\":\"Icon do fornecedor\",\"Raw link {options}\":\"Link inicial {options}\",\"Related resources\":\"Recursos relacionados\",Search:\"Pesquisar\",\"Search emoji\":\"Pesquisar emoji\",\"Search results\":\"Resultados da pesquisa\",\"sec. ago\":\"seg. atrás\",\"seconds ago\":\"segundos atrás\",\"Select a tag\":\"Selecionar uma etiqueta\",\"Select provider\":\"Escolha de fornecedor\",Settings:\"Definições\",\"Settings navigation\":\"Navegação de configurações\",\"Show password\":\"Mostrar senha\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Sorrisos e Emoções\",\"Start slideshow\":\"Iniciar diaporama\",\"Start typing to search\":\"Comece a digitar para pesquisar\",Submit:\"Submeter\",Symbols:\"Símbolos\",\"Travel & Places\":\"Viagem e Lugares\",\"Type to search time zone\":\"Digite para pesquisar o fuso horário \",\"Unable to search the group\":\"Não é possível pesquisar o grupo\",\"Undo changes\":\"Anular alterações\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Escreva a mensagem, use \"@\" para mencionar alguém, use \":\" para obter um emoji …'}},{locale:\"ro\",translations:{\"{tag} (invisible)\":\"{tag} (invizibil)\",\"{tag} (restricted)\":\"{tag} (restricționat)\",\"a few seconds ago\":\"\",Actions:\"Acțiuni\",'Actions for item with name \"{name}\"':\"\",Activities:\"Activități\",\"Animals & Nature\":\"Animale și natură\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"Tot ceea ce este partajat cu același grup de persoane va fi afișat aici\",\"Avatar of {displayName}\":\"Avatarul lui {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatarul lui {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Anulează modificările\",\"Change name\":\"\",Choose:\"Alegeți\",\"Clear search\":\"\",\"Clear text\":\"Șterge textul\",Close:\"Închideți\",\"Close modal\":\"Închideți modulul\",\"Close navigation\":\"Închideți navigarea\",\"Close sidebar\":\"Închide bara laterală\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Confirmați modificările\",Custom:\"Personalizat\",\"Edit item\":\"Editați elementul\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Favorit\",Flags:\"Marcaje\",\"Food & Drink\":\"Alimente și băuturi\",\"Frequently used\":\"Utilizate frecvent\",Global:\"Global\",\"Go back to the list\":\"Întoarceți-vă la listă\",\"Hide password\":\"Ascunde parola\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limita mesajului de {count} caractere a fost atinsă\",\"More items …\":\"Mai multe articole ...\",\"More options\":\"\",Next:\"Următorul\",\"No emoji found\":\"Nu s-a găsit niciun emoji\",\"No link provider found\":\"\",\"No results\":\"Nu există rezultate\",Objects:\"Obiecte\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Deschideți navigația\",\"Open settings menu\":\"\",\"Password is secure\":\"Parola este sigură\",\"Pause slideshow\":\"Pauză prezentare de diapozitive\",\"People & Body\":\"Oameni și corp\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Alege un emoji\",\"Please select a time zone:\":\"Vă rugăm să selectați un fus orar:\",Previous:\"Anterior\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Resurse legate\",Search:\"Căutare\",\"Search emoji\":\"\",\"Search results\":\"Rezultatele căutării\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Selectați o etichetă\",\"Select provider\":\"\",Settings:\"Setări\",\"Settings navigation\":\"Navigare setări\",\"Show password\":\"Arată parola\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Zâmbete și emoții\",\"Start slideshow\":\"Începeți prezentarea de diapozitive\",\"Start typing to search\":\"\",Submit:\"Trimiteți\",Symbols:\"Simboluri\",\"Travel & Places\":\"Călătorii și locuri\",\"Type to search time zone\":\"Tastați pentru a căuta fusul orar\",\"Unable to search the group\":\"Imposibilitatea de a căuta în grup\",\"Undo changes\":\"Anularea modificărilor\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Scrie un mesaj, folosește \"@\" pentru a menționa pe cineva, folosește \":\" pentru autocompletarea cu emoji ...'}},{locale:\"ru\",translations:{\"{tag} (invisible)\":\"{tag} (невидимое)\",\"{tag} (restricted)\":\"{tag} (ограниченное)\",\"a few seconds ago\":\"\",Actions:\"Действия \",'Actions for item with name \"{name}\"':\"\",Activities:\"События\",\"Animals & Nature\":\"Животные и природа \",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Фотография {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Отменить изменения\",\"Change name\":\"\",Choose:\"Выберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Закрыть\",\"Close modal\":\"Закрыть модальное окно\",\"Close navigation\":\"Закрыть навигацию\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Подтвердить изменения\",Custom:\"Пользовательское\",\"Edit item\":\"Изменить элемент\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Флаги\",\"Food & Drink\":\"Еда, напиток\",\"Frequently used\":\"Часто используемый\",Global:\"Глобальный\",\"Go back to the list\":\"Вернуться к списку\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Достигнуто ограничение на количество символов в {count}\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следующее\",\"No emoji found\":\"Эмодзи не найдено\",\"No link provider found\":\"\",\"No results\":\"Результаты отсуствуют\",Objects:\"Объекты\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Открыть навигацию\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Приостановить показ слйдов\",\"People & Body\":\"Люди и тело\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Выберите эмодзи\",\"Please select a time zone:\":\"Пожалуйста, выберите часовой пояс:\",Previous:\"Предыдущее\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Поиск\",\"Search emoji\":\"\",\"Search results\":\"Результаты поиска\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Выберите метку\",\"Select provider\":\"\",Settings:\"Параметры\",\"Settings navigation\":\"Навигация по настройкам\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Смайлики и эмоции\",\"Start slideshow\":\"Начать показ слайдов\",\"Start typing to search\":\"\",Submit:\"Утвердить\",Symbols:\"Символы\",\"Travel & Places\":\"Путешествия и места\",\"Type to search time zone\":\"Введите для поиска часового пояса\",\"Unable to search the group\":\"Невозможно найти группу\",\"Undo changes\":\"Отменить изменения\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sc\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"si\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sk\",translations:{\"{tag} (invisible)\":\"{tag} (neviditeľný)\",\"{tag} (restricted)\":\"{tag} (obmedzený)\",\"a few seconds ago\":\"\",Actions:\"Akcie\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivity\",\"Animals & Nature\":\"Zvieratá a príroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Zrušiť zmeny\",\"Change name\":\"\",Choose:\"Vybrať\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Zatvoriť\",\"Close modal\":\"\",\"Close navigation\":\"Zavrieť navigáciu\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdiť zmeny\",Custom:\"Zvyk\",\"Edit item\":\"Upraviť položku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"Vlajky\",\"Food & Drink\":\"Jedlo a nápoje\",\"Frequently used\":\"Často používané\",Global:\"Globálne\",\"Go back to the list\":\"Naspäť na zoznam\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Limit správy na {count} znakov dosiahnutý\",\"More items …\":\"\",\"More options\":\"\",Next:\"Ďalší\",\"No emoji found\":\"Nenašli sa žiadne emodži\",\"No link provider found\":\"\",\"No results\":\"Žiadne výsledky\",Objects:\"Objekty\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvoriť navigáciu\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Pozastaviť prezentáciu\",\"People & Body\":\"Ľudia a telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Vyberte si emodži\",\"Please select a time zone:\":\"Prosím vyberte časovú zónu:\",Previous:\"Predchádzajúci\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Hľadať\",\"Search emoji\":\"\",\"Search results\":\"Výsledky vyhľadávania\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Vybrať štítok\",\"Select provider\":\"\",Settings:\"Nastavenia\",\"Settings navigation\":\"Navigácia v nastaveniach\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajlíky a emócie\",\"Start slideshow\":\"Začať prezentáciu\",\"Start typing to search\":\"\",Submit:\"Odoslať\",Symbols:\"Symboly\",\"Travel & Places\":\"Cestovanie a miesta\",\"Type to search time zone\":\"Začníte písať pre vyhľadávanie časovej zóny\",\"Unable to search the group\":\"Skupinu sa nepodarilo nájsť\",\"Undo changes\":\"Vrátiť zmeny\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sl\",translations:{\"{tag} (invisible)\":\"{tag} (nevidno)\",\"{tag} (restricted)\":\"{tag} (omejeno)\",\"a few seconds ago\":\"\",Actions:\"Dejanja\",'Actions for item with name \"{name}\"':\"\",Activities:\"Dejavnosti\",\"Animals & Nature\":\"Živali in Narava\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Podoba {displayName}\",\"Avatar of {displayName}, {status}\":\"Prikazna slika {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Prekliči spremembe\",\"Change name\":\"\",Choose:\"Izbor\",\"Clear search\":\"\",\"Clear text\":\"Počisti besedilo\",Close:\"Zapri\",\"Close modal\":\"Zapri pojavno okno\",\"Close navigation\":\"Zapri krmarjenje\",\"Close sidebar\":\"Zapri stransko vrstico\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potrdi spremembe\",Custom:\"Po meri\",\"Edit item\":\"Uredi predmet\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Priljubljeno\",Flags:\"Zastavice\",\"Food & Drink\":\"Hrana in Pijača\",\"Frequently used\":\"Pogostost uporabe\",Global:\"Splošno\",\"Go back to the list\":\"Vrni se na seznam\",\"Hide password\":\"Skrij geslo\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dosežena omejitev {count} znakov na sporočilo.\",\"More items …\":\"Več predmetov ...\",\"More options\":\"\",Next:\"Naslednji\",\"No emoji found\":\"Ni najdenih izraznih ikon\",\"No link provider found\":\"\",\"No results\":\"Ni zadetkov\",Objects:\"Predmeti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Odpri krmarjenje\",\"Open settings menu\":\"\",\"Password is secure\":\"Geslo je varno\",\"Pause slideshow\":\"Ustavi predstavitev\",\"People & Body\":\"Ljudje in Telo\",\"Pick a date\":\"Izbor datuma\",\"Pick a date and a time\":\"Izbor datuma in časa\",\"Pick a month\":\"Izbor meseca\",\"Pick a time\":\"Izbor časa\",\"Pick a week\":\"Izbor tedna\",\"Pick a year\":\"Izbor leta\",\"Pick an emoji\":\"Izbor izrazne ikone\",\"Please select a time zone:\":\"Izbor časovnega pasu:\",Previous:\"Predhodni\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"Povezani viri\",Search:\"Iskanje\",\"Search emoji\":\"\",\"Search results\":\"Zadetki iskanja\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Izbor oznake\",\"Select provider\":\"\",Settings:\"Nastavitve\",\"Settings navigation\":\"Krmarjenje nastavitev\",\"Show password\":\"Pokaži geslo\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Izrazne ikone\",\"Start slideshow\":\"Začni predstavitev\",\"Start typing to search\":\"\",Submit:\"Pošlji\",Symbols:\"Simboli\",\"Travel & Places\":\"Potovanja in Kraji\",\"Type to search time zone\":\"Vpišite niz za iskanje časovnega pasu\",\"Unable to search the group\":\"Ni mogoče iskati po skupini\",\"Undo changes\":\"Razveljavi spremembe\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sq\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr\",translations:{\"{tag} (invisible)\":\"{tag} (nevidljivo)\",\"{tag} (restricted)\":\"{tag} (ograničeno)\",\"a few seconds ago\":\"\",Actions:\"Radnje\",'Actions for item with name \"{name}\"':\"\",Activities:\"Aktivnosti\",\"Animals & Nature\":\"Životinje i Priroda\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"Avatar za {displayName}\",\"Avatar of {displayName}, {status}\":\"Avatar za {displayName}, {status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"Otkaži izmene\",\"Change name\":\"\",Choose:\"Изаберите\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"Затвори\",\"Close modal\":\"Zatvori modal\",\"Close navigation\":\"Zatvori navigaciju\",\"Close sidebar\":\"Zatvori bočnu traku\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"Potvrdite promene\",Custom:\"Po meri\",\"Edit item\":\"Uredi stavku\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"Omiljeni\",Flags:\"Zastave\",\"Food & Drink\":\"Hrana i Piće\",\"Frequently used\":\"Često korišćeno\",Global:\"Globalno\",\"Go back to the list\":\"Natrag na listu\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"Dostignuto je ograničenje za poruke od {count} znakova\",\"More items …\":\"\",\"More options\":\"\",Next:\"Следеће\",\"No emoji found\":\"Nije pronađen nijedan emodži\",\"No link provider found\":\"\",\"No results\":\"Нема резултата\",Objects:\"Objekti\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"Otvori navigaciju\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"Паузирај слајд шоу\",\"People & Body\":\"Ljudi i Telo\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"Izaberi emodži\",\"Please select a time zone:\":\"Molimo izaberite vremensku zonu:\",Previous:\"Претходно\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"Pretraži\",\"Search emoji\":\"\",\"Search results\":\"Rezultati pretrage\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"Изаберите ознаку\",\"Select provider\":\"\",Settings:\"Поставке\",\"Settings navigation\":\"Navigacija u podešavanjima\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"Smajli i Emocije\",\"Start slideshow\":\"Покрени слајд шоу\",\"Start typing to search\":\"\",Submit:\"Prihvati\",Symbols:\"Simboli\",\"Travel & Places\":\"Putovanja i Mesta\",\"Type to search time zone\":\"Ukucaj da pretražiš vremenske zone\",\"Unable to search the group\":\"Nije moguće pretražiti grupu\",\"Undo changes\":\"Poništi promene\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sr@latin\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"sv\",translations:{\"{tag} (invisible)\":\"{tag} (osynlig)\",\"{tag} (restricted)\":\"{tag} (begränsad)\",\"a few seconds ago\":\"några sekunder sedan\",Actions:\"Åtgärder\",'Actions for item with name \"{name}\"':'Åtgärder för objekt med namn \"{name}\"',Activities:\"Aktiviteter\",\"Animals & Nature\":\"Djur & Natur\",\"Any link\":\"Vilken länk som helst\",\"Anything shared with the same group of people will show up here\":\"Något som delats med samma grupp av personer kommer att visas här\",\"Avatar of {displayName}\":\"{displayName}s avatar\",\"Avatar of {displayName}, {status}\":\"{displayName}s avatar, {status}\",Back:\"Tillbaka\",\"Back to provider selection\":\"Tillbaka till leverantörsval\",\"Cancel changes\":\"Avbryt ändringar\",\"Change name\":\"Ändra namn\",Choose:\"Välj\",\"Clear search\":\"Rensa sökning\",\"Clear text\":\"Ta bort text\",Close:\"Stäng\",\"Close modal\":\"Stäng modal\",\"Close navigation\":\"Stäng navigering\",\"Close sidebar\":\"Stäng sidopanel\",\"Close Smart Picker\":\"Stäng Smart Picker\",\"Collapse menu\":\"Komprimera menyn\",\"Confirm changes\":\"Bekräfta ändringar\",Custom:\"Anpassad\",\"Edit item\":\"Ändra\",\"Enter link\":\"Ange länk\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Det gick inte att hämta relaterade resurser. Kontakta din systemadministratör om du har några frågor.\",\"External documentation for {name}\":\"Extern dokumentation för {name}\",Favorite:\"Favorit\",Flags:\"Flaggor\",\"Food & Drink\":\"Mat & Dryck\",\"Frequently used\":\"Används ofta\",Global:\"Global\",\"Go back to the list\":\"Gå tillbaka till listan\",\"Hide password\":\"Göm lössenordet\",'Load more \"{options}\"\"':'Ladda fler \"{options}\"\"',\"Message limit of {count} characters reached\":\"Meddelandegräns {count} tecken används\",\"More items …\":\"Fler objekt\",\"More options\":\"Fler alternativ\",Next:\"Nästa\",\"No emoji found\":\"Hittade inga emojis\",\"No link provider found\":\"Ingen länkleverantör hittades\",\"No results\":\"Inga resultat\",Objects:\"Objekt\",\"Open contact menu\":\"Öppna kontaktmenyn\",'Open link to \"{resourceName}\"':'Öppna länken till \"{resourceName}\"',\"Open menu\":\"Öppna menyn\",\"Open navigation\":\"Öppna navigering\",\"Open settings menu\":\"Öppna inställningsmenyn\",\"Password is secure\":\"Lössenordet är säkert\",\"Pause slideshow\":\"Pausa bildspelet\",\"People & Body\":\"Kropp & Själ\",\"Pick a date\":\"Välj datum\",\"Pick a date and a time\":\"Välj datum och tid\",\"Pick a month\":\"Välj månad\",\"Pick a time\":\"Välj tid\",\"Pick a week\":\"Välj vecka\",\"Pick a year\":\"Välj år\",\"Pick an emoji\":\"Välj en emoji\",\"Please select a time zone:\":\"Välj tidszon:\",Previous:\"Föregående\",\"Provider icon\":\"Leverantörsikon\",\"Raw link {options}\":\"Oformaterad länk {options}\",\"Related resources\":\"Relaterade resurser\",Search:\"Sök\",\"Search emoji\":\"Sök emoji\",\"Search results\":\"Sökresultat\",\"sec. ago\":\"sek. sedan\",\"seconds ago\":\"sekunder sedan\",\"Select a tag\":\"Välj en tag\",\"Select provider\":\"Välj leverantör\",Settings:\"Inställningar\",\"Settings navigation\":\"Inställningsmeny\",\"Show password\":\"Visa lössenordet\",\"Smart Picker\":\"Smart Picker\",\"Smileys & Emotion\":\"Selfies & Känslor\",\"Start slideshow\":\"Starta bildspelet\",\"Start typing to search\":\"Börja skriva för att söka\",Submit:\"Skicka\",Symbols:\"Symboler\",\"Travel & Places\":\"Resor & Sevärdigheter\",\"Type to search time zone\":\"Skriv för att välja tidszon\",\"Unable to search the group\":\"Kunde inte söka i gruppen\",\"Undo changes\":\"Ångra ändringar\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Skriv meddelande, använd \"@\" för att nämna någon, använd \":\" för automatiska emojiförslag ...'}},{locale:\"sw\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"ta\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"th\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tk\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"tr\",translations:{\"{tag} (invisible)\":\"{tag} (görünmez)\",\"{tag} (restricted)\":\"{tag} (kısıtlı)\",\"a few seconds ago\":\"birkaç saniye önce\",Actions:\"İşlemler\",'Actions for item with name \"{name}\"':\"{name} adındaki öge için işlemler\",Activities:\"Etkinlikler\",\"Animals & Nature\":\"Hayvanlar ve Doğa\",\"Any link\":\"Herhangi bir bağlantı\",\"Anything shared with the same group of people will show up here\":\"Aynı kişi grubu ile paylaşılan herşey burada görüntülenir\",\"Avatar of {displayName}\":\"{displayName} avatarı\",\"Avatar of {displayName}, {status}\":\"{displayName}, {status} avatarı\",Back:\"Geri\",\"Back to provider selection\":\"Sağlayıcı seçimine dön\",\"Cancel changes\":\"Değişiklikleri iptal et\",\"Change name\":\"Adı değiştir\",Choose:\"Seçin\",\"Clear search\":\"Aramayı temizle\",\"Clear text\":\"Metni temizle\",Close:\"Kapat\",\"Close modal\":\"Üste açılan pencereyi kapat\",\"Close navigation\":\"Gezinmeyi kapat\",\"Close sidebar\":\"Yan çubuğu kapat\",\"Close Smart Picker\":\"Akıllı seçimi kapat\",\"Collapse menu\":\"Menüyü daralt\",\"Confirm changes\":\"Değişiklikleri onayla\",Custom:\"Özel\",\"Edit item\":\"Ögeyi düzenle\",\"Enter link\":\"Bağlantıyı yazın\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"İlgili kaynaklara ulaşılırken sorun çıktı. Herhangi bir sorunuz varsa lütfen sistem yöneticiniz ile görüşün \",\"External documentation for {name}\":\"{name} için dış belgeler\",Favorite:\"Sık kullanılanlara ekle\",Flags:\"Bayraklar\",\"Food & Drink\":\"Yeme ve içme\",\"Frequently used\":\"Sık kullanılanlar\",Global:\"Evrensel\",\"Go back to the list\":\"Listeye dön\",\"Hide password\":\"Parolayı gizle\",'Load more \"{options}\"\"':'Diğer \"{options}\"',\"Message limit of {count} characters reached\":\"{count} karakter ileti sınırına ulaşıldı\",\"More items …\":\"Diğer ögeler…\",\"More options\":\"Diğer seçenekler\",Next:\"Sonraki\",\"No emoji found\":\"Herhangi bir emoji bulunamadı\",\"No link provider found\":\"Bağlantı sağlayıcısı bulunamadı\",\"No results\":\"Herhangi bir sonuç bulunamadı\",Objects:\"Nesneler\",\"Open contact menu\":\"İletişim menüsünü aç\",'Open link to \"{resourceName}\"':\"{resourceName} bağlantısını aç\",\"Open menu\":\"Menüyü aç\",\"Open navigation\":\"Gezinmeyi aç\",\"Open settings menu\":\"Ayarlar menüsünü aç\",\"Password is secure\":\"Parola güvenli\",\"Pause slideshow\":\"Slayt sunumunu duraklat\",\"People & Body\":\"İnsanlar ve beden\",\"Pick a date\":\"Bir tarih seçin\",\"Pick a date and a time\":\"Bir tarih ve saat seçin\",\"Pick a month\":\"Bir ay seçin\",\"Pick a time\":\"Bir saat seçin\",\"Pick a week\":\"Bir hafta seçin\",\"Pick a year\":\"Bir yıl seçin\",\"Pick an emoji\":\"Bir emoji seçin\",\"Please select a time zone:\":\"Lütfen bir saat dilimi seçin:\",Previous:\"Önceki\",\"Provider icon\":\"Sağlayıcı simgesi\",\"Raw link {options}\":\"Ham bağlantı {options}\",\"Related resources\":\"İlgili kaynaklar\",Search:\"Arama\",\"Search emoji\":\"Emoji ara\",\"Search results\":\"Arama sonuçları\",\"sec. ago\":\"sn. önce\",\"seconds ago\":\"saniye önce\",\"Select a tag\":\"Bir etiket seçin\",\"Select provider\":\"Sağlayıcı seçin\",Settings:\"Ayarlar\",\"Settings navigation\":\"Gezinme ayarları\",\"Show password\":\"Parolayı görüntüle\",\"Smart Picker\":\"Akıllı seçim\",\"Smileys & Emotion\":\"İfadeler ve duygular\",\"Start slideshow\":\"Slayt sunumunu başlat\",\"Start typing to search\":\"Aramak için yazmaya başlayın\",Submit:\"Gönder\",Symbols:\"Simgeler\",\"Travel & Places\":\"Gezi ve yerler\",\"Type to search time zone\":\"Saat dilimi aramak için yazmaya başlayın\",\"Unable to search the group\":\"Grupta arama yapılamadı\",\"Undo changes\":\"Değişiklikleri geri al\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'İleti yazın, birini anmak için @, otomatik emoji tamamlamak için \":\" kullanın…'}},{locale:\"ug\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uk\",translations:{\"{tag} (invisible)\":\"{tag} (невидимий)\",\"{tag} (restricted)\":\"{tag} (обмежений)\",\"a few seconds ago\":\"декілька секунд тому\",Actions:\"Дії\",'Actions for item with name \"{name}\"':'Дії для об\\'єкту \"{name}\"',Activities:\"Діяльність\",\"Animals & Nature\":\"Тварини та природа\",\"Any link\":\"Будь-яке посилання\",\"Anything shared with the same group of people will show up here\":\"Будь-що доступне для цієї же групи людей буде показано тут\",\"Avatar of {displayName}\":\"Аватар {displayName}\",\"Avatar of {displayName}, {status}\":\"Аватар {displayName}, {status}\",Back:\"Назад\",\"Back to provider selection\":\"Назад до вибору постачальника\",\"Cancel changes\":\"Скасувати зміни\",\"Change name\":\"Змінити назву\",Choose:\"Виберіть\",\"Clear search\":\"Очистити пошук\",\"Clear text\":\"Очистити текст\",Close:\"Закрити\",\"Close modal\":\"Закрити модаль\",\"Close navigation\":\"Закрити навігацію\",\"Close sidebar\":\"Закрити бічну панель\",\"Close Smart Picker\":\"Закрити асистент вибору\",\"Collapse menu\":\"Згорнути меню\",\"Confirm changes\":\"Підтвердити зміни\",Custom:\"Власне\",\"Edit item\":\"Редагувати елемент\",\"Enter link\":\"Зазначте посилання\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"Помилка під час отримання пов'язаних ресурсів. Будь ласка, сконтактуйте з системним адміністратором, якщо у вас виникли запитання.\",\"External documentation for {name}\":\"Зовнішня документація для {name}\",Favorite:\"Із зірочкою\",Flags:\"Прапори\",\"Food & Drink\":\"Їжа та напої\",\"Frequently used\":\"Найчастіші\",Global:\"Глобальний\",\"Go back to the list\":\"Повернутися до списку\",\"Hide password\":\"Приховати пароль\",'Load more \"{options}\"\"':'Завантажити більше \"{options}\"',\"Message limit of {count} characters reached\":\"Вичерпано ліміт у {count} символів для повідомлення\",\"More items …\":\"Більше об'єктів...\",\"More options\":\"Більше об'єктів\",Next:\"Вперед\",\"No emoji found\":\"Емоційки відсутні\",\"No link provider found\":\"Не наведено посилання\",\"No results\":\"Відсутні результати\",Objects:\"Об'єкти\",\"Open contact menu\":\"Відкрити меню контактів\",'Open link to \"{resourceName}\"':'Відкрити посилання на \"{resourceName}\"',\"Open menu\":\"Відкрити меню\",\"Open navigation\":\"Відкрити навігацію\",\"Open settings menu\":\"Відкрити меню налаштувань\",\"Password is secure\":\"Пароль безпечний\",\"Pause slideshow\":\"Пауза у показі слайдів\",\"People & Body\":\"Люди та жести\",\"Pick a date\":\"Вибрати дату\",\"Pick a date and a time\":\"Виберіть дату та час\",\"Pick a month\":\"Виберіть місяць\",\"Pick a time\":\"Виберіть час\",\"Pick a week\":\"Виберіть тиждень\",\"Pick a year\":\"Виберіть рік\",\"Pick an emoji\":\"Виберіть емоційку\",\"Please select a time zone:\":\"Виберіть часовий пояс:\",Previous:\"Назад\",\"Provider icon\":\"Піктограма постачальника\",\"Raw link {options}\":\"Пряме посилання {options}\",\"Related resources\":\"Пов'язані ресурси\",Search:\"Пошук\",\"Search emoji\":\"Шукати емоційки\",\"Search results\":\"Результати пошуку\",\"sec. ago\":\"с тому\",\"seconds ago\":\"с тому\",\"Select a tag\":\"Виберіть позначку\",\"Select provider\":\"Виберіть постачальника\",Settings:\"Налаштування\",\"Settings navigation\":\"Навігація у налаштуваннях\",\"Show password\":\"Показати пароль\",\"Smart Picker\":\"Асистент вибору\",\"Smileys & Emotion\":\"Смайли та емоції\",\"Start slideshow\":\"Почати показ слайдів\",\"Start typing to search\":\"Почніть вводити для пошуку\",Submit:\"Надіслати\",Symbols:\"Символи\",\"Travel & Places\":\"Поїздки та місця\",\"Type to search time zone\":\"Введіть для пошуку часовий пояс\",\"Unable to search the group\":\"Неможливо шукати в групі\",\"Undo changes\":\"Скасувати зміни\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'Додайте \"@\", щоби згадати коористувача або \":\" для вибору емоційки...'}},{locale:\"ur_PK\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"uz\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"vi\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zh_CN\",translations:{\"{tag} (invisible)\":\"{tag} (不可见)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"行为\",'Actions for item with name \"{name}\"':\"\",Activities:\"活动\",\"Animals & Nature\":\"动物 & 自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"与同组用户分享的所有内容都会显示于此\",\"Avatar of {displayName}\":\"{displayName}的头像\",\"Avatar of {displayName}, {status}\":\"{displayName}的头像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"选择\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"关闭\",\"Close modal\":\"关闭窗口\",\"Close navigation\":\"关闭导航\",\"Close sidebar\":\"关闭侧边栏\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"确认更改\",Custom:\"自定义\",\"Edit item\":\"编辑项目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜爱\",Flags:\"旗帜\",\"Food & Drink\":\"食物 & 饮品\",\"Frequently used\":\"经常使用\",Global:\"全局\",\"Go back to the list\":\"返回至列表\",\"Hide password\":\"隐藏密码\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已达到 {count} 个字符的消息限制\",\"More items …\":\"更多项目…\",\"More options\":\"\",Next:\"下一个\",\"No emoji found\":\"表情未找到\",\"No link provider found\":\"\",\"No results\":\"无结果\",Objects:\"物体\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"开启导航\",\"Open settings menu\":\"\",\"Password is secure\":\"密码安全\",\"Pause slideshow\":\"暂停幻灯片\",\"People & Body\":\"人 & 身体\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"选择一个表情\",\"Please select a time zone:\":\"请选择一个时区:\",Previous:\"上一个\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相关资源\",Search:\"搜索\",\"Search emoji\":\"\",\"Search results\":\"搜索结果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"选择一个标签\",\"Select provider\":\"\",Settings:\"设置\",\"Settings navigation\":\"设置向导\",\"Show password\":\"显示密码\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"笑脸 & 情感\",\"Start slideshow\":\"开始幻灯片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"符号\",\"Travel & Places\":\"旅游 & 地点\",\"Type to search time zone\":\"打字以搜索时区\",\"Unable to search the group\":\"无法搜索分组\",\"Undo changes\":\"撤销更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'写信息,使用\"@\"来提及某人,使用\":\"进行表情符号自动完成 ...'}},{locale:\"zh_HK\",translations:{\"{tag} (invisible)\":\"{tag} (隱藏)\",\"{tag} (restricted)\":\"{tag} (受限)\",\"a few seconds ago\":\"\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"與同一組人共享的任何內容都會顯示在此處\",\"Avatar of {displayName}\":\"{displayName} 的頭像\",\"Avatar of {displayName}, {status}\":\"{displayName} 的頭像,{status}\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"取消更改\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"清除文本\",Close:\"關閉\",\"Close modal\":\"關閉模態\",\"Close navigation\":\"關閉導航\",\"Close sidebar\":\"關閉側邊欄\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"確認更改\",Custom:\"自定義\",\"Edit item\":\"編輯項目\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"喜愛\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"經常使用\",Global:\"全球的\",\"Go back to the list\":\"返回清單\",\"Hide password\":\"隱藏密碼\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"更多項目 …\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"開啟導航\",\"Open settings menu\":\"\",\"Password is secure\":\"密碼是安全的\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"請選擇時區:\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"相關資源\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"顯示密碼\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"提交\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"鍵入以搜索時區\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"取消更改\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':'寫訊息,使用 \"@\" 來指代某人,使用 \":\" 用於表情符號自動填充 ...'}},{locale:\"zh_TW\",translations:{\"{tag} (invisible)\":\"{tag}(隱藏)\",\"{tag} (restricted)\":\"{tag}(受限)\",\"a few seconds ago\":\"幾秒前\",Actions:\"動作\",'Actions for item with name \"{name}\"':\"\",Activities:\"活動\",\"Animals & Nature\":\"動物與自然\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"選擇\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"關閉\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"自定義\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"旗幟\",\"Food & Drink\":\"食物與飲料\",\"Frequently used\":\"最近使用\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"已達到訊息最多 {count} 字元限制\",\"More items …\":\"\",\"More options\":\"\",Next:\"下一個\",\"No emoji found\":\"未找到表情符號\",\"No link provider found\":\"\",\"No results\":\"無結果\",Objects:\"物件\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"暫停幻燈片\",\"People & Body\":\"人物\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"選擇表情符號\",\"Please select a time zone:\":\"\",Previous:\"上一個\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"搜尋\",\"Search emoji\":\"\",\"Search results\":\"搜尋結果\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"選擇標籤\",\"Select provider\":\"\",Settings:\"設定\",\"Settings navigation\":\"設定值導覽\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"表情\",\"Start slideshow\":\"開始幻燈片\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"標誌\",\"Travel & Places\":\"旅遊與景點\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"無法搜尋群組\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}},{locale:\"zu_ZA\",translations:{\"{tag} (invisible)\":\"\",\"{tag} (restricted)\":\"\",\"a few seconds ago\":\"\",Actions:\"\",'Actions for item with name \"{name}\"':\"\",Activities:\"\",\"Animals & Nature\":\"\",\"Any link\":\"\",\"Anything shared with the same group of people will show up here\":\"\",\"Avatar of {displayName}\":\"\",\"Avatar of {displayName}, {status}\":\"\",Back:\"\",\"Back to provider selection\":\"\",\"Cancel changes\":\"\",\"Change name\":\"\",Choose:\"\",\"Clear search\":\"\",\"Clear text\":\"\",Close:\"\",\"Close modal\":\"\",\"Close navigation\":\"\",\"Close sidebar\":\"\",\"Close Smart Picker\":\"\",\"Collapse menu\":\"\",\"Confirm changes\":\"\",Custom:\"\",\"Edit item\":\"\",\"Enter link\":\"\",\"Error getting related resources. Please contact your system administrator if you have any questions.\":\"\",\"External documentation for {name}\":\"\",Favorite:\"\",Flags:\"\",\"Food & Drink\":\"\",\"Frequently used\":\"\",Global:\"\",\"Go back to the list\":\"\",\"Hide password\":\"\",'Load more \"{options}\"\"':\"\",\"Message limit of {count} characters reached\":\"\",\"More items …\":\"\",\"More options\":\"\",Next:\"\",\"No emoji found\":\"\",\"No link provider found\":\"\",\"No results\":\"\",Objects:\"\",\"Open contact menu\":\"\",'Open link to \"{resourceName}\"':\"\",\"Open menu\":\"\",\"Open navigation\":\"\",\"Open settings menu\":\"\",\"Password is secure\":\"\",\"Pause slideshow\":\"\",\"People & Body\":\"\",\"Pick a date\":\"\",\"Pick a date and a time\":\"\",\"Pick a month\":\"\",\"Pick a time\":\"\",\"Pick a week\":\"\",\"Pick a year\":\"\",\"Pick an emoji\":\"\",\"Please select a time zone:\":\"\",Previous:\"\",\"Provider icon\":\"\",\"Raw link {options}\":\"\",\"Related resources\":\"\",Search:\"\",\"Search emoji\":\"\",\"Search results\":\"\",\"sec. ago\":\"\",\"seconds ago\":\"\",\"Select a tag\":\"\",\"Select provider\":\"\",Settings:\"\",\"Settings navigation\":\"\",\"Show password\":\"\",\"Smart Picker\":\"\",\"Smileys & Emotion\":\"\",\"Start slideshow\":\"\",\"Start typing to search\":\"\",Submit:\"\",Symbols:\"\",\"Travel & Places\":\"\",\"Type to search time zone\":\"\",\"Unable to search the group\":\"\",\"Undo changes\":\"\",'Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …':\"\"}}].forEach((function(e){var t={};for(var o in e.translations)e.translations[o].pluralId?t[o]={msgid:o,msgid_plural:e.translations[o].pluralId,msgstr:e.translations[o].msgstr}:t[o]={msgid:o,msgstr:[e.translations[o]]};n.addTranslation(e.locale,{translations:{\"\":t}})}));var i=n.build(),r=i.ngettext.bind(i),s=i.gettext.bind(i)},723:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(2734),n=o.n(a);const i={before:function(){this.$slots.default&&\"\"!==this.text.trim()||(n().util.warn(\"\".concat(this.$options.name,\" cannot be empty and requires a meaningful text content\"),this),this.$destroy(),this.$el.remove())},beforeUpdate:function(){this.text=this.getText()},data:function(){return{text:this.getText()}},computed:{isLongText:function(){return this.text&&this.text.trim().length>20}},methods:{getText:function(){return this.$slots.default?this.$slots.default[0].text.trim():\"\"}}}},9156:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>i});var a=o(723),n=o(6021);const i={mixins:[a.Z],props:{icon:{type:String,default:\"\"},name:{type:String,default:\"\"},title:{type:String,default:\"\"},closeAfterClick:{type:Boolean,default:!1},ariaLabel:{type:String,default:\"\"},ariaHidden:{type:Boolean,default:null}},emits:[\"click\"],computed:{isIconUrl:function(){try{return new URL(this.icon)}catch(e){return!1}}},methods:{onClick:function(e){if(this.$emit(\"click\",e),this.closeAfterClick){var t=(0,n.Z)(this,\"NcActions\");t&&t.closeMenu&&t.closeMenu(!1)}}}}},6730:()=>{\"use strict\"},1137:(e,t,o)=>{\"use strict\";o.d(t,{iQ:()=>a.Z});o(6730),o(8136),o(334),o(9917);var a=o(6863)},8136:()=>{\"use strict\"},334:(e,t,o)=>{\"use strict\";var a=o(2734);new(o.n(a)())({data:function(){return{isMobile:!1}},watch:{isMobile:function(e){this.$emit(\"changed\",e)}},created:function(){window.addEventListener(\"resize\",this.handleWindowResize),this.handleWindowResize()},beforeDestroy:function(){window.removeEventListener(\"resize\",this.handleWindowResize)},methods:{handleWindowResize:function(){this.isMobile=document.documentElement.clientWidth<1024}}})},3648:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>n});var a=o(932);const n={methods:{n:a.n,t:a.t}}},9917:(e,t,o)=>{\"use strict\";o(3330);require(\"linkify-string\");require(\"escape-html\");require(\"striptags\");o(2734);var a=\"(?:^|\\\\s)\",n=\"(?:[^a-z]|$)\";new RegExp(\"\".concat(a,\"(@[a-zA-Z0-9_.@\\\\-']+)(\").concat(n,\")\"),\"gi\"),new RegExp(\"\".concat(a,\"(@"[a-zA-Z0-9 _.@\\\\-']+")(\").concat(n,\")\"),\"gi\")},6863:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>d});var a=o(3607),n=o(768),i=o.n(n),r=o(7713),s=o(4262);function l(e){return l=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},l(e)}function c(){c=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function u(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},\"\")}catch(e){u=function(e,t,o){return e[t]=o}}function d(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function m(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=d;var p={};function h(){}function g(){}function v(){}var f={};u(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var c=m(e[a],e,i);if(\"throw\"!==c.type){var u=c.arg,d=u.value;return d&&\"object\"==l(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){u.value=e,r(u)}),(function(e){return n(\"throw\",e,r,s)}))}s(c.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=m(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=m(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function u(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}const d={data:function(){return{hasStatus:!1,userStatus:{status:null,message:null,icon:null}}},methods:{fetchUserStatus:function(e){var t,o=this;return(t=c().mark((function t(){var n,l,u,d,m,p,h,g;return c().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt(\"return\");case 2:if(n=(0,r.getCapabilities)(),Object.prototype.hasOwnProperty.call(n,\"user_status\")&&n.user_status.enabled){t.next=5;break}return t.abrupt(\"return\");case 5:if((0,a.getCurrentUser)()){t.next=7;break}return t.abrupt(\"return\");case 7:return t.prev=7,t.next=10,i().get((0,s.generateOcsUrl)(\"apps/user_status/api/v1/statuses/{userId}\",{userId:e}));case 10:l=t.sent,u=l.data,d=u.ocs.data,m=d.status,p=d.message,h=d.icon,o.userStatus.status=m,o.userStatus.message=p||\"\",o.userStatus.icon=h||\"\",o.hasStatus=!0,t.next=24;break;case 19:if(t.prev=19,t.t0=t.catch(7),404!==t.t0.response.status||0!==(null===(g=t.t0.response.data.ocs)||void 0===g||null===(g=g.data)||void 0===g?void 0:g.length)){t.next=23;break}return t.abrupt(\"return\");case 23:console.error(t.t0);case 24:case\"end\":return t.stop()}}),t,null,[[7,19]])})),function(){var e=this,o=arguments;return new Promise((function(a,n){var i=t.apply(e,o);function r(e){u(i,a,n,r,s,\"next\",e)}function s(e){u(i,a,n,r,s,\"throw\",e)}r(void 0)}))})()}}}},1336:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=[],a=0,n=e.toLowerCase().indexOf(t.toLowerCase(),a),i=0;n>-1&&i{\"use strict\";o.d(t,{Z:()=>a});const a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").slice(0,e||5)}},6021:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>a});const a=function(e,t){for(var o=e.$parent;o;){if(o.$options.name===t)return o;o=o.$parent}}},1206:(e,t,o)=>{\"use strict\";o.d(t,{L:()=>a});var a=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap}},4402:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-df184e4e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}li.active[data-v-df184e4e]{background-color:var(--color-background-hover);border-radius:6px;padding:0}.action-link[data-v-df184e4e]{display:flex;align-items:flex-start;width:100%;height:auto;margin:0;padding:0;padding-right:14px;box-sizing:border-box;cursor:pointer;white-space:nowrap;color:var(--color-main-text);border:0;border-radius:0;background-color:rgba(0,0,0,0);box-shadow:none;font-weight:normal;font-size:var(--default-font-size);line-height:44px}.action-link>span[data-v-df184e4e]{cursor:pointer;white-space:nowrap}.action-link__icon[data-v-df184e4e]{width:44px;height:44px;opacity:1;background-position:14px center;background-size:16px;background-repeat:no-repeat}.action-link[data-v-df184e4e] .material-design-icon{width:44px;height:44px;opacity:1}.action-link[data-v-df184e4e] .material-design-icon .material-design-icon__svg{vertical-align:middle}.action-link p[data-v-df184e4e]{max-width:220px;line-height:1.6em;padding:10.8px 0;cursor:pointer;text-align:left;overflow:hidden;text-overflow:ellipsis}.action-link__longtext[data-v-df184e4e]{cursor:pointer;white-space:pre-wrap}.action-link__name[data-v-df184e4e]{font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/assets/action.scss\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCiBC,2BACC,8CAAA,CACA,iBAAA,CACA,SAAA,CAqBF,8BACC,YAAA,CACA,sBAAA,CAEA,UAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,kBCxBY,CDyBZ,qBAAA,CAEA,cAAA,CACA,kBAAA,CAEA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,8BAAA,CACA,eAAA,CAEA,kBAAA,CACA,kCAAA,CACA,gBC9Ce,CDgDf,mCACC,cAAA,CACA,kBAAA,CAGD,oCACC,UCtDc,CDuDd,WCvDc,CDwDd,SCrCY,CDsCZ,+BAAA,CACA,oBCtDS,CDuDT,2BAAA,CAGD,oDACC,UC/Dc,CDgEd,WChEc,CDiEd,SC9CY,CDgDZ,+EACC,qBAAA,CAKF,gCACC,eAAA,CACA,iBAAA,CAGA,gBAAA,CAEA,cAAA,CACA,eAAA,CAGA,eAAA,CACA,sBAAA,CAGD,wCACC,cAAA,CAEA,oBAAA,CAGD,oCACC,gBAAA,CACA,sBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,oBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\n * @author Marco Ambrosini \\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 .\\n *\\n */\\n\\n@mixin action-active {\\n\\tli {\\n\\t\\t&.active {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\tborder-radius: 6px;\\n\\t\\t\\tpadding: 0;\\n\\t\\t}\\n\\t}\\n}\\n\\n@mixin action--disabled {\\n\\t.action--disabled {\\n\\t\\tpointer-events: none;\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t&:hover, &:focus {\\n\\t\\t\\tcursor: default;\\n\\t\\t\\topacity: $opacity_disabled;\\n\\t\\t}\\n\\t\\t& * {\\n\\t\\t\\topacity: 1 !important;\\n\\t\\t}\\n\\t}\\n}\\n\\n\\n@mixin action-item($name) {\\n\\t.action-#{$name} {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: flex-start;\\n\\n\\t\\twidth: 100%;\\n\\t\\theight: auto;\\n\\t\\tmargin: 0;\\n\\t\\tpadding: 0;\\n\\t\\tpadding-right: $icon-margin;\\n\\t\\tbox-sizing: border-box; // otherwise router-link overflows in Firefox\\n\\n\\t\\tcursor: pointer;\\n\\t\\twhite-space: nowrap;\\n\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tborder: 0;\\n\\t\\tborder-radius: 0; // otherwise Safari will cut the border-radius area\\n\\t\\tbackground-color: transparent;\\n\\t\\tbox-shadow: none;\\n\\n\\t\\tfont-weight: normal;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tline-height: $clickable-area;\\n\\n\\t\\t& > span {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t&__icon {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\t\\t\\tbackground-position: $icon-margin center;\\n\\t\\t\\tbackground-size: $icon-size;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t}\\n\\n\\t\\t&:deep(.material-design-icon) {\\n\\t\\t\\twidth: $clickable-area;\\n\\t\\t\\theight: $clickable-area;\\n\\t\\t\\topacity: $opacity_full;\\n\\n\\t\\t\\t.material-design-icon__svg {\\n\\t\\t\\t\\tvertical-align: middle;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// long text area\\n\\t\\tp {\\n\\t\\t\\tmax-width: 220px;\\n\\t\\t\\tline-height: 1.6em;\\n\\n\\t\\t\\t// 14px are currently 1em line-height. Mixing units as '44px - 1.6em' does not work.\\n\\t\\t\\tpadding: #{math.div($clickable-area - 1.6 * 14px, 2)} 0;\\n\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\ttext-align: left;\\n\\n\\t\\t\\t// in case there are no spaces like long email addresses\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t}\\n\\n\\t\\t&__longtext {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\t// allow the use of `\\\\n`\\n\\t\\t\\twhite-space: pre-wrap;\\n\\t\\t}\\n\\n\\t\\t&__name {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tdisplay: inline-block;\\n\\t\\t}\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},9546:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-55038265]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-55038265]{display:flex;align-items:center}.action-items>button[data-v-55038265]{margin-right:7px}.action-item[data-v-55038265]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-55038265]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-55038265]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-55038265]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-55038265]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-55038265]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-55038265]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-55038265]{background-color:var(--open-background-color)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,+BACC,YAAA,CACA,kBAAA,CAGA,sCACC,gBAAA,CAIF,8BACC,gFAAA,CACA,iBAAA,CACA,oBAAA,CAEA,mDACC,2DAAA,CAGD,qDACC,iEAAA,CAGD,iDACC,iDAAA,CAGD,mDACC,mDAAA,CAGD,mDACC,mDAAA,CAGD,kEACC,oCAAA,CAGD,yEACC,6CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// Inline buttons\\n.action-items {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\n\\t// Spacing between buttons\\n\\t& > button {\\n\\t\\tmargin-right: math.div($icon-margin, 2);\\n\\t}\\n}\\n\\n.action-item {\\n\\t--open-background-color: var(--color-background-hover, $action-background-hover);\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\n\\t&.action-item--primary {\\n\\t\\t--open-background-color: var(--color-primary-element-hover);\\n\\t}\\n\\n\\t&.action-item--secondary {\\n\\t\\t--open-background-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t&.action-item--error {\\n\\t\\t--open-background-color: var(--color-error-hover);\\n\\t}\\n\\n\\t&.action-item--warning {\\n\\t\\t--open-background-color: var(--color-warning-hover);\\n\\t}\\n\\n\\t&.action-item--success {\\n\\t\\t--open-background-color: var(--color-success-hover);\\n\\t}\\n\\n\\t&.action-item--tertiary-no-background {\\n\\t\\t--open-background-color: transparent;\\n\\t}\\n\\n\\t&.action-item--open .action-item__menutoggle {\\n\\t\\tbackground-color: var(--open-background-color);\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},5155:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(50vh - 16px);overflow:auto}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcActions/NcActions.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCJD,kFACC,wCAAA,CACA,eAAA,CAEA,mGACC,wCAAA,CACA,WAAA,CACA,4BAAA,CACA,aAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n// We overwrote the popover base class, so we can style\\n// the popover__inner for actions only.\\n.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {\\n\\tborder-radius: var(--border-radius-large);\\n\\toverflow:hidden;\\n\\n\\t.v-popper__inner {\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\tpadding: 4px;\\n\\t\\tmax-height: calc(50vh - 16px);\\n\\t\\toverflow: auto;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},6222:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>v});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i),s=o(1667),l=o.n(s),c=new URL(o(3423),o.b),u=new URL(o(2605),o.b),d=new URL(o(7127),o.b),m=r()(n()),p=l()(c),h=l()(u),g=l()(d);m.push([e.id,`.material-design-icon[data-v-7de2f7ff]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.avatardiv[data-v-7de2f7ff]{position:relative;display:inline-block;width:var(--size);height:var(--size)}.avatardiv--unknown[data-v-7de2f7ff]{position:relative;background-color:var(--color-main-background)}.avatardiv[data-v-7de2f7ff]:not(.avatardiv--unknown){background-color:var(--color-main-background) !important;box-shadow:0 0 5px rgba(0,0,0,.05) inset}.avatardiv--with-menu[data-v-7de2f7ff]{cursor:pointer}.avatardiv--with-menu .action-item[data-v-7de2f7ff]{position:absolute;top:0;left:0}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle{cursor:pointer;opacity:0}.avatardiv--with-menu[data-v-7de2f7ff]:focus .action-item__menutoggle,.avatardiv--with-menu[data-v-7de2f7ff]:hover .action-item__menutoggle,.avatardiv--with-menu.avatardiv--with-menu-loading[data-v-7de2f7ff] .action-item__menutoggle{opacity:1}.avatardiv--with-menu:focus img[data-v-7de2f7ff],.avatardiv--with-menu:hover img[data-v-7de2f7ff],.avatardiv--with-menu.avatardiv--with-menu-loading img[data-v-7de2f7ff]{opacity:.3}.avatardiv--with-menu[data-v-7de2f7ff] .action-item__menutoggle,.avatardiv--with-menu img[data-v-7de2f7ff]{transition:opacity var(--animation-quick)}.avatardiv--with-menu[data-v-7de2f7ff] .button-vue,.avatardiv--with-menu[data-v-7de2f7ff] .button-vue__icon{height:var(--size);min-height:var(--size);width:var(--size) !important;min-width:var(--size)}.avatardiv .avatardiv__initials-wrapper[data-v-7de2f7ff]{height:var(--size);width:var(--size);background-color:var(--color-main-background);border-radius:50%}.avatardiv .avatardiv__initials-wrapper .unknown[data-v-7de2f7ff]{position:absolute;top:0;left:0;display:block;width:100%;text-align:center;font-weight:normal}.avatardiv img[data-v-7de2f7ff]{width:100%;height:100%;object-fit:cover}.avatardiv .material-design-icon[data-v-7de2f7ff]{width:var(--size);height:var(--size)}.avatardiv .avatardiv__user-status[data-v-7de2f7ff]{position:absolute;right:-4px;bottom:-4px;max-height:18px;max-width:18px;height:40%;width:40%;line-height:15px;font-size:var(--default-font-size);border:2px solid var(--color-main-background);background-color:var(--color-main-background);background-repeat:no-repeat;background-size:16px;background-position:center;border-radius:50%}.acli:hover .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-background-hover);background-color:var(--color-background-hover)}.acli.active .avatardiv .avatardiv__user-status[data-v-7de2f7ff]{border-color:var(--color-primary-element-light);background-color:var(--color-primary-element-light)}.avatardiv .avatardiv__user-status--online[data-v-7de2f7ff]{background-image:url(${p})}.avatardiv .avatardiv__user-status--dnd[data-v-7de2f7ff]{background-image:url(${h});background-color:#fff}.avatardiv .avatardiv__user-status--away[data-v-7de2f7ff]{background-image:url(${g})}.avatardiv .avatardiv__user-status--icon[data-v-7de2f7ff]{border:none;background-color:rgba(0,0,0,0)}.avatardiv .popovermenu-wrapper[data-v-7de2f7ff]{position:relative;display:inline-block}.avatar-class-icon[data-v-7de2f7ff]{border-radius:50%;background-color:var(--color-background-darker);height:100%}`,\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcAvatar/NcAvatar.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,4BACC,iBAAA,CACA,oBAAA,CACA,iBAAA,CACA,kBAAA,CAEA,qCACC,iBAAA,CACA,6CAAA,CAGD,qDAEC,wDAAA,CACA,wCAAA,CAGD,uCACC,cAAA,CACA,oDACC,iBAAA,CACA,KAAA,CACA,MAAA,CAED,gEACC,cAAA,CACA,SAAA,CAKA,yOACC,SAAA,CAED,0KACC,UAAA,CAGF,2GAEC,yCAAA,CAGA,8GAEC,kBAAA,CACA,sBAAA,CACA,4BAAA,CACA,qBAAA,CAKH,yDACC,kBAAA,CACA,iBAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kEACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,aAAA,CACA,UAAA,CACA,iBAAA,CACA,kBAAA,CAIF,gCAEC,UAAA,CACA,WAAA,CAEA,gBAAA,CAGD,kDACC,iBAAA,CACA,kBAAA,CAGD,oDACC,iBAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,UAAA,CACA,SAAA,CACA,gBAAA,CACA,kCAAA,CACA,6CAAA,CACA,6CAAA,CACA,2BAAA,CACA,oBAAA,CACA,0BAAA,CACA,iBAAA,CAEA,gEACC,0CAAA,CACA,8CAAA,CAED,iEACC,+CAAA,CACA,mDAAA,CAGD,4DACC,wDAAA,CAED,yDACC,wDAAA,CACA,qBAAA,CAED,0DACC,wDAAA,CAED,0DACC,WAAA,CACA,8BAAA,CAIF,iDACC,iBAAA,CACA,oBAAA,CAIF,oCACC,iBAAA,CACA,+CAAA,CACA,WAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.avatardiv {\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n\\twidth: var(--size);\\n\\theight: var(--size);\\n\\n\\t&--unknown {\\n\\t\\tposition: relative;\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t}\\n\\n\\t&:not(&--unknown) {\\n\\t\\t// White/black background for avatars with transparency\\n\\t\\tbackground-color: var(--color-main-background) !important;\\n\\t\\tbox-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;\\n\\t}\\n\\n\\t&--with-menu {\\n\\t\\tcursor: pointer;\\n\\t\\t.action-item {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t}\\n\\t\\t:deep(.action-item__menutoggle) {\\n\\t\\t\\tcursor: pointer;\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\t\\t&:focus,\\n\\t\\t&:hover,\\n\\t\\t&#{&}-loading {\\n\\t\\t\\t:deep(.action-item__menutoggle) {\\n\\t\\t\\t\\topacity: 1;\\n\\t\\t\\t}\\n\\t\\t\\timg {\\n\\t\\t\\t\\topacity: 0.3;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t:deep(.action-item__menutoggle),\\n\\t\\timg {\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t}\\n\\t\\t:deep() {\\n\\t\\t\\t.button-vue,\\n\\t\\t\\t.button-vue__icon {\\n\\t\\t\\t\\theight: var(--size);\\n\\t\\t\\t\\tmin-height: var(--size);\\n\\t\\t\\t\\twidth: var(--size) !important;\\n\\t\\t\\t\\tmin-width: var(--size);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t.avatardiv__initials-wrapper {\\n\\t\\theight: var(--size);\\n\\t\\twidth: var(--size);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tborder-radius: 50%;\\n\\n\\t\\t.unknown {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\ttext-align: center;\\n\\t\\t\\tfont-weight: normal;\\n\\t\\t}\\n\\t}\\n\\n\\timg {\\n\\t\\t// Cover entire area\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\t// Keep ratio\\n\\t\\tobject-fit: cover;\\n\\t}\\n\\n\\t.material-design-icon {\\n\\t\\twidth: var(--size);\\n\\t\\theight: var(--size);\\n\\t}\\n\\n\\t.avatardiv__user-status {\\n\\t\\tposition: absolute;\\n\\t\\tright: -4px;\\n\\t\\tbottom: -4px;\\n\\t\\tmax-height: 18px;\\n\\t\\tmax-width: 18px;\\n\\t\\theight: 40%;\\n\\t\\twidth: 40%;\\n\\t\\tline-height: 15px;\\n\\t\\tfont-size: var(--default-font-size);\\n\\t\\tborder: 2px solid var(--color-main-background);\\n\\t\\tbackground-color: var(--color-main-background);\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-size: 16px;\\n\\t\\tbackground-position: center;\\n\\t\\tborder-radius: 50%;\\n\\n\\t\\t.acli:hover & {\\n\\t\\t\\tborder-color: var(--color-background-hover);\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t\\t.acli.active & {\\n\\t\\t\\tborder-color: var(--color-primary-element-light);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t}\\n\\n\\t\\t&--online{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-online.svg');\\n\\t\\t}\\n\\t\\t&--dnd{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-dnd.svg');\\n\\t\\t\\tbackground-color: #ffffff;\\n\\t\\t}\\n\\t\\t&--away{\\n\\t\\t\\tbackground-image: url('../../assets/status-icons/user-status-away.svg');\\n\\t\\t}\\n\\t\\t&--icon {\\n\\t\\t\\tborder: none;\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t.popovermenu-wrapper {\\n\\t\\tposition: relative;\\n\\t\\tdisplay: inline-block;\\n\\t}\\n}\\n\\n.avatar-class-icon {\\n\\tborder-radius: 50%;\\n\\tbackground-color: var(--color-background-darker);\\n\\theight: 100%;\\n}\\n\\n\"],sourceRoot:\"\"}]);const v=m},7294:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7aad13a0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-7aad13a0]{position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:bold;min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:22px;transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue *[data-v-7aad13a0],.button-vue span[data-v-7aad13a0]{cursor:pointer}.button-vue[data-v-7aad13a0]:focus{outline:none}.button-vue[data-v-7aad13a0]:disabled{cursor:default;opacity:.5;filter:saturate(0.7)}.button-vue:disabled *[data-v-7aad13a0]{cursor:default}.button-vue[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-7aad13a0]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-7aad13a0]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-7aad13a0]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-7aad13a0]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-7aad13a0]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-7aad13a0]{padding-inline:calc(var(--default-grid-baseline)*4) var(--default-grid-baseline)}.button-vue__icon[data-v-7aad13a0]{height:44px;width:44px;min-height:44px;min-width:44px;display:flex;justify-content:center;align-items:center}.button-vue__text[data-v-7aad13a0]{font-weight:bold;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-7aad13a0]{width:44px !important}.button-vue--text-only[data-v-7aad13a0]{padding:0 12px}.button-vue--text-only .button-vue__text[data-v-7aad13a0]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-7aad13a0]{padding-block:0;padding-inline:var(--default-grid-baseline) calc(var(--default-grid-baseline)*4)}.button-vue--wide[data-v-7aad13a0]{width:100%}.button-vue[data-v-7aad13a0]:focus-visible{outline:2px solid var(--color-main-text) !important;box-shadow:0 0 0 4px var(--color-main-background) !important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius);background-color:rgba(0,0,0,0)}.button-vue--vue-primary[data-v-7aad13a0]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-7aad13a0]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-7aad13a0]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-7aad13a0]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]{color:var(--color-main-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-no-background[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]{color:var(--color-primary-element-text);background-color:rgba(0,0,0,0)}.button-vue--vue-tertiary-on-primary[data-v-7aad13a0]:hover:not(:disabled){background-color:rgba(0,0,0,0)}.button-vue--vue-success[data-v-7aad13a0]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-7aad13a0]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-7aad13a0]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-7aad13a0]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-7aad13a0]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-7aad13a0]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-7aad13a0]:active{background-color:var(--color-error)}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcButton/NcButton.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,6BACC,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,QAAA,CACA,SAAA,CACA,kCAAA,CACA,gBAAA,CACA,eCcgB,CDbhB,cCagB,CDZhB,YAAA,CACA,kBAAA,CACA,sBAAA,CAGA,cAAA,CAKA,kBAAA,CACA,uDAAA,CACA,uBAAA,CACA,iCAAA,CAkBA,6CAAA,CACA,mDAAA,CA1BA,iEAEC,cAAA,CAQD,mCACC,YAAA,CAGD,sCACC,cAAA,CAIA,UCIiB,CDFjB,oBAAA,CALA,wCACC,cAAA,CAUF,kDACC,yDAAA,CAKD,oCACC,mDAAA,CAGD,sCACC,mBAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAGD,uDACC,mBAAA,CAED,yDACC,qBAAA,CAED,2DACC,0BAAA,CAGD,gEACC,gFAAA,CAGD,mCACC,WCrDe,CDsDf,UCtDe,CDuDf,eCvDe,CDwDf,cCxDe,CDyDf,YAAA,CACA,sBAAA,CACA,kBAAA,CAGD,mCACC,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CAID,wCACC,qBAAA,CAID,wCACC,cAAA,CACA,0DACC,eAAA,CACA,gBAAA,CAKF,4CACC,eAAA,CACA,gFAAA,CAID,mCACC,UAAA,CAGD,2CACC,mDAAA,CACA,4DAAA,CACA,+EACC,mDAAA,CACA,kCAAA,CACA,8BAAA,CAOF,0CACC,6CAAA,CACA,uCAAA,CACA,+DACC,mDAAA,CAID,iDACC,6CAAA,CAKF,4CACC,6CAAA,CACA,mDAAA,CACA,iEACC,6CAAA,CACA,yDAAA,CAKF,2CACC,4BAAA,CACA,8BAAA,CACA,gEACC,8CAAA,CAKF,yDACC,4BAAA,CACA,8BAAA,CACA,8EACC,8BAAA,CAKF,sDACC,uCAAA,CACA,8BAAA,CAEA,2EACC,8BAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,0CACC,qCAAA,CACA,UAAA,CACA,+DACC,2CAAA,CAID,iDACC,qCAAA,CAKF,wCACC,mCAAA,CACA,UAAA,CACA,6DACC,yCAAA,CAID,+CACC,mCAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.button-vue {\\n\\tposition: relative;\\n\\twidth: fit-content;\\n\\toverflow: hidden;\\n\\tborder: 0;\\n\\tpadding: 0;\\n\\tfont-size: var(--default-font-size);\\n\\tfont-weight: bold;\\n\\tmin-height: $clickable-area;\\n\\tmin-width: $clickable-area;\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\n\\t// Cursor pointer on element and all children\\n\\tcursor: pointer;\\n\\t& *,\\n\\tspan {\\n\\t\\tcursor: pointer;\\n\\t}\\n\\tborder-radius: math.div($clickable-area, 2);\\n\\ttransition-property: color, border-color, background-color;\\n\\ttransition-duration: 0.1s;\\n\\ttransition-timing-function: linear;\\n\\n\\t// No outline feedback for focus. Handled with a toggled class in js (see data)\\n\\t&:focus {\\n\\t\\toutline: none;\\n\\t}\\n\\n\\t&:disabled {\\n\\t\\tcursor: default;\\n\\t\\t& * {\\n\\t\\t\\tcursor: default;\\n\\t\\t}\\n\\t\\topacity: $opacity_disabled;\\n\\t\\t// Gives a wash out effect\\n\\t\\tfilter: saturate($opacity_normal);\\n\\t}\\n\\n\\t// Default button type\\n\\tcolor: var(--color-primary-element-light-text);\\n\\tbackground-color: var(--color-primary-element-light);\\n\\t&:hover:not(:disabled) {\\n\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t}\\n\\n\\t// Back to the default color for this button when active\\n\\t// TODO: add ripple effect\\n\\t&:active {\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&--end &__wrapper {\\n\\t\\tjustify-content: end;\\n\\t}\\n\\t&--start &__wrapper {\\n\\t\\tjustify-content: start;\\n\\t}\\n\\t&--reverse &__wrapper {\\n\\t\\tflex-direction: row-reverse;\\n\\t}\\n\\n\\t&--reverse#{&}--icon-and-text {\\n\\t\\tpadding-inline: calc(var(--default-grid-baseline) * 4) var(--default-grid-baseline);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\theight: $clickable-area;\\n\\t\\twidth: $clickable-area;\\n\\t\\tmin-height: $clickable-area;\\n\\t\\tmin-width: $clickable-area;\\n\\t\\tdisplay: flex;\\n\\t\\tjustify-content: center;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__text {\\n\\t\\tfont-weight: bold;\\n\\t\\tmargin-bottom: 1px;\\n\\t\\tpadding: 2px 0;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\toverflow: hidden;\\n\\t}\\n\\n\\t// Icon-only button\\n\\t&--icon-only {\\n\\t\\twidth: $clickable-area !important;\\n\\t}\\n\\n\\t// Text-only button\\n\\t&--text-only {\\n\\t\\tpadding: 0 12px;\\n\\t\\t& .button-vue__text {\\n\\t\\t\\tmargin-left: 4px;\\n\\t\\t\\tmargin-right: 4px;\\n\\t\\t}\\n\\t}\\n\\n\\t// Icon and text button\\n\\t&--icon-and-text {\\n\\t\\tpadding-block: 0;\\n\\t\\tpadding-inline: var(--default-grid-baseline) calc(var(--default-grid-baseline) * 4);\\n\\t}\\n\\n\\t// Wide button spans the whole width of the container\\n\\t&--wide {\\n\\t\\twidth: 100%;\\n\\t}\\n\\n\\t&:focus-visible {\\n\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\tbox-shadow: 0 0 0 4px var(--color-main-background) !important;\\n\\t\\t&.button-vue--vue-tertiary-on-primary {\\n\\t\\t\\toutline: 2px solid var(--color-primary-element-text);\\n\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Button types\\n\\n\\t// Primary\\n\\t&--vue-primary {\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-primary-element-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-primary-element);\\n\\t\\t}\\n\\t}\\n\\n\\t// Secondary\\n\\t&--vue-secondary {\\n\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\tbackground-color: var(--color-primary-element-light);\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tcolor: var(--color-primary-element-light-text);\\n\\t\\t\\tbackground-color: var(--color-primary-element-light-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary\\n\\t&--vue-tertiary {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary, no background\\n\\t&--vue-tertiary-no-background {\\n\\t\\tcolor: var(--color-main-text);\\n\\t\\tbackground-color: transparent;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Tertiary on primary color (like the header)\\n\\t&--vue-tertiary-on-primary {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: transparent;\\n\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: transparent;\\n\\t\\t}\\n\\t}\\n\\n\\t// Success\\n\\t&--vue-success {\\n\\t\\tbackground-color: var(--color-success);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-success-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// : add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-success);\\n\\t\\t}\\n\\t}\\n\\n\\t// Warning\\n\\t&--vue-warning {\\n\\t\\tbackground-color: var(--color-warning);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-warning-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-warning);\\n\\t\\t}\\n\\t}\\n\\n\\t// Error\\n\\t&--vue-error {\\n\\t\\tbackground-color: var(--color-error);\\n\\t\\tcolor: white;\\n\\t\\t&:hover:not(:disabled) {\\n\\t\\t\\tbackground-color: var(--color-error-hover);\\n\\t\\t}\\n\\t\\t// Back to the default color for this button when active\\n\\t\\t// TODO: add ripple effect\\n\\t\\t&:active {\\n\\t\\t\\tbackground-color: var(--color-error);\\n\\t\\t}\\n\\t}\\n}\\n\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},436:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-3daafbe0]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.name-parts[data-v-3daafbe0]{display:flex;max-width:100%;cursor:inherit}.name-parts__first[data-v-3daafbe0]{overflow:hidden;text-overflow:ellipsis}.name-parts__first[data-v-3daafbe0],.name-parts__last[data-v-3daafbe0]{white-space:pre;cursor:inherit}.name-parts__first strong[data-v-3daafbe0],.name-parts__last strong[data-v-3daafbe0]{font-weight:bold}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcEllipsisedOption/NcEllipsisedOption.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,6BACC,YAAA,CACA,cAAA,CACA,cAAA,CACA,oCACC,eAAA,CACA,sBAAA,CAED,uEAGC,eAAA,CACA,cAAA,CACA,qFACC,gBAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.name-parts {\\n\\tdisplay: flex;\\n\\tmax-width: 100%;\\n\\tcursor: inherit;\\n\\t&__first {\\n\\t\\toverflow: hidden;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n\\t&__first,\\n\\t&__last {\\n\\t\\t// prevent whitespace from being trimmed\\n\\t\\twhite-space: pre;\\n\\t\\tcursor: inherit;\\n\\t\\tstrong {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t}\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},2105:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-5937dacc]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-5937dacc]{display:flex;justify-content:center;align-items:center;min-width:44px;min-height:44px;opacity:1}.icon-vue[data-v-5937dacc] svg{fill:currentColor;max-width:20px;max-height:20px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,2BACC,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,SAAA,CAEA,+BACC,iBAAA,CACA,cAAA,CACA,eAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.icon-vue {\\n\\tdisplay: flex;\\n\\tjustify-content: center;\\n\\talign-items: center;\\n\\tmin-width: 44px;\\n\\tmin-height: 44px;\\n\\topacity: 1;\\n\\n\\t&:deep(svg) {\\n\\t\\tfill: currentColor;\\n\\t\\tmax-width: 20px;\\n\\t\\tmax-height: 20px;\\n\\t}\\n}\\n\"],sourceRoot:\"\"}]);const s=r},4629:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-160648e6]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.option[data-v-160648e6]{display:flex;align-items:center;width:100%;height:var(--height);cursor:inherit}.option__avatar[data-v-160648e6]{margin-right:var(--margin)}.option__details[data-v-160648e6]{display:flex;flex:1 1;flex-direction:column;justify-content:center;min-width:0}.option__lineone[data-v-160648e6]{color:var(--color-main-text)}.option__linetwo[data-v-160648e6]{color:var(--color-text-maxcontrast)}.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.1em}.option__lineone strong[data-v-160648e6],.option__linetwo strong[data-v-160648e6]{font-weight:bold}.option__icon[data-v-160648e6]{width:44px;height:44px;color:var(--color-text-maxcontrast)}.option__icon.icon[data-v-160648e6]{flex:0 0 44px;opacity:.7;background-position:center;background-size:16px}.option__details[data-v-160648e6],.option__lineone[data-v-160648e6],.option__linetwo[data-v-160648e6],.option__icon[data-v-160648e6]{cursor:inherit}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcListItemIcon/NcListItemIcon.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,yBACC,YAAA,CACA,kBAAA,CACA,UAAA,CACA,oBAAA,CACA,cAAA,CAEA,iCACC,0BAAA,CAGD,kCACC,YAAA,CACA,QAAA,CACA,qBAAA,CACA,sBAAA,CACA,WAAA,CAGD,kCACC,4BAAA,CAGD,kCACC,mCAAA,CAGD,oEAEC,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,iBAAA,CACA,kFACC,gBAAA,CAIF,+BACC,UChBe,CDiBf,WCjBe,CDkBf,mCAAA,CACA,oCACC,aAAA,CACA,UCHc,CDId,0BAAA,CACA,oBAAA,CAIF,qIAIC,cAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.option {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\twidth: 100%;\\n\\theight: var(--height);\\n\\tcursor: inherit;\\n\\n\\t&__avatar {\\n\\t\\tmargin-right: var(--margin);\\n\\t}\\n\\n\\t&__details {\\n\\t\\tdisplay: flex;\\n\\t\\tflex: 1 1;\\n\\t\\tflex-direction: column;\\n\\t\\tjustify-content: center;\\n\\t\\tmin-width: 0;\\n\\t}\\n\\n\\t&__lineone {\\n\\t\\tcolor: var(--color-main-text);\\n\\t}\\n\\n\\t&__linetwo {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t}\\n\\n\\t&__lineone,\\n\\t&__linetwo {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\tline-height: 1.1em;\\n\\t\\tstrong {\\n\\t\\t\\tfont-weight: bold;\\n\\t\\t}\\n\\t}\\n\\n\\t&__icon {\\n\\t\\twidth: $clickable-area;\\n\\t\\theight: $clickable-area;\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t&.icon {\\n\\t\\t\\tflex: 0 0 $clickable-area;\\n\\t\\t\\topacity: $opacity_normal;\\n\\t\\t\\tbackground-position: center;\\n\\t\\t\\tbackground-size: 16px;\\n\\t\\t}\\n\\t}\\n\\n\\t&__details,\\n\\t&__lineone,\\n\\t&__linetwo,\\n\\t&__icon {\\n\\t\\tcursor: inherit;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},8502:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-27fa1197]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.loading-icon svg[data-v-27fa1197]{animation:rotate var(--animation-duration, 0.8s) linear infinite}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcLoadingIcon/NcLoadingIcon.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,mCACC,gEAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n.loading-icon svg{\\n\\tanimation: rotate var(--animation-duration, 0.8s) linear infinite;\\n}\\n\"],sourceRoot:\"\"}]);const s=r},1625:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0);pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:rgba(0,0,0,0);border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcPopover/NcPopover.vue\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCLD,iBACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,8BAAA,CACA,mBAAA,CACA,aAAA,CACA,eAAA,CACA,SAAA,CAGD,wBACC,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,WAAA,CACA,UAAA,CACA,eAAA,CACA,mBAAA,CACA,UAAA,CAMA,2CACC,cAAA,CACA,KAAA,CACA,MAAA,CACA,wBAAA,CAEA,sDAAA,CAEA,4DACC,SAAA,CACA,4BAAA,CACA,wCAAA,CACA,eAAA,CACA,uCAAA,CAGD,sEACC,iBAAA,CACA,SAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,0BAAA,CACA,iBA1BW,CA6BZ,kGACC,YAAA,CACA,qBAAA,CACA,6CAAA,CAGD,qGACC,SAAA,CACA,kBAAA,CACA,gDAAA,CAGD,oGACC,UAAA,CACA,mBAAA,CACA,+CAAA,CAGD,mGACC,WAAA,CACA,oBAAA,CACA,8CAAA,CAGD,6DACC,iBAAA,CACA,2EAAA,CACA,SAAA,CAGD,8DACC,kBAAA,CACA,yCAAA,CACA,SAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n\\n.resize-observer {\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\tz-index:-1;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tborder:none;\\n\\tbackground-color:transparent;\\n\\tpointer-events:none;\\n\\tdisplay:block;\\n\\toverflow:hidden;\\n\\topacity:0\\n}\\n\\n.resize-observer object {\\n\\tdisplay:block;\\n\\tposition:absolute;\\n\\ttop:0;\\n\\tleft:0;\\n\\theight:100%;\\n\\twidth:100%;\\n\\toverflow:hidden;\\n\\tpointer-events:none;\\n\\tz-index:-1\\n}\\n\\n$arrow-width: 10px;\\n\\n.v-popper--theme-dropdown {\\n\\t&.v-popper__popper {\\n\\t\\tz-index: 100000;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\tdisplay: block !important;\\n\\n\\t\\tfilter: drop-shadow(0 1px 10px var(--color-box-shadow));\\n\\n\\t\\t.v-popper__inner {\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\tborder-radius: var(--border-radius-large);\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t.v-popper__arrow-container {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tz-index: 1;\\n\\t\\t\\twidth: 0;\\n\\t\\t\\theight: 0;\\n\\t\\t\\tborder-style: solid;\\n\\t\\t\\tborder-color: transparent;\\n\\t\\t\\tborder-width: $arrow-width;\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='top'] .v-popper__arrow-container {\\n\\t\\t\\tbottom: -$arrow-width;\\n\\t\\t\\tborder-bottom-width: 0;\\n\\t\\t\\tborder-top-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='bottom'] .v-popper__arrow-container {\\n\\t\\t\\ttop: -$arrow-width;\\n\\t\\t\\tborder-top-width: 0;\\n\\t\\t\\tborder-bottom-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='right'] .v-popper__arrow-container {\\n\\t\\t\\tleft: -$arrow-width;\\n\\t\\t\\tborder-left-width: 0;\\n\\t\\t\\tborder-right-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[data-popper-placement^='left'] .v-popper__arrow-container {\\n\\t\\t\\tright: -$arrow-width;\\n\\t\\t\\tborder-right-width: 0;\\n\\t\\t\\tborder-left-color: var(--color-main-background);\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='true'] {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t\\ttransition: opacity var(--animation-quick), visibility var(--animation-quick);\\n\\t\\t\\topacity: 0;\\n\\t\\t}\\n\\n\\t\\t&[aria-hidden='false'] {\\n\\t\\t\\tvisibility: visible;\\n\\t\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\t\\topacity: 1;\\n\\t\\t}\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},6466:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon[data-v-7dba3f6e]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.mention-bubble--primary .mention-bubble__content[data-v-7dba3f6e]{color:var(--color-primary-element-text);background-color:var(--color-primary-element)}.mention-bubble__wrapper[data-v-7dba3f6e]{max-width:150px;height:18px;vertical-align:text-bottom;display:inline-flex;align-items:center}.mention-bubble__content[data-v-7dba3f6e]{display:inline-flex;overflow:hidden;align-items:center;max-width:100%;height:20px;-webkit-user-select:none;user-select:none;padding-right:6px;padding-left:2px;border-radius:10px;background-color:var(--color-background-dark)}.mention-bubble__icon[data-v-7dba3f6e]{position:relative;width:16px;height:16px;border-radius:8px;background-color:var(--color-background-darker);background-repeat:no-repeat;background-position:center;background-size:12px}.mention-bubble__icon--with-avatar[data-v-7dba3f6e]{color:inherit;background-size:cover}.mention-bubble__title[data-v-7dba3f6e]{overflow:hidden;margin-left:2px;white-space:nowrap;text-overflow:ellipsis}.mention-bubble__title[data-v-7dba3f6e]::before{content:attr(title)}.mention-bubble__select[data-v-7dba3f6e]{position:absolute;z-index:-1;left:-1000px}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcRichContenteditable/NcMentionBubble.vue\"],names:[],mappings:\"AAGA,uCACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CAAA,mECCC,uCAAA,CACA,6CAAA,CAGD,0CACC,eAXiB,CAajB,WAAA,CACA,0BAAA,CACA,mBAAA,CACA,kBAAA,CAGD,0CACC,mBAAA,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,WAzBc,CA0Bd,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBA3Be,CA4Bf,kBAAA,CACA,6CAAA,CAGD,uCACC,iBAAA,CACA,UAjCmB,CAkCnB,WAlCmB,CAmCnB,iBAAA,CACA,+CAAA,CACA,2BAAA,CACA,0BAAA,CACA,oBAAA,CAEA,oDACC,aAAA,CACA,qBAAA,CAIF,wCACC,eAAA,CACA,eAlDe,CAmDf,kBAAA,CACA,sBAAA,CAEA,gDACC,mBAAA,CAKF,yCACC,iBAAA,CACA,UAAA,CACA,YAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\n$bubble-height: 20px;\\n$bubble-max-width: 150px;\\n$bubble-padding: 2px;\\n$bubble-avatar-size: $bubble-height - 2 * $bubble-padding;\\n\\n.mention-bubble {\\n\\t&--primary &__content {\\n\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\tbackground-color: var(--color-primary-element);\\n\\t}\\n\\n\\t&__wrapper {\\n\\t\\tmax-width: $bubble-max-width;\\n\\t\\t// Align with text\\n\\t\\theight: $bubble-height - $bubble-padding;\\n\\t\\tvertical-align: text-bottom;\\n\\t\\tdisplay: inline-flex;\\n\\t\\talign-items: center;\\n\\t}\\n\\n\\t&__content {\\n\\t\\tdisplay: inline-flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tmax-width: 100%;\\n\\t\\theight: $bubble-height ;\\n\\t\\t-webkit-user-select: none;\\n\\t\\tuser-select: none;\\n\\t\\tpadding-right: $bubble-padding * 3;\\n\\t\\tpadding-left: $bubble-padding;\\n\\t\\tborder-radius: math.div($bubble-height, 2);\\n\\t\\tbackground-color: var(--color-background-dark);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\tposition: relative;\\n\\t\\twidth: $bubble-avatar-size;\\n\\t\\theight: $bubble-avatar-size;\\n\\t\\tborder-radius: math.div($bubble-avatar-size, 2);\\n\\t\\tbackground-color: var(--color-background-darker);\\n\\t\\tbackground-repeat: no-repeat;\\n\\t\\tbackground-position: center;\\n\\t\\tbackground-size: $bubble-avatar-size - 2 * $bubble-padding;\\n\\n\\t\\t&--with-avatar {\\n\\t\\t\\tcolor: inherit;\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t}\\n\\t}\\n\\n\\t&__title {\\n\\t\\toverflow: hidden;\\n\\t\\tmargin-left: $bubble-padding;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t\\t// Put title in ::before so it is not selectable\\n\\t\\t&::before {\\n\\t\\t\\tcontent: attr(title);\\n\\t\\t}\\n\\t}\\n\\n\\t// Hide the mention id so it is selectable\\n\\t&__select {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: -1;\\n\\t\\tleft: -1000px;\\n\\t}\\n}\\n\\n\"],sourceRoot:\"\"}]);const s=r},7283:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>s});var a=o(7537),n=o.n(a),i=o(3645),r=o.n(i)()(n());r.push([e.id,\".material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}body{--vs-search-input-color: var(--color-main-text);--vs-search-input-bg: var(--color-main-background);--vs-search-input-placeholder-color: var(--color-text-maxcontrast);--vs-font-size: var(--default-font-size);--vs-line-height: var(--default-line-height);--vs-state-disabled-bg: var(--color-background-hover);--vs-state-disabled-color: var(--color-text-maxcontrast);--vs-state-disabled-controls-color: var(--color-text-maxcontrast);--vs-state-disabled-cursor: not-allowed;--vs-disabled-bg: var(--color-background-hover);--vs-disabled-color: var(--color-text-maxcontrast);--vs-disabled-cursor: not-allowed;--vs-border-color: var(--color-border-maxcontrast);--vs-border-width: 2px;--vs-border-style: solid;--vs-border-radius: var(--border-radius-large);--vs-controls-color: var(--color-text-maxcontrast);--vs-selected-bg: var(--color-background-dark);--vs-selected-color: var(--color-main-text);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: var(--color-main-background);--vs-dropdown-color: var(--color-main-text);--vs-dropdown-z-index: 9999;--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);--vs-dropdown-option-padding: 8px 20px;--vs-dropdown-option--active-bg: var(--color-background-hover);--vs-dropdown-option--active-color: var(--color-main-text);--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);--vs-dropdown-option--deselect-bg: var(--color-error);--vs-dropdown-option--deselect-color: #fff;--vs-transition-duration: 0ms}.v-select.select{min-height:44px;min-width:260px;margin:0}.v-select.select .vs__selected{min-height:36px;padding:0 .5em;border-radius:calc(var(--vs-border-radius) - 4px) !important}.v-select.select .vs__clear{margin-right:2px}.v-select.select.vs--open .vs__dropdown-toggle{border-color:var(--color-primary-element);border-bottom-color:rgba(0,0,0,0)}.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:hover{border-color:var(--color-primary-element)}.v-select.select.vs--disabled .vs__search,.v-select.select.vs--disabled .vs__selected{color:var(--color-text-maxcontrast)}.v-select.select.vs--disabled .vs__clear,.v-select.select.vs--disabled .vs__deselect{display:none}.v-select.select--no-wrap .vs__selected-options{flex-wrap:nowrap;overflow:auto;min-width:unset}.v-select.select--no-wrap .vs__selected-options .vs__selected{min-width:unset}.v-select.select--drop-up.vs--open .vs__dropdown-toggle{border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-color:rgba(0,0,0,0);border-bottom-color:var(--color-primary-element)}.v-select.select .vs__selected-options{min-height:40px}.v-select.select .vs__selected-options .vs__selected~.vs__search[readonly]{position:absolute}.v-select.select.vs--single.vs--loading .vs__selected,.v-select.select.vs--single.vs--open .vs__selected{max-width:100%}.v-select.select.vs--single .vs__selected-options{flex-wrap:nowrap}.vs__dropdown-menu{border-color:var(--color-primary-element) !important;padding:4px !important}.vs__dropdown-menu--floating{width:max-content;position:absolute;top:0;left:0}.vs__dropdown-menu--floating-placement-top{border-radius:var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;border-top-style:var(--vs-border-style) !important;border-bottom-style:none !important;box-shadow:0px -1px 1px 0px var(--color-box-shadow) !important}.vs__dropdown-menu .vs__dropdown-option{border-radius:6px !important}.vs__dropdown-menu .vs__no-options{color:var(--color-text-lighter) !important}\",\"\",{version:3,sources:[\"webpack://./src/assets/material-icons.css\",\"webpack://./src/components/NcSelect/NcSelect.vue\",\"webpack://./src/assets/variables.scss\"],names:[],mappings:\"AAGA,sBACC,YAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,sBAAA,CCND,KAOC,+CAAA,CACA,kDAAA,CACA,kEAAA,CAGA,wCAAA,CACA,4CAAA,CAGA,qDAAA,CACA,wDAAA,CACA,iEAAA,CACA,uCAAA,CACA,+CAAA,CACA,kDAAA,CACA,iCAAA,CAGA,kDAAA,CACA,sBAAA,CACA,wBAAA,CACA,8CAAA,CAGA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,kDAAA,CACA,kDAAA,CACA,kDAAA,CAGA,8CAAA,CACA,2CAAA,CACA,2BAAA,CACA,iEAAA,CAGA,sCAAA,CAGA,8DAAA,CACA,0DAAA,CAGA,uFAAA,CAGA,qDAAA,CACA,0CAAA,CAGA,6BAAA,CAGD,iBAEC,eC3CgB,CD4ChB,eAAA,CACA,QAAA,CAEA,+BACC,eAAA,CACA,cAAA,CACA,4DAAA,CAGD,4BACC,gBAAA,CAGD,+CACC,yCAAA,CACA,iCAAA,CAGD,yEACC,yCAAA,CAIA,sFAEC,mCAAA,CAGD,qFAEC,YAAA,CAKD,gDACC,gBAAA,CACA,aAAA,CACA,eAAA,CACA,8DACC,eAAA,CAOD,wDACC,iEAAA,CACA,8BAAA,CACA,gDAAA,CAKH,uCAEC,eAAA,CAGA,2EACC,iBAAA,CAOA,yGAEC,cAAA,CAGF,kDACC,gBAAA,CAKH,mBACC,oDAAA,CACA,sBAAA,CAEA,6BAEC,iBAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CAEA,2CACC,4EAAA,CACA,kDAAA,CACA,mCAAA,CACA,8DAAA,CAIF,wCACC,4BAAA,CAGD,mCACC,0CAAA\",sourcesContent:[\"/*\\n* Ensure proper alignment of the vue material icons\\n*/\\n.material-design-icon {\\n\\tdisplay: flex;\\n\\talign-self: center;\\n\\tjustify-self: center;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n}\\n\",\"@use 'sass:math'; $scope_version:\\\"7f0c9d1\\\"; @import 'variables'; @import 'material-icons';\\n\\nbody {\\n\\t/**\\n\\t * Set custom vue-select CSS variables.\\n\\t * Needs to be on the body (not :root) for theming to apply (see nextcloud/server#36462)\\n\\t */\\n\\n\\t/* Search Input */\\n\\t--vs-search-input-color: var(--color-main-text);\\n\\t--vs-search-input-bg: var(--color-main-background);\\n\\t--vs-search-input-placeholder-color: var(--color-text-maxcontrast);\\n\\n\\t/* Font */\\n\\t--vs-font-size: var(--default-font-size);\\n\\t--vs-line-height: var(--default-line-height);\\n\\n\\t/* Disabled State */\\n\\t--vs-state-disabled-bg: var(--color-background-hover);\\n\\t--vs-state-disabled-color: var(--color-text-maxcontrast);\\n\\t--vs-state-disabled-controls-color: var(--color-text-maxcontrast);\\n\\t--vs-state-disabled-cursor: not-allowed;\\n\\t--vs-disabled-bg: var(--color-background-hover);\\n\\t--vs-disabled-color: var(--color-text-maxcontrast);\\n\\t--vs-disabled-cursor: not-allowed;\\n\\n\\t/* Borders */\\n\\t--vs-border-color: var(--color-border-maxcontrast);\\n\\t--vs-border-width: 2px;\\n\\t--vs-border-style: solid;\\n\\t--vs-border-radius: var(--border-radius-large);\\n\\n\\t/* Component Controls: Clear, Open Indicator */\\n\\t--vs-controls-color: var(--color-text-maxcontrast);\\n\\n\\t/* Selected */\\n\\t--vs-selected-bg: var(--color-background-dark);\\n\\t--vs-selected-color: var(--color-main-text);\\n\\t--vs-selected-border-color: var(--vs-border-color);\\n\\t--vs-selected-border-style: var(--vs-border-style);\\n\\t--vs-selected-border-width: var(--vs-border-width);\\n\\n\\t/* Dropdown */\\n\\t--vs-dropdown-bg: var(--color-main-background);\\n\\t--vs-dropdown-color: var(--color-main-text);\\n\\t--vs-dropdown-z-index: 9999;\\n\\t--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);\\n\\n\\t/* Options */\\n\\t--vs-dropdown-option-padding: 8px 20px;\\n\\n\\t/* Active State */\\n\\t--vs-dropdown-option--active-bg: var(--color-background-hover);\\n\\t--vs-dropdown-option--active-color: var(--color-main-text);\\n\\n\\t/* Keyboard Focus State */\\n\\t--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);\\n\\n\\t/* Deselect State */\\n\\t--vs-dropdown-option--deselect-bg: var(--color-error);\\n\\t--vs-dropdown-option--deselect-color: #fff;\\n\\n\\t/* Transitions */\\n\\t--vs-transition-duration: 0ms;\\n}\\n\\n.v-select.select {\\n\\t/* Override default vue-select styles */\\n\\tmin-height: $clickable-area;\\n\\tmin-width: 260px;\\n\\tmargin: 0;\\n\\n\\t.vs__selected {\\n\\t\\tmin-height: 36px;\\n\\t\\tpadding: 0 0.5em;\\n\\t\\tborder-radius: calc(var(--vs-border-radius) - 4px) !important;\\n\\t}\\n\\n\\t.vs__clear {\\n\\t\\tmargin-right: 2px;\\n\\t}\\n\\n\\t&.vs--open .vs__dropdown-toggle {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t\\tborder-bottom-color: transparent;\\n\\t}\\n\\n\\t&:not(.vs--disabled, .vs--open) .vs__dropdown-toggle:hover {\\n\\t\\tborder-color: var(--color-primary-element);\\n\\t}\\n\\n\\t&.vs--disabled {\\n\\t\\t.vs__search,\\n\\t\\t.vs__selected {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\n\\t\\t.vs__clear,\\n\\t\\t.vs__deselect {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t}\\n\\n\\t&--no-wrap {\\n\\t\\t.vs__selected-options {\\n\\t\\t\\tflex-wrap: nowrap;\\n\\t\\t\\toverflow: auto;\\n\\t\\t\\tmin-width: unset;\\n\\t\\t\\t.vs__selected {\\n\\t\\t\\t\\tmin-width: unset;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&--drop-up {\\n\\t\\t&.vs--open {\\n\\t\\t\\t.vs__dropdown-toggle {\\n\\t\\t\\t\\tborder-radius: 0 0 var(--vs-border-radius) var(--vs-border-radius);\\n\\t\\t\\t\\tborder-top-color: transparent;\\n\\t\\t\\t\\tborder-bottom-color: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t.vs__selected-options {\\n\\t\\t// If search is hidden, ensure that the height of the search is the same\\n\\t\\tmin-height: 40px; // 36px search height + 4px search margin\\n\\n\\t\\t// Hide search from dom if unused to prevent unneeded flex wrap\\n\\t\\t.vs__selected ~ .vs__search[readonly] {\\n\\t\\t\\tposition: absolute;\\n\\t\\t}\\n\\t}\\n\\n\\t&.vs--single {\\n\\t\\t&.vs--loading,\\n\\t\\t&.vs--open {\\n\\t\\t\\t.vs__selected {\\n\\t\\t\\t\\t// Fix `max-width` for `position: absolute`\\n\\t\\t\\t\\tmax-width: 100%;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t.vs__selected-options {\\n\\t\\t\\tflex-wrap: nowrap;\\n\\t\\t}\\n\\t}\\n}\\n\\n.vs__dropdown-menu {\\n\\tborder-color: var(--color-primary-element) !important;\\n\\tpadding: 4px !important;\\n\\n\\t&--floating {\\n\\t\\t/* Fallback styles overidden by programmatically set inline styles */\\n\\t\\twidth: max-content;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\n\\t\\t&-placement-top {\\n\\t\\t\\tborder-radius: var(--vs-border-radius) var(--vs-border-radius) 0 0 !important;\\n\\t\\t\\tborder-top-style: var(--vs-border-style) !important;\\n\\t\\t\\tborder-bottom-style: none !important;\\n\\t\\t\\tbox-shadow: 0px -1px 1px 0px var(--color-box-shadow) !important;\\n\\t\\t}\\n\\t}\\n\\n\\t.vs__dropdown-option {\\n\\t\\tborder-radius: 6px !important;\\n\\t}\\n\\n\\t.vs__no-options {\\n\\t\\tcolor: var(--color-text-lighter) !important;\\n\\t}\\n}\\n\",\"/**\\n * @copyright Copyright (c) 2019 John Molakvoæ \\n *\\n * @author John Molakvoæ \\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 .\\n *\\n */\\n\\n// https://uxplanet.org/7-rules-for-mobile-ui-button-design-e9cf2ea54556\\n// recommended is 48px\\n// 44px is what we choose and have very good visual-to-usability ratio\\n$clickable-area: 44px;\\n\\n// background icon size\\n// also used for the scss icon font\\n$icon-size: 16px;\\n\\n// icon padding for a $clickable-area width and a $icon-size icon\\n// ( 44px - 16px ) / 2\\n$icon-margin: math.div($clickable-area - $icon-size, 2);\\n\\n// transparency background for icons\\n$icon-focus-bg: rgba(127, 127, 127, .25);\\n\\n// popovermenu arrow width from the triangle center\\n$arrow-width: 9px;\\n\\n// opacities\\n$opacity_disabled: .5;\\n$opacity_normal: .7;\\n$opacity_full: 1;\\n\\n// menu round background hover feedback\\n// good looking on dark AND white bg\\n$action-background-hover: rgba(127, 127, 127, .25);\\n\\n// various structure data used in the \\n// `AppNavigation` component\\n$header-height: 50px;\\n$navigation-width: 300px;\\n\\n// mobile breakpoint\\n$breakpoint-mobile: 1024px;\\n\\n// top-bar spacing\\n$topbar-margin: 4px;\\n\\n// navigation spacing\\n$app-navigation-settings-margin: 3px;\\n\"],sourceRoot:\"\"}]);const s=r},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o=\"\",a=void 0!==t[5];return t[4]&&(o+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(o+=\"@media \".concat(t[2],\" {\")),a&&(o+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),o+=e(t),a&&(o+=\"}\"),t[2]&&(o+=\"}\"),t[4]&&(o+=\"}\"),o})).join(\"\")},t.i=function(e,o,a,n,i){\"string\"==typeof e&&(e=[[null,e,void 0]]);var r={};if(a)for(var s=0;s0?\" \".concat(u[5]):\"\",\" {\").concat(u[1],\"}\")),u[5]=i),o&&(u[2]?(u[1]=\"@media \".concat(u[2],\" {\").concat(u[1],\"}\"),u[2]=o):u[2]=o),n&&(u[4]?(u[1]=\"@supports (\".concat(u[4],\") {\").concat(u[1],\"}\"),u[4]=n):u[4]=\"\".concat(n)),t.push(u))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['\"].*['\"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/[\"'() \\t\\n]|(%20)/.test(e)||t.needQuotes?'\"'.concat(e.replace(/\"/g,'\\\\\"').replace(/\\n/g,\"\\\\n\"),'\"'):e):e}},7537:e=>{\"use strict\";e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if(\"function\"==typeof btoa){var a=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(a),i=\"/*# \".concat(n,\" */\");return[t].concat([i]).join(\"\\n\")}return[t].join(\"\\n\")}},3379:e=>{\"use strict\";var t=[];function o(e){for(var o=-1,a=0;a{\"use strict\";var t={};e.exports=function(e,o){var a=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(o)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,o)=>{\"use strict\";e.exports=function(e){var t=o.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var a=\"\";o.supports&&(a+=\"@supports (\".concat(o.supports,\") {\")),o.media&&(a+=\"@media \".concat(o.media,\" {\"));var n=void 0!==o.layer;n&&(a+=\"@layer\".concat(o.layer.length>0?\" \".concat(o.layer):\"\",\" {\")),a+=o.css,n&&(a+=\"}\"),o.media&&(a+=\"}\"),o.supports&&(a+=\"}\");var i=o.sourceMap;i&&\"undefined\"!=typeof btoa&&(a+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),t.styleTagTransform(a,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},3330:(e,t,o)=>{\"use strict\";o.d(t,{Z:()=>y});var a=o(4262);const n={name:\"NcMentionBubble\",props:{id:{type:String,required:!0},title:{type:String,required:!0},icon:{type:String,required:!0},iconUrl:{type:[String,null],default:null},source:{type:String,required:!0},primary:{type:Boolean,default:!1}},computed:{avatarUrl:function(){return this.iconUrl?this.iconUrl:this.id&&\"users\"===this.source?this.getAvatarUrl(this.id,44):null},mentionText:function(){return this.id.includes(\" \")||this.id.includes(\"/\")?'@\"'.concat(this.id,'\"'):\"@\".concat(this.id)}},methods:{getAvatarUrl:function(e,t){return(0,a.generateUrl)(\"/avatar/{user}/{size}\",{user:e,size:t})}}};var i=o(3379),r=o.n(i),s=o(7795),l=o.n(s),c=o(569),u=o.n(c),d=o(3565),m=o.n(d),p=o(9216),h=o.n(p),g=o(4589),v=o.n(g),f=o(6466),A={};A.styleTagTransform=v(),A.setAttributes=m(),A.insert=u().bind(null,\"head\"),A.domAPI=l(),A.insertStyleElement=h();r()(f.Z,A);f.Z&&f.Z.locals&&f.Z.locals;const y=(0,o(1900).Z)(n,(function(){var e=this,t=e._self._c;return t(\"span\",{staticClass:\"mention-bubble\",class:{\"mention-bubble--primary\":e.primary},attrs:{contenteditable:\"false\"}},[t(\"span\",{staticClass:\"mention-bubble__wrapper\"},[t(\"span\",{staticClass:\"mention-bubble__content\"},[t(\"span\",{staticClass:\"mention-bubble__icon\",class:[e.icon,\"mention-bubble__icon--\".concat(e.avatarUrl?\"with-avatar\":\"\")],style:e.avatarUrl?{backgroundImage:\"url(\".concat(e.avatarUrl,\")\")}:null}),e._v(\" \"),t(\"span\",{staticClass:\"mention-bubble__title\",attrs:{role:\"heading\",title:e.title}})]),e._v(\" \"),t(\"span\",{staticClass:\"mention-bubble__select\",attrs:{role:\"none\"}},[e._v(e._s(e.mentionText))])])])}),[],!1,null,\"7dba3f6e\",null).exports},9158:()=>{},5727:()=>{},3051:()=>{},2102:()=>{},6274:()=>{},1287:()=>{},8488:()=>{},9280:()=>{},2405:()=>{},8220:()=>{},4076:()=>{},1900:(e,t,o)=>{\"use strict\";function a(e,t,o,a,n,i,r,s){var l,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=o,c._compiled=!0),a&&(c.functional=!0),i&&(c._scopeId=\"data-v-\"+i),r?(l=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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=s?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}o.d(t,{Z:()=>a})},7127:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS00LTRoMjR2MjRILTR6Ii8+PHBhdGggZD0iTTYuOS4xQzMgLjYtLjEgNC0uMSA4YzAgNC40IDMuNiA4IDggOCA0IDAgNy40LTMgOC02LjktMS4yIDEuMy0yLjkgMi4xLTQuNyAyLjEtMy41IDAtNi40LTIuOS02LjQtNi40IDAtMS45LjgtMy42IDIuMS00Ljd6IiBmaWxsPSIjZjRhMzMxIi8+PC9zdmc+Cg==\"},2605:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTS00LTRoMjR2MjRILTRWLTR6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhzMy42IDggOCA4IDgtMy42IDgtOC0zLjYtOC04LTh6IiBmaWxsPSIjZWQ0ODRjIi8+PHBhdGggZD0iTTUgNi41aDZjLjggMCAxLjUuNyAxLjUgMS41cy0uNyAxLjUtMS41IDEuNUg1Yy0uOCAwLTEuNS0uNy0xLjUtMS41UzQuMiA2LjUgNSA2LjV6IiBmaWxsPSIjZmRmZmZmIi8+PC9zdmc+Cg==\"},3423:e=>{\"use strict\";e.exports=\"data:image/svg+xml;base64,PCEtLSBUaGlzIGljb24gaXMgcGFydCBvZiBNYXRlcmlhbCBVSSBJY29ucy4gQ29weXJpZ2h0IDIwMjAgR29vZ2xlIEluYy4sIEFwYWNoZS0yLjAgTGljZW5zZSAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTQuOCAxMS4yaDYuNFY0LjhINC44djYuNHpNOCAwQzMuNiAwIDAgMy42IDAgOHMzLjYgOCA4IDggOC0zLjYgOC04LTMuNi04LTgtOHoiIGZpbGw9IiM0OWIzODIiLz48L3N2Zz4K\"},3607:e=>{\"use strict\";e.exports=require(\"@nextcloud/auth\")},768:e=>{\"use strict\";e.exports=require(\"@nextcloud/axios\")},7713:e=>{\"use strict\";e.exports=require(\"@nextcloud/capabilities\")},542:e=>{\"use strict\";e.exports=require(\"@nextcloud/event-bus\")},7931:e=>{\"use strict\";e.exports=require(\"@nextcloud/l10n/gettext\")},4262:e=>{\"use strict\";e.exports=require(\"@nextcloud/router\")},9454:e=>{\"use strict\";e.exports=require(\"floating-vue\")},4505:e=>{\"use strict\";e.exports=require(\"focus-trap\")},2734:e=>{\"use strict\";e.exports=require(\"vue\")},8618:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/Close.vue\")},1441:e=>{\"use strict\";e.exports=require(\"vue-material-design-icons/DotsHorizontal.vue\")}},t={};function o(a){var n=t[a];if(void 0!==n)return n.exports;var i=t[a]={id:a,exports:{}};return e[a](i,i.exports,o),i.exports}o.m=e,o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},o.b=document.baseURI||self.location.href,o.nc=void 0;var a={};return(()=>{\"use strict\";function e(t){return e=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},e(t)}function t(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function n(e){for(var o=1;oB});var r=o(4378),s=o(7176),l=o(768),c=o.n(l),u=o(4262);function d(e){return d=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},d(e)}function m(){m=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof h?t:h,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var p={};function h(){}function g(){}function v(){}var f={};l(f,i,(function(){return this}));var A=Object.getPrototypeOf,y=A&&A(A(j([])));y&&y!==t&&o.call(y,i)&&(f=y);var k=v.prototype=h.prototype=Object.create(f);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,m=c.value;return m&&\"object\"==d(m)&&o.call(m,\"__await\")?t.resolve(m.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(m).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===p)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===p)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),p;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,p;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,p):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,p)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),p}},e}function p(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}var h=function e(t){var o={};if(1===t.nodeType){if(t.attributes.length>0){o[\"@attributes\"]={};for(var a=0;a\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t'});case 4:return t=e.sent,e.abrupt(\"return\",g(t.data));case 6:case\"end\":return e.stop()}}),e)})),function(){var t=this,o=arguments;return new Promise((function(a,n){var i=e.apply(t,o);function r(e){p(i,a,n,r,s,\"next\",e)}function s(e){p(i,a,n,r,s,\"throw\",e)}r(void 0)}))});return function(){return t.apply(this,arguments)}}(),f=o(932),A=[\"fetchTags\",\"optionsFilter\",\"passthru\"];function y(e){return y=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},y(e)}function k(){k=function(){return e};var e={},t=Object.prototype,o=t.hasOwnProperty,a=Object.defineProperty||function(e,t,o){e[t]=o.value},n=\"function\"==typeof Symbol?Symbol:{},i=n.iterator||\"@@iterator\",r=n.asyncIterator||\"@@asyncIterator\",s=n.toStringTag||\"@@toStringTag\";function l(e,t,o){return Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},\"\")}catch(e){l=function(e,t,o){return e[t]=o}}function c(e,t,o,n){var i=t&&t.prototype instanceof m?t:m,r=Object.create(i.prototype),s=new x(n||[]);return a(r,\"_invoke\",{value:w(e,o,s)}),r}function u(e,t,o){try{return{type:\"normal\",arg:e.call(t,o)}}catch(e){return{type:\"throw\",arg:e}}}e.wrap=c;var d={};function m(){}function p(){}function h(){}var g={};l(g,i,(function(){return this}));var v=Object.getPrototypeOf,f=v&&v(v(j([])));f&&f!==t&&o.call(f,i)&&(g=f);var A=h.prototype=m.prototype=Object.create(g);function C(e){[\"next\",\"throw\",\"return\"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function n(a,i,r,s){var l=u(e[a],e,i);if(\"throw\"!==l.type){var c=l.arg,d=c.value;return d&&\"object\"==y(d)&&o.call(d,\"__await\")?t.resolve(d.__await).then((function(e){n(\"next\",e,r,s)}),(function(e){n(\"throw\",e,r,s)})):t.resolve(d).then((function(e){c.value=e,r(c)}),(function(e){return n(\"throw\",e,r,s)}))}s(l.arg)}var i;a(this,\"_invoke\",{value:function(e,o){function a(){return new t((function(t,a){n(e,o,t,a)}))}return i=i?i.then(a,a):a()}})}function w(e,t,o){var a=\"suspendedStart\";return function(n,i){if(\"executing\"===a)throw new Error(\"Generator is already running\");if(\"completed\"===a){if(\"throw\"===n)throw i;return O()}for(o.method=n,o.arg=i;;){var r=o.delegate;if(r){var s=S(r,o);if(s){if(s===d)continue;return s}}if(\"next\"===o.method)o.sent=o._sent=o.arg;else if(\"throw\"===o.method){if(\"suspendedStart\"===a)throw a=\"completed\",o.arg;o.dispatchException(o.arg)}else\"return\"===o.method&&o.abrupt(\"return\",o.arg);a=\"executing\";var l=u(e,t,o);if(\"normal\"===l.type){if(a=o.done?\"completed\":\"suspendedYield\",l.arg===d)continue;return{value:l.arg,done:o.done}}\"throw\"===l.type&&(a=\"completed\",o.method=\"throw\",o.arg=l.arg)}}}function S(e,t){var o=t.method,a=e.iterator[o];if(void 0===a)return t.delegate=null,\"throw\"===o&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,S(e,t),\"throw\"===t.method)||\"return\"!==o&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+o+\"' method\")),d;var n=u(a,e.iterator,t.arg);if(\"throw\"===n.type)return t.method=\"throw\",t.arg=n.arg,t.delegate=null,d;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,d):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,d)}function P(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(P,this),this.reset(!0)}function j(e){if(e){var t=e[i];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var a=-1,n=function t(){for(;++a=0;--n){var i=this.tryEntries[n],r=i.completion;if(\"root\"===i.tryLoc)return a(\"end\");if(i.tryLoc<=this.prev){var s=o.call(i,\"catchLoc\"),l=o.call(i,\"finallyLoc\");if(s&&l){if(this.prev=0;--a){var n=this.tryEntries[a];if(n.tryLoc<=this.prev&&o.call(n,\"finallyLoc\")&&this.prev=0;--t){var o=this.tryEntries[t];if(o.finallyLoc===e)return this.complete(o.completion,o.afterLoc),N(o),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var o=this.tryEntries[t];if(o.tryLoc===e){var a=o.completion;if(\"throw\"===a.type){var n=a.arg;N(o)}return n}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,o){return this.delegate={iterator:j(e),resultName:t,nextLoc:o},\"next\"===this.method&&(this.arg=void 0),d}},e}function C(e,t,o,a,n,i,r){try{var s=e[i](r),l=s.value}catch(e){return void o(e)}s.done?t(l):Promise.resolve(l).then(a,n)}function b(e,t){if(null==e)return{};var o,a,n=function(e,t){if(null==e)return{};var o,a,n={},i=Object.keys(e);for(a=0;a=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,a)}return o}function S(e){for(var t=1;t\n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport axios from '@nextcloud/axios'\nimport { davGetDefaultPropfind } from '@nextcloud/files'\n\n/**\n * @param {any} url -\n */\nexport default async function(url) {\n\tconst response = await axios({\n\t\tmethod: 'PROPFIND',\n\t\turl,\n\t\tdata: davGetDefaultPropfind(),\n\t})\n\n\t// TODO: create new parser or use cdav-lib when available\n\tconst file = OCA.Files.App.fileList.filesClient._client.parseMultiStatus(response.data)\n\t// TODO: create new parser or use cdav-lib when available\n\tconst fileInfo = OCA.Files.App.fileList.filesClient._parseFileInfo(file[0])\n\n\t// TODO remove when no more legacy backbone is used\n\tfileInfo.get = (key) => fileInfo[key]\n\tfileInfo.isDirectory = () => fileInfo.mimetype === 'httpd/unix-directory'\n\n\treturn fileInfo\n}\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./LegacyView.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./LegacyView.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","import { render, staticRenderFns } from \"./LegacyView.vue?vue&type=template&id=2245cbe7&\"\nimport script from \"./LegacyView.vue?vue&type=script&lang=js&\"\nexport * from \"./LegacyView.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\nexport default component.exports","\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SidebarTab.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SidebarTab.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SidebarTab.vue?vue&type=template&id=164a4bde&\"\nimport script from \"./SidebarTab.vue?vue&type=script&lang=js&\"\nexport * from \"./SidebarTab.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\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSidebarTab',{ref:\"tab\",attrs:{\"id\":_vm.id,\"name\":_vm.name,\"icon\":_vm.icon},on:{\"bottomReached\":_vm.onScrollBottomReached},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_vm._t(\"icon\")]},proxy:true}],null,true)},[_vm._v(\" \"),(_vm.loading)?_c('NcEmptyContent',{attrs:{\"icon\":\"icon-loading\"}}):_vm._e(),_vm._v(\" \"),_c('div',{ref:\"mount\"})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { createClient } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getRequestToken } from '@nextcloud/auth';\nconst rootUrl = generateRemoteUrl('dav');\nexport const davClient = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() ?? '',\n },\n});\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport camelCase from 'camelcase';\nexport const parseTags = (tags) => {\n return tags.map(({ props }) => Object.fromEntries(Object.entries(props)\n .map(([key, value]) => [camelCase(key), value])));\n};\n/**\n * Parse id from `Content-Location` header\n */\nexport const parseIdFromLocation = (url) => {\n const queryPos = url.indexOf('?');\n if (queryPos > 0) {\n url = url.substring(0, queryPos);\n }\n const parts = url.split('/');\n let result;\n do {\n result = parts[parts.length - 1];\n parts.pop();\n // note: first result can be empty when there is a trailing slash,\n // so we take the part before that\n } while (!result && parts.length > 0);\n return Number(result);\n};\nexport const formatTag = (initialTag) => {\n const tag = { ...initialTag };\n if (tag.name && !tag.displayName) {\n return tag;\n }\n tag.name = tag.displayName;\n delete tag.displayName;\n return tag;\n};\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger';\nexport const logger = getLoggerBuilder()\n .setApp('systemtags')\n .detectUser()\n .build();\n","import axios from '@nextcloud/axios';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { davClient } from './davClient.js';\nimport { formatTag, parseIdFromLocation, parseTags } from '../utils';\nimport { logger } from '../logger.js';\nconst fetchTagsBody = `\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n`;\nexport const fetchTags = async () => {\n const path = '/systemtags';\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load tags'), { error });\n throw new Error(t('systemtags', 'Failed to load tags'));\n }\n};\nexport const fetchLastUsedTagIds = async () => {\n const url = generateUrl('/apps/systemtags/lastused');\n try {\n const { data: lastUsedTagIds } = await axios.get(url);\n return lastUsedTagIds.map(Number);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load last used tags'), { error });\n throw new Error(t('systemtags', 'Failed to load last used tags'));\n }\n};\nexport const fetchSelectedTags = async (fileId) => {\n const path = '/systemtags-relations/files/' + fileId;\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags-relations/files/*/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load selected tags'), { error });\n throw new Error(t('systemtags', 'Failed to load selected tags'));\n }\n};\nexport const selectTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n const tagToPut = formatTag(tag);\n try {\n await davClient.customRequest(path, {\n method: 'PUT',\n data: tagToPut,\n });\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to select tag'), { error });\n throw new Error(t('systemtags', 'Failed to select tag'));\n }\n};\n/**\n * @return created tag id\n */\nexport const createTag = async (fileId, tag) => {\n const path = '/systemtags';\n const tagToPost = formatTag(tag);\n try {\n const { headers } = await davClient.customRequest(path, {\n method: 'POST',\n data: tagToPost,\n });\n const contentLocation = headers.get('content-location');\n if (contentLocation) {\n const tagToPut = {\n ...tagToPost,\n id: parseIdFromLocation(contentLocation),\n };\n await selectTag(fileId, tagToPut);\n return tagToPut.id;\n }\n logger.error(t('systemtags', 'Missing \"Content-Location\" header'));\n throw new Error(t('systemtags', 'Missing \"Content-Location\" header'));\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to create tag'), { error });\n throw new Error(t('systemtags', 'Failed to create tag'));\n }\n};\nexport const deleteTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n try {\n await davClient.deleteFile(path);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to delete tag'), { error });\n throw new Error(t('systemtags', 'Failed to delete tag'));\n }\n};\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"system-tags\"},[(_vm.loadingTags)?_c('NcLoadingIcon',{attrs:{\"name\":_vm.t('systemtags', 'Loading collaborative tags …'),\"size\":32}}):[_c('label',{attrs:{\"for\":\"system-tags-input\"}},[_vm._v(_vm._s(_vm.t('systemtags', 'Search or create collaborative tags')))]),_vm._v(\" \"),_c('NcSelectTags',{staticClass:\"system-tags__select\",attrs:{\"input-id\":\"system-tags-input\",\"placeholder\":_vm.t('systemtags', 'Collaborative tags …'),\"options\":_vm.sortedTags,\"value\":_vm.selectedTags,\"create-option\":_vm.createOption,\"taggable\":true,\"passthru\":true,\"fetch-tags\":false,\"loading\":_vm.loading},on:{\"input\":_vm.handleInput,\"option:selected\":_vm.handleSelect,\"option:created\":_vm.handleCreate,\"option:deselected\":_vm.handleDeselect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('systemtags', 'No tags to select, type to create a new tag'))+\"\\n\\t\\t\\t\")]},proxy:true}])})]],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=script&lang=ts&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./SystemTags.vue?vue&type=template&id=7746ac6e&scoped=true&\"\nimport script from \"./SystemTags.vue?vue&type=script&lang=ts&\"\nexport * from \"./SystemTags.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./SystemTags.vue?vue&type=style&index=0&id=7746ac6e&prod&lang=scss&scoped=true&\"\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 \"7746ac6e\",\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=script&lang=js&\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=style&index=0&id=3af76862&prod&lang=scss&scoped=true&\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sidebar.vue?vue&type=style&index=0&id=3af76862&prod&lang=scss&scoped=true&\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Sidebar.vue?vue&type=template&id=3af76862&scoped=true&\"\nimport script from \"./Sidebar.vue?vue&type=script&lang=js&\"\nexport * from \"./Sidebar.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Sidebar.vue?vue&type=style&index=0&id=3af76862&prod&lang=scss&scoped=true&\"\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 \"3af76862\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.file)?_c('NcAppSidebar',_vm._b({ref:\"sidebar\",attrs:{\"force-menu\":true,\"tabindex\":\"0\"},on:_vm._d({\"close\":_vm.close,\"update:active\":_vm.setActiveTab,\"update:starred\":_vm.toggleStarred,\"opening\":_vm.handleOpening,\"opened\":_vm.handleOpened,\"closing\":_vm.handleClosing,\"closed\":_vm.handleClosed},[_vm.defaultActionListener,function($event){$event.stopPropagation();$event.preventDefault();return _vm.onDefaultAction.apply(null, arguments)}]),scopedSlots:_vm._u([(_vm.fileInfo)?{key:\"description\",fn:function(){return [_c('div',{staticClass:\"sidebar__description\"},[(_vm.isSystemTagsEnabled)?_c('SystemTags',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.showTags),expression:\"showTags\"}],attrs:{\"file-id\":_vm.fileInfo.id},on:{\"has-tags\":value => _vm.showTags = value}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.views),function(view){return _c('LegacyView',{key:view.cid,attrs:{\"component\":view,\"file-info\":_vm.fileInfo}})})],2)]},proxy:true}:null,(_vm.fileInfo)?{key:\"secondary-actions\",fn:function(){return [(_vm.isSystemTagsEnabled)?_c('NcActionButton',{attrs:{\"close-after-click\":true,\"icon\":\"icon-tag\"},on:{\"click\":_vm.toggleTags}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Tags'))+\"\\n\\t\\t\")]):_vm._e()]},proxy:true}:null],null,true)},'NcAppSidebar',_vm.appSidebar,false),[_vm._v(\" \"),_vm._v(\" \"),(_vm.error)?_c('NcEmptyContent',{attrs:{\"icon\":\"icon-error\"}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.error)+\"\\n\\t\")]):(_vm.fileInfo)?_vm._l((_vm.tabs),function(tab){return [(tab.enabled(_vm.fileInfo))?_c('SidebarTab',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.loading),expression:\"!loading\"}],key:tab.id,attrs:{\"id\":tab.id,\"name\":tab.name,\"icon\":tab.icon,\"on-mount\":tab.mount,\"on-update\":tab.update,\"on-destroy\":tab.destroy,\"on-scroll-bottom-reached\":tab.scrollBottomReached,\"file-info\":_vm.fileInfo},scopedSlots:_vm._u([(tab.iconSvg !== undefined)?{key:\"icon\",fn:function(){return [_c('span',{staticClass:\"svg-icon\",domProps:{\"innerHTML\":_vm._s(tab.iconSvg)}})]},proxy:true}:null],null,true)}):_vm._e()]}):_vm._e()],2):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nexport default class Sidebar {\n\n\t_state\n\n\tconstructor() {\n\t\t// init empty state\n\t\tthis._state = {}\n\n\t\t// init default values\n\t\tthis._state.tabs = []\n\t\tthis._state.views = []\n\t\tthis._state.file = ''\n\t\tthis._state.activeTab = ''\n\t\tconsole.debug('OCA.Files.Sidebar initialized')\n\t}\n\n\t/**\n\t * Get the sidebar state\n\t *\n\t * @readonly\n\t * @memberof Sidebar\n\t * @return {object} the data state\n\t */\n\tget state() {\n\t\treturn this._state\n\t}\n\n\t/**\n\t * Register a new tab view\n\t *\n\t * @memberof Sidebar\n\t * @param {object} tab a new unregistered tab\n\t * @return {boolean}\n\t */\n\tregisterTab(tab) {\n\t\tconst hasDuplicate = this._state.tabs.findIndex(check => check.id === tab.id) > -1\n\t\tif (!hasDuplicate) {\n\t\t\tthis._state.tabs.push(tab)\n\t\t\treturn true\n\t\t}\n\t\tconsole.error(`An tab with the same id ${tab.id} already exists`, tab)\n\t\treturn false\n\t}\n\n\tregisterSecondaryView(view) {\n\t\tconst hasDuplicate = this._state.views.findIndex(check => check.id === view.id) > -1\n\t\tif (!hasDuplicate) {\n\t\t\tthis._state.views.push(view)\n\t\t\treturn true\n\t\t}\n\t\tconsole.error('A similar view already exists', view)\n\t\treturn false\n\t}\n\n\t/**\n\t * Return current opened file\n\t *\n\t * @memberof Sidebar\n\t * @return {string} the current opened file\n\t */\n\tget file() {\n\t\treturn this._state.file\n\t}\n\n\t/**\n\t * Set the current visible sidebar tab\n\t *\n\t * @memberof Sidebar\n\t * @param {string} id the tab unique id\n\t */\n\tsetActiveTab(id) {\n\t\tthis._state.activeTab = id\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { sanitizeSVG } from '@skjnldsv/sanitize-svg'\n\nexport default class Tab {\n\n\t_id\n\t_name\n\t_icon\n\t_iconSvgSanitized\n\t_mount\n\t_setIsActive\n\t_update\n\t_destroy\n\t_enabled\n\t_scrollBottomReached\n\n\t/**\n\t * Create a new tab instance\n\t *\n\t * @param {object} options destructuring object\n\t * @param {string} options.id the unique id of this tab\n\t * @param {string} options.name the translated tab name\n\t * @param {?string} options.icon the icon css class\n\t * @param {?string} options.iconSvg the icon in svg format\n\t * @param {Function} options.mount function to mount the tab\n\t * @param {Function} [options.setIsActive] function to forward the active state of the tab\n\t * @param {Function} options.update function to update the tab\n\t * @param {Function} options.destroy function to destroy the tab\n\t * @param {Function} [options.enabled] define conditions whether this tab is active. Must returns a boolean\n\t * @param {Function} [options.scrollBottomReached] executed when the tab is scrolled to the bottom\n\t */\n\tconstructor({ id, name, icon, iconSvg, mount, setIsActive, update, destroy, enabled, scrollBottomReached } = {}) {\n\t\tif (enabled === undefined) {\n\t\t\tenabled = () => true\n\t\t}\n\t\tif (scrollBottomReached === undefined) {\n\t\t\tscrollBottomReached = () => { }\n\t\t}\n\n\t\t// Sanity checks\n\t\tif (typeof id !== 'string' || id.trim() === '') {\n\t\t\tthrow new Error('The id argument is not a valid string')\n\t\t}\n\t\tif (typeof name !== 'string' || name.trim() === '') {\n\t\t\tthrow new Error('The name argument is not a valid string')\n\t\t}\n\t\tif ((typeof icon !== 'string' || icon.trim() === '') && typeof iconSvg !== 'string') {\n\t\t\tthrow new Error('Missing valid string for icon or iconSvg argument')\n\t\t}\n\t\tif (typeof mount !== 'function') {\n\t\t\tthrow new Error('The mount argument should be a function')\n\t\t}\n\t\tif (setIsActive !== undefined && typeof setIsActive !== 'function') {\n\t\t\tthrow new Error('The setIsActive argument should be a function')\n\t\t}\n\t\tif (typeof update !== 'function') {\n\t\t\tthrow new Error('The update argument should be a function')\n\t\t}\n\t\tif (typeof destroy !== 'function') {\n\t\t\tthrow new Error('The destroy argument should be a function')\n\t\t}\n\t\tif (typeof enabled !== 'function') {\n\t\t\tthrow new Error('The enabled argument should be a function')\n\t\t}\n\t\tif (typeof scrollBottomReached !== 'function') {\n\t\t\tthrow new Error('The scrollBottomReached argument should be a function')\n\t\t}\n\n\t\tthis._id = id\n\t\tthis._name = name\n\t\tthis._icon = icon\n\t\tthis._mount = mount\n\t\tthis._setIsActive = setIsActive\n\t\tthis._update = update\n\t\tthis._destroy = destroy\n\t\tthis._enabled = enabled\n\t\tthis._scrollBottomReached = scrollBottomReached\n\n\t\tif (typeof iconSvg === 'string') {\n\t\t\tsanitizeSVG(iconSvg)\n\t\t\t\t.then(sanitizedSvg => {\n\t\t\t\t\tthis._iconSvgSanitized = sanitizedSvg\n\t\t\t\t})\n\t\t}\n\n\t}\n\n\tget id() {\n\t\treturn this._id\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget icon() {\n\t\treturn this._icon\n\t}\n\n\tget iconSvg() {\n\t\treturn this._iconSvgSanitized\n\t}\n\n\tget mount() {\n\t\treturn this._mount\n\t}\n\n\tget setIsActive() {\n\t\treturn this._setIsActive || (() => undefined)\n\t}\n\n\tget update() {\n\t\treturn this._update\n\t}\n\n\tget destroy() {\n\t\treturn this._destroy\n\t}\n\n\tget enabled() {\n\t\treturn this._enabled\n\t}\n\n\tget scrollBottomReached() {\n\t\treturn this._scrollBottomReached\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\nimport Vue from 'vue'\nimport { translate as t } from '@nextcloud/l10n'\n\nimport SidebarView from './views/Sidebar.vue'\nimport Sidebar from './services/Sidebar.js'\nimport Tab from './models/Tab.js'\n\nVue.prototype.t = t\n\n// Init Sidebar Service\nif (!window.OCA.Files) {\n\twindow.OCA.Files = {}\n}\nObject.assign(window.OCA.Files, { Sidebar: new Sidebar() })\nObject.assign(window.OCA.Files.Sidebar, { Tab })\n\nconsole.debug('OCA.Files.Sidebar initialized')\n\nwindow.addEventListener('DOMContentLoaded', function() {\n\tconst contentElement = document.querySelector('body > .content')\n\t\t|| document.querySelector('body > #content')\n\n\t// Make sure we have a proper layout\n\tif (contentElement) {\n\t\t// Make sure we have a mountpoint\n\t\tif (!document.getElementById('app-sidebar')) {\n\t\t\tconst sidebarElement = document.createElement('div')\n\t\t\tsidebarElement.id = 'app-sidebar'\n\t\t\tcontentElement.appendChild(sidebarElement)\n\t\t}\n\t}\n\n\t// Init vue app\n\tconst View = Vue.extend(SidebarView)\n\tconst AppSidebar = new View({\n\t\tname: 'SidebarRoot',\n\t})\n\tAppSidebar.$mount('#app-sidebar')\n\twindow.OCA.Files.Sidebar.open = AppSidebar.open\n\twindow.OCA.Files.Sidebar.close = AppSidebar.close\n\twindow.OCA.Files.Sidebar.setFullScreenMode = AppSidebar.setFullScreenMode\n})\n","'use strict';\n\nconst UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\n\tfor (let i = 0; i < string.length; i++) {\n\t\tconst character = string[i];\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i) + '-' + string.slice(i);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\ti++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i - 1) + '-' + string.slice(i - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replace(LEADING_CAPITAL, m1 => toLowerCase(m1));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input.replace(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier))\n\t\t.replace(NUMBERS_AND_IDENTIFIER, m => toUpperCase(m));\n};\n\nconst camelCase = (input, options) => {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false ?\n\t\tstring => string.toLowerCase() :\n\t\tstring => string.toLocaleLowerCase(options.locale);\n\tconst toUpperCase = options.locale === false ?\n\t\tstring => string.toUpperCase() :\n\t\tstring => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\n\tif (options.preserveConsecutiveUppercase) {\n\t\tinput = preserveConsecutiveUppercase(input, toLowerCase);\n\t} else {\n\t\tinput = toLowerCase(input);\n\t}\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n};\n\nmodule.exports = camelCase;\n// TODO: Remove this for the next major release\nmodule.exports.default = camelCase;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".app-sidebar--has-preview[data-v-3af76862] .app-sidebar-header__figure{background-size:cover}.app-sidebar--has-preview[data-v-3af76862][data-mimetype=\\\"text/plain\\\"] .app-sidebar-header__figure,.app-sidebar--has-preview[data-v-3af76862][data-mimetype=\\\"text/markdown\\\"] .app-sidebar-header__figure{background-size:contain}.app-sidebar--full[data-v-3af76862]{position:fixed !important;z-index:2025 !important;top:0 !important;height:100% !important}.app-sidebar[data-v-3af76862] .app-sidebar-header__description{margin:0 16px 4px 16px !important}.app-sidebar .svg-icon[data-v-3af76862] svg{width:20px;height:20px;fill:currentColor}.sidebar__description[data-v-3af76862]{display:flex;flex-direction:column;width:100%;gap:8px 0}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Sidebar.vue\"],\"names\":[],\"mappings\":\"AAGE,uEACC,qBAAA,CAKA,yMACC,uBAAA,CAKH,oCACC,yBAAA,CACA,uBAAA,CACA,gBAAA,CACA,sBAAA,CAIA,+DACC,iCAAA,CAKD,4CACC,UAAA,CACA,WAAA,CACA,iBAAA,CAKH,uCACC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,SAAA\",\"sourcesContent\":[\"\\n.app-sidebar {\\n\\t&--has-preview:deep {\\n\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t}\\n\\n\\t\\t&[data-mimetype=\\\"text/plain\\\"],\\n\\t\\t&[data-mimetype=\\\"text/markdown\\\"] {\\n\\t\\t\\t.app-sidebar-header__figure {\\n\\t\\t\\t\\tbackground-size: contain;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&--full {\\n\\t\\tposition: fixed !important;\\n\\t\\tz-index: 2025 !important;\\n\\t\\ttop: 0 !important;\\n\\t\\theight: 100% !important;\\n\\t}\\n\\n\\t:deep {\\n\\t\\t.app-sidebar-header__description {\\n\\t\\t\\tmargin: 0 16px 4px 16px !important;\\n\\t\\t}\\n\\t}\\n\\n\\t.svg-icon {\\n\\t\\t::v-deep svg {\\n\\t\\t\\twidth: 20px;\\n\\t\\t\\theight: 20px;\\n\\t\\t\\tfill: currentColor;\\n\\t\\t}\\n\\t}\\n}\\n\\n.sidebar__description {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\twidth: 100%;\\n\\tgap: 8px 0;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".system-tags[data-v-7746ac6e]{display:flex;flex-direction:column}.system-tags label[for=system-tags-input][data-v-7746ac6e]{margin-bottom:2px}.system-tags__select[data-v-7746ac6e]{width:100%}.system-tags__select[data-v-7746ac6e] .vs__deselect{padding:0}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/systemtags/src/components/SystemTags.vue\"],\"names\":[],\"mappings\":\"AACA,8BACC,YAAA,CACA,qBAAA,CAEA,2DACC,iBAAA,CAGD,sCACC,UAAA,CAEC,oDACC,SAAA\",\"sourcesContent\":[\"\\n.system-tags {\\n\\tdisplay: flex;\\n\\tflex-direction: column;\\n\\n\\tlabel[for=\\\"system-tags-input\\\"] {\\n\\t\\tmargin-bottom: 2px;\\n\\t}\\n\\n\\t&__select {\\n\\t\\twidth: 100%;\\n\\t\\t:deep {\\n\\t\\t\\t.vs__deselect {\\n\\t\\t\\t\\tpadding: 0;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","var map = {\n\t\"./af\": 42786,\n\t\"./af.js\": 42786,\n\t\"./ar\": 30867,\n\t\"./ar-dz\": 14130,\n\t\"./ar-dz.js\": 14130,\n\t\"./ar-kw\": 96135,\n\t\"./ar-kw.js\": 96135,\n\t\"./ar-ly\": 56440,\n\t\"./ar-ly.js\": 56440,\n\t\"./ar-ma\": 47702,\n\t\"./ar-ma.js\": 47702,\n\t\"./ar-sa\": 16040,\n\t\"./ar-sa.js\": 16040,\n\t\"./ar-tn\": 37100,\n\t\"./ar-tn.js\": 37100,\n\t\"./ar.js\": 30867,\n\t\"./az\": 31083,\n\t\"./az.js\": 31083,\n\t\"./be\": 9808,\n\t\"./be.js\": 9808,\n\t\"./bg\": 68338,\n\t\"./bg.js\": 68338,\n\t\"./bm\": 67438,\n\t\"./bm.js\": 67438,\n\t\"./bn\": 8905,\n\t\"./bn-bd\": 76225,\n\t\"./bn-bd.js\": 76225,\n\t\"./bn.js\": 8905,\n\t\"./bo\": 11560,\n\t\"./bo.js\": 11560,\n\t\"./br\": 1278,\n\t\"./br.js\": 1278,\n\t\"./bs\": 80622,\n\t\"./bs.js\": 80622,\n\t\"./ca\": 2468,\n\t\"./ca.js\": 2468,\n\t\"./cs\": 5822,\n\t\"./cs.js\": 5822,\n\t\"./cv\": 50877,\n\t\"./cv.js\": 50877,\n\t\"./cy\": 47373,\n\t\"./cy.js\": 47373,\n\t\"./da\": 24780,\n\t\"./da.js\": 24780,\n\t\"./de\": 59740,\n\t\"./de-at\": 60217,\n\t\"./de-at.js\": 60217,\n\t\"./de-ch\": 60894,\n\t\"./de-ch.js\": 60894,\n\t\"./de.js\": 59740,\n\t\"./dv\": 5300,\n\t\"./dv.js\": 5300,\n\t\"./el\": 50837,\n\t\"./el.js\": 50837,\n\t\"./en-au\": 78348,\n\t\"./en-au.js\": 78348,\n\t\"./en-ca\": 77925,\n\t\"./en-ca.js\": 77925,\n\t\"./en-gb\": 22243,\n\t\"./en-gb.js\": 22243,\n\t\"./en-ie\": 46436,\n\t\"./en-ie.js\": 46436,\n\t\"./en-il\": 47207,\n\t\"./en-il.js\": 47207,\n\t\"./en-in\": 44175,\n\t\"./en-in.js\": 44175,\n\t\"./en-nz\": 76319,\n\t\"./en-nz.js\": 76319,\n\t\"./en-sg\": 31662,\n\t\"./en-sg.js\": 31662,\n\t\"./eo\": 92915,\n\t\"./eo.js\": 92915,\n\t\"./es\": 55655,\n\t\"./es-do\": 55251,\n\t\"./es-do.js\": 55251,\n\t\"./es-mx\": 96112,\n\t\"./es-mx.js\": 96112,\n\t\"./es-us\": 71146,\n\t\"./es-us.js\": 71146,\n\t\"./es.js\": 55655,\n\t\"./et\": 5603,\n\t\"./et.js\": 5603,\n\t\"./eu\": 77763,\n\t\"./eu.js\": 77763,\n\t\"./fa\": 76959,\n\t\"./fa.js\": 76959,\n\t\"./fi\": 11897,\n\t\"./fi.js\": 11897,\n\t\"./fil\": 42549,\n\t\"./fil.js\": 42549,\n\t\"./fo\": 94694,\n\t\"./fo.js\": 94694,\n\t\"./fr\": 94470,\n\t\"./fr-ca\": 63049,\n\t\"./fr-ca.js\": 63049,\n\t\"./fr-ch\": 52330,\n\t\"./fr-ch.js\": 52330,\n\t\"./fr.js\": 94470,\n\t\"./fy\": 5044,\n\t\"./fy.js\": 5044,\n\t\"./ga\": 29295,\n\t\"./ga.js\": 29295,\n\t\"./gd\": 2101,\n\t\"./gd.js\": 2101,\n\t\"./gl\": 38794,\n\t\"./gl.js\": 38794,\n\t\"./gom-deva\": 27884,\n\t\"./gom-deva.js\": 27884,\n\t\"./gom-latn\": 23168,\n\t\"./gom-latn.js\": 23168,\n\t\"./gu\": 95349,\n\t\"./gu.js\": 95349,\n\t\"./he\": 24206,\n\t\"./he.js\": 24206,\n\t\"./hi\": 30094,\n\t\"./hi.js\": 30094,\n\t\"./hr\": 30316,\n\t\"./hr.js\": 30316,\n\t\"./hu\": 22138,\n\t\"./hu.js\": 22138,\n\t\"./hy-am\": 11423,\n\t\"./hy-am.js\": 11423,\n\t\"./id\": 29218,\n\t\"./id.js\": 29218,\n\t\"./is\": 90135,\n\t\"./is.js\": 90135,\n\t\"./it\": 90626,\n\t\"./it-ch\": 10150,\n\t\"./it-ch.js\": 10150,\n\t\"./it.js\": 90626,\n\t\"./ja\": 39183,\n\t\"./ja.js\": 39183,\n\t\"./jv\": 24286,\n\t\"./jv.js\": 24286,\n\t\"./ka\": 12105,\n\t\"./ka.js\": 12105,\n\t\"./kk\": 47772,\n\t\"./kk.js\": 47772,\n\t\"./km\": 18758,\n\t\"./km.js\": 18758,\n\t\"./kn\": 79282,\n\t\"./kn.js\": 79282,\n\t\"./ko\": 33730,\n\t\"./ko.js\": 33730,\n\t\"./ku\": 1408,\n\t\"./ku.js\": 1408,\n\t\"./ky\": 33291,\n\t\"./ky.js\": 33291,\n\t\"./lb\": 36841,\n\t\"./lb.js\": 36841,\n\t\"./lo\": 55466,\n\t\"./lo.js\": 55466,\n\t\"./lt\": 57010,\n\t\"./lt.js\": 57010,\n\t\"./lv\": 37595,\n\t\"./lv.js\": 37595,\n\t\"./me\": 39861,\n\t\"./me.js\": 39861,\n\t\"./mi\": 35493,\n\t\"./mi.js\": 35493,\n\t\"./mk\": 95966,\n\t\"./mk.js\": 95966,\n\t\"./ml\": 87341,\n\t\"./ml.js\": 87341,\n\t\"./mn\": 5115,\n\t\"./mn.js\": 5115,\n\t\"./mr\": 10370,\n\t\"./mr.js\": 10370,\n\t\"./ms\": 9847,\n\t\"./ms-my\": 41237,\n\t\"./ms-my.js\": 41237,\n\t\"./ms.js\": 9847,\n\t\"./mt\": 72126,\n\t\"./mt.js\": 72126,\n\t\"./my\": 56165,\n\t\"./my.js\": 56165,\n\t\"./nb\": 64924,\n\t\"./nb.js\": 64924,\n\t\"./ne\": 16744,\n\t\"./ne.js\": 16744,\n\t\"./nl\": 93901,\n\t\"./nl-be\": 59814,\n\t\"./nl-be.js\": 59814,\n\t\"./nl.js\": 93901,\n\t\"./nn\": 83877,\n\t\"./nn.js\": 83877,\n\t\"./oc-lnc\": 92135,\n\t\"./oc-lnc.js\": 92135,\n\t\"./pa-in\": 15858,\n\t\"./pa-in.js\": 15858,\n\t\"./pl\": 64495,\n\t\"./pl.js\": 64495,\n\t\"./pt\": 89520,\n\t\"./pt-br\": 57971,\n\t\"./pt-br.js\": 57971,\n\t\"./pt.js\": 89520,\n\t\"./ro\": 96459,\n\t\"./ro.js\": 96459,\n\t\"./ru\": 21793,\n\t\"./ru.js\": 21793,\n\t\"./sd\": 40950,\n\t\"./sd.js\": 40950,\n\t\"./se\": 10490,\n\t\"./se.js\": 10490,\n\t\"./si\": 90124,\n\t\"./si.js\": 90124,\n\t\"./sk\": 64249,\n\t\"./sk.js\": 64249,\n\t\"./sl\": 14985,\n\t\"./sl.js\": 14985,\n\t\"./sq\": 51104,\n\t\"./sq.js\": 51104,\n\t\"./sr\": 49131,\n\t\"./sr-cyrl\": 79915,\n\t\"./sr-cyrl.js\": 79915,\n\t\"./sr.js\": 49131,\n\t\"./ss\": 85893,\n\t\"./ss.js\": 85893,\n\t\"./sv\": 98760,\n\t\"./sv.js\": 98760,\n\t\"./sw\": 91172,\n\t\"./sw.js\": 91172,\n\t\"./ta\": 27333,\n\t\"./ta.js\": 27333,\n\t\"./te\": 23110,\n\t\"./te.js\": 23110,\n\t\"./tet\": 52095,\n\t\"./tet.js\": 52095,\n\t\"./tg\": 27321,\n\t\"./tg.js\": 27321,\n\t\"./th\": 9041,\n\t\"./th.js\": 9041,\n\t\"./tk\": 19005,\n\t\"./tk.js\": 19005,\n\t\"./tl-ph\": 75768,\n\t\"./tl-ph.js\": 75768,\n\t\"./tlh\": 89444,\n\t\"./tlh.js\": 89444,\n\t\"./tr\": 72397,\n\t\"./tr.js\": 72397,\n\t\"./tzl\": 28254,\n\t\"./tzl.js\": 28254,\n\t\"./tzm\": 51106,\n\t\"./tzm-latn\": 30699,\n\t\"./tzm-latn.js\": 30699,\n\t\"./tzm.js\": 51106,\n\t\"./ug-cn\": 9288,\n\t\"./ug-cn.js\": 9288,\n\t\"./uk\": 67691,\n\t\"./uk.js\": 67691,\n\t\"./ur\": 13795,\n\t\"./ur.js\": 13795,\n\t\"./uz\": 6791,\n\t\"./uz-latn\": 60588,\n\t\"./uz-latn.js\": 60588,\n\t\"./uz.js\": 6791,\n\t\"./vi\": 65666,\n\t\"./vi.js\": 65666,\n\t\"./x-pseudo\": 14378,\n\t\"./x-pseudo.js\": 14378,\n\t\"./yo\": 75805,\n\t\"./yo.js\": 75805,\n\t\"./zh-cn\": 83839,\n\t\"./zh-cn.js\": 83839,\n\t\"./zh-hk\": 55726,\n\t\"./zh-hk.js\": 55726,\n\t\"./zh-mo\": 99807,\n\t\"./zh-mo.js\": 99807,\n\t\"./zh-tw\": 74152,\n\t\"./zh-tw.js\": 74152\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 46700;","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + \"3b66be39570778909421\" + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 4092;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t4092: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(84848); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","exports","path","split","map","encodeURIComponent","join","e","t","module","self","a","d","default","R","o","i","n","r","s","c","l","m","Symbol","iterator","constructor","prototype","u","Object","keys","getOwnPropertySymbols","filter","getOwnPropertyDescriptor","enumerable","push","apply","p","arguments","length","forEach","h","getOwnPropertyDescriptors","defineProperties","defineProperty","toPrimitive","call","TypeError","String","value","configurable","writable","g","Array","isArray","A","from","toString","slice","name","test","v","k","components","NcButton","DotsHorizontal","NcPopover","props","open","type","Boolean","manualOpen","forceMenu","forceName","menuName","primary","validator","indexOf","defaultIcon","ariaLabel","ariaHidden","placement","boundariesElement","Element","document","querySelector","container","disabled","inline","Number","emits","data","opened","this","focusIndex","randomId","concat","Z","computed","triggerBtnType","watch","methods","isValidSingleAction","componentOptions","Ctor","extendOptions","tag","includes","openMenu","$emit","closeMenu","$refs","popover","clearFocusTrap","returnFocus","menuButton","$el","focus","onOpen","$nextTick","focusFirstAction","onMouseFocusAction","activeElement","target","closest","menu","querySelectorAll","focusAction","onKeydown","keyCode","shiftKey","focusPreviousAction","focusNextAction","focusLastAction","preventDefault","removeCurrentActive","classList","remove","add","preventIfEvent","stopPropagation","onFocus","onBlur","render","$slots","every","propsData","href","startsWith","window","location","origin","util","warn","scopedSlots","icon","class","listeners","click","children","text","trim","f","y","C","title","staticClass","attrs","ref","on","blur","slot","size","delay","handleResize","shown","boundary","popoverBaseClass","setReturnFocus","triggers","show","hide","tabindex","keydown","mousemove","id","role","b","w","P","S","N","x","j","E","O","_","B","styleTagTransform","setAttributes","insert","bind","domAPI","insertStyleElement","locals","z","F","M","T","D","G","undefined","alignment","nativeType","wide","download","to","exact","pressed","realType","flexAlignment","isReverseAligned","console","navigate","isActive","isExactActive","rel","$attrs","$listeners","custom","V","NcLoadingIcon","mixins","buttonVariant","buttonVariantGrouped","checked","indeterminate","loading","wrapperElement","inputProps","isChecked","inputListeners","onToggle","change","cssVars","inputType","checkboxRadioIconElement","mounted","Error","getInputsSet","getElementsByName","q","U","L","$","I","H","W","_self","_c","style","_g","_b","domProps","_v","for","_t","_e","description","hasName","hasDescription","_s","action","appearance","colors","reverse","width","height","viewBox","fill","hasOwnProperty","asyncIterator","toStringTag","create","arg","wrap","getPrototypeOf","_invoke","resolve","__await","then","done","method","delegate","sent","_sent","dispatchException","abrupt","return","resultName","next","nextLoc","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","completion","reset","isNaN","displayName","isGeneratorFunction","mark","setPrototypeOf","__proto__","awrap","AsyncIterator","async","Promise","pop","values","prev","charAt","stop","rval","complete","finish","catch","delegateYield","Dropdown","inheritAttrs","focusTrap","HTMLElement","SVGElement","beforeDestroy","useFocusTrap","popperContent","$focusTrap","createFocusTrap","escapeDeactivates","allowOutsideClick","trapStack","activate","deactivate","afterShow","afterHide","distance","_u","key","fn","proxy","vnodes","$scopedSlots","inserted","linkify","innerHTML","defaultProtocol","className","attributes","options","themes","tooltip","html","VTooltip","getGettextBuilder","detectLocale","locale","translations","Actions","Activities","Back","Choose","Close","Custom","Favorite","Flags","Global","Next","Objects","Previous","Search","Settings","Submit","Symbols","pluralId","msgid","msgid_plural","msgstr","addTranslation","build","ngettext","gettext","Math","random","replace","assign","_nc_focus_trap","version","sources","names","mappings","sourcesContent","sourceRoot","btoa","unescape","JSON","stringify","identifier","base","css","media","sourceMap","supports","layer","references","updater","byIndex","splice","update","HTMLIFrameElement","contentDocument","head","appendChild","createElement","nc","setAttribute","parentNode","removeChild","styleSheet","cssText","firstChild","createTextNode","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","$options","shadowRoot","_injectStyles","beforeCreate","__esModule","get","NcCheckboxRadioSwitch","NcVNodes","provide","registerTab","unregisterTab","getActiveTab","activeTab","active","tabs","hasMultipleTabs","currentTabIndex","findIndex","updateActive","setActive","focusPreviousTab","focusActiveTab","focusNextTab","focusFirstTab","focusLastTab","focusActiveTabContent","some","sort","order","OC","Util","naturalSortCompare","_k","button","ctrlKey","altKey","metaKey","_l","renderIcon","NcActions","NcAppSidebarTabs","ArrowRight","NcEmptyContent","Star","StarOutline","directives","ClickOutside","vOnClickOutside","Tooltip","required","nameEditable","namePlaceholder","subname","subtitle","background","starred","starLoading","compact","empty","linkifyName","changeNameTranslated","closeTranslated","favoriteTranslated","isStarred","canStar","hasFigure","header","hasFigureClickListener","onBeforeEnter","onAfterEnter","onBeforeLeave","onAfterLeave","closeSidebar","onFigureClick","toggleStarred","editName","nameInput","onNameInput","onSubmitName","onDismissEditing","onUpdateActive","appear","backgroundImage","rawName","expression","currentTarget","submit","placeholder","input","inject","expose","created","onScroll","scrollHeight","scrollTop","clientHeight","scroll","URL","onClick","isIconUrl","textContent","isLongText","getBuilder","persist","setItem","NcActionLink","iQ","url","iconClass","user","showUserStatus","showUserStatusCompact","preloadedUserStatus","isGuest","allowPlaceholder","disableTooltip","disableMenu","tooltipMessage","isNoUser","menuContainer","avatarUrlLoaded","avatarSrcSetLoaded","userDoesNotExist","isAvatarLoaded","isMenuLoaded","contactsMenuLoading","contactsMenuActions","contactsMenuOpenState","avatarAriaLabel","hasMenu","hasStatus","status","userStatus","canDisplayUserStatus","showUserStatusIconOnAvatar","getUserIdentifier","isDisplayNameDefined","isUserDefined","isUrlDefined","getCurrentUser","uid","shouldShowPlaceholder","avatarStyle","lineHeight","fontSize","round","initialsWrapperStyle","backgroundColor","initialsStyle","color","initials","fromCodePoint","codePointAt","toUpperCase","hyperlink","message","loadAvatarUrl","subscribe","fetchUserStatus","handleUserStatusUpdated","unsubscribe","userId","toggleMenu","fetchContactsMenu","post","generateUrl","topAction","actions","t0","updateImageIfValid","avatarUrlGenerator","getComputedStyle","body","getPropertyValue","oc_userconfig","avatar","getItem","Image","onload","onerror","debug","srcset","src","alt","NcHighlight","search","needsTruncate","min","floor","part1","part2","highlight1","highlight2","start","end","highlight","ranges","reduce","max","chunks","svg","cleanSvg","beforeMount","sanitizeSVG","NcAvatar","NcIconSvgWrapper","iconSvg","iconName","avatarSize","noMargin","margin","hasIcon","hasIconSvg","isValidSubname","isSizeBigEnough","ChevronDown","NcEllipsisedOption","NcListItemIcon","VueSelect","appendToBody","calculatePosition","Function","closeOnSelect","Deselect","fillColor","cursor","limit","dropdownShouldOpen","noDrop","filterBy","inputClass","inputId","keyboardFocusBorder","label","multiple","noWrap","resetFocusOnOptionsChange","userSelect","localCalculatePosition","toggle","autoUpdate","computePosition","middleware","offset","flip","shift","limiter","limitShift","left","top","localFilterBy","toLocaleLowerCase","localLabel","propsToForward","$props","propertyIsEnumerable","events","parseInt","toLowerCase","match","before","$destroy","beforeUpdate","getText","closeAfterClick","isMobile","addEventListener","handleWindowResize","removeEventListener","documentElement","clientWidth","RegExp","getCapabilities","user_status","enabled","generateOcsUrl","ocs","response","error","$parent","hash","needQuotes","iconUrl","source","avatarUrl","getAvatarUrl","mentionText","contenteditable","baseURI","nodeType","item","nodeName","nodeValue","hasChildNodes","childNodes","DOMParser","parseFromString","canAssign","userAssignable","userVisible","NextcloudVueDocs","tags","generateRemoteUrl","NcSelect","fetchTags","getOptionLabel","optionsFilter","passthru","availableTags","availableOptions","localValue","find","handleInput","_regeneratorRuntime","Op","hasOwn","obj","desc","$Symbol","iteratorSymbol","asyncIteratorSymbol","toStringTagSymbol","define","err","innerFn","outerFn","tryLocsList","protoGenerator","Generator","generator","context","Context","makeInvokeMethod","tryCatch","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","NativeIteratorPrototype","Gp","defineIteratorMethods","PromiseImpl","invoke","reject","record","result","_typeof","unwrapped","previousPromise","callInvokeWithMethodAndArg","state","delegateResult","maybeInvokeDelegate","methodName","info","pushTryEntry","locs","entry","resetTryEntry","iterable","iteratorMethod","doneResult","genFun","ctor","iter","val","object","skipTempReset","rootRecord","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","thrown","asyncGeneratorStep","gen","_next","_throw","_x","_ref","_callee","file","fileInfo","_context","axios","davGetDefaultPropfind","OCA","Files","App","fileList","filesClient","_client","parseMultiStatus","_parseFileInfo","isDirectory","mimetype","args","component","setFileInfo","replaceAll","FileInfoModel","_asyncToGenerator","NcAppSidebarTab","onMount","onUpdate","onDestroy","onScrollBottomReached","newFile","oldFile","_this","_this2","_callee2","_context2","mount","tab","_this3","_callee3","_context3","_vm","rootUrl","davClient","createClient","headers","requesttoken","_getRequestToken","getRequestToken","parseTags","fromEntries","entries","_ref2","_ref3","camelCase","parseIdFromLocation","queryPos","substring","parts","formatTag","initialTag","_objectSpread","logger","getLoggerBuilder","setApp","detectUser","fetchTagsBody","_yield$davClient$getD","getDirectoryContents","details","glob","fetchLastUsedTagIds","_yield$axios$get","lastUsedTagIds","fetchSelectedTags","fileId","_yield$davClient$getD2","selectTag","_ref4","_callee4","tagToPut","_context4","customRequest","_x2","_x3","createTag","_ref5","_callee5","tagToPost","_yield$davClient$cust","contentLocation","_context5","_x4","_x5","deleteTag","_ref6","_callee6","_context6","deleteFile","_x6","_x7","_createForOfIteratorHelper","allowArrayLike","it","_unsupportedIterableToArray","_e2","normalCompletion","didErr","step","_e3","minLen","_arrayLikeToArray","arr","len","arr2","defaultBaseTag","Vue","extend","NcSelectTags","sortedTags","selectedTags","loadingTags","lastUsedOrder","lastUsedTags","remainingTags","_iterator","_step","sortByLastUsed","t1","showError","immediate","handler","createOption","newDisplayName","_step2","_iterator2","baseTag","_objectWithoutProperties","_excluded","selectedTag","handleSelect","sortToFront","handleCreate","_this4","createdTag","unshift","handleDeselect","_this5","_setupProxy","LegacyView","NcActionButton","NcAppSidebar","SidebarTab","SystemTags","Sidebar","showTags","isFullScreen","hasLowHeight","views","davPath","linkToRemote","encodePath","time","relativeModifiedDate","mtime","fullTime","moment","format","humanFileSize","getPreviewIfAny","appSidebar","hasPreview","isFavourited","defaultAction","fileActions","getDefaultFileAction","PERMISSION_READ","defaultActionListener","isSystemTagsEnabled","_getCapabilities","systemtags","canDisplay","resetData","updateTabs","screen","getIconUrl","mimeType","mountType","MimeType","shareTypes","ShareTypes","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","setActiveTab","setIsActive","isDir","Node","Folder","File","emit","fileid","root","mime","Notification","showTemporary","onDefaultAction","dir","$file","toggleTags","FileInfo","view","close","setFullScreenMode","_document$querySelect","_document$querySelect2","_document$querySelect3","_document$querySelect4","handleOpening","handleOpened","handleClosing","handleClosed","_d","$event","cid","destroy","scrollBottomReached","_classCallCheck","_state","check","Tab","_defineProperty","_id","_name","_icon","_mount","_setIsActive","_update","_destroy","_enabled","_scrollBottomReached","sanitizedSvg","_iconSvgSanitized","contentElement","getElementById","sidebarElement","AppSidebar","SidebarView","$mount","UPPERCASE","LOWERCASE","LEADING_CAPITAL","IDENTIFIER","SEPARATORS","LEADING_SEPARATORS","SEPARATORS_AND_IDENTIFIER","NUMBERS_AND_IDENTIFIER","pascalCase","preserveConsecutiveUppercase","string","toLocaleUpperCase","isLastCharLower","isLastCharUpper","isLastLastCharUpper","character","preserveCamelCase","lastIndex","m1","postProcess","___CSS_LOADER_EXPORT___","webpackContext","req","webpackContextResolve","__webpack_require__","code","setUid","mt","We","log","pow","toFixed","parseFloat","toLocaleString","DEFAULT","HIDDEN","NONE","CREATE","READ","UPDATE","DELETE","SHARE","ALL","K","oc","_nc_dav_properties","_nc_dav_namespaces","ni","ri","Y","Date","crtime","permissions","owner","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","set","updateMtime","Reflect","deleteProperty","Proxy","basename","extension","dirname","pathname","isDavRessource","move","rename","xt","bt","super","Q","tt","si","patch","oi","includeSelf","filename","Et","yt","parse","lastmod","getcontentlength","isExist","isEmptyObject","merge","getValue","isName","exec","getAllMatches","startIndex","nameRegexp","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","allowBooleanAttributes","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","unpairedTags","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","nt","we","ye","ve","prettify","xe","Ee","rt","Oe","Pe","st","ot","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","substr","lastIndexOf","entities","regex","De","Se","oneListGroup","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","repeat","arrayNodeName","buildAttrPairStr","replaceEntitiesValue","closeTag","__webpack_module_cache__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","priority","notFulfilled","Infinity","fulfilled","getter","definition","chunkId","all","promises","globalThis","prop","script","needAttach","scripts","getElementsByTagName","getAttribute","charset","timeout","onScriptComplete","event","clearTimeout","doneFns","setTimeout","nmd","paths","scriptUrl","importScripts","currentScript","installedChunks","installedChunkData","promise","errorType","realSrc","request","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/systemtags-init.js b/dist/systemtags-init.js index 92c72bd5ddcde..40d5bac58a813 100644 --- a/dist/systemtags-init.js +++ b/dist/systemtags-init.js @@ -1,3 +1,3 @@ /*! For license information please see systemtags-init.js.LICENSE.txt */ -!function(){var t,e={36992:function(t,e,r){"use strict";var n=r(77958),i=r(17499),o=r(31352),s=r(62520),a=r(79753),u=r(14596),c=r(26721);const l=null===(f=(0,n.ts)())?(0,i.IY)().setApp("files").build():(0,i.IY)().setApp("files").setUid(f.uid).build();var f,h=(t=>(t.DEFAULT="default",t.HIDDEN="hidden",t))(h||{}),d=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(d||{});const p=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],g={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"};var m=(t=>(t.Folder="folder",t.File="file",t))(m||{});const v=function(t,e){return null!==t.match(e)},y=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=d.NONE&&t.permissions<=d.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&v(t.source,e)){const r=t.source.match(e)[0];if(!t.source.includes((0,s.join)(r,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(w).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var w=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(w||{});class b{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(t,e){y(t,e||this._knownDavService),this._data=t;const r={set:(t,e,r)=>(this.updateMtime(),Reflect.set(t,e,r)),deleteProperty:(t,e)=>(this.updateMtime(),Reflect.deleteProperty(t,e))};this._attributes=new Proxy(t.attributes||{},r),delete this._data.attributes,e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get basename(){return(0,s.basename)(this.source)}get extension(){return(0,s.extname)(this.source)}get dirname(){if(this.root){const t=this.source.indexOf(this.root);return(0,s.dirname)(this.source.slice(t+this.root.length)||"/")}const t=new URL(this.source);return(0,s.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:d.NONE:d.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return v(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,s.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){const t=this.source.indexOf(this.root);return this.source.slice(t+this.root.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){y({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,s.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class x extends b{get type(){return m.File}}class E extends b{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return m.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}(0,a.generateRemoteUrl)("dav");class A{_column;constructor(t){_(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const _=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var N={},O={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",r="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",n=new RegExp("^"+r+"$");t.isExist=function(t){return typeof t<"u"},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,r){if(e){const n=Object.keys(e),i=n.length;for(let o=0;o"u")},t.getAllMatches=function(t,e){const r=[];let n=e.exec(t);for(;n;){const i=[];i.startIndex=e.lastIndex-n[0].length;const o=n.length;for(let t=0;t5&&"xml"===n)return V("InvalidXml","XML declaration allowed only at the start of the document.",B(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}continue}return e}function j(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let r=1;for(e+=8;e"===t[e]&&(r--,0===r))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e"===t[e+2]){e+=2;break}return e}N.validate=function(t,e){e=Object.assign({},P,e);const r=[];let n=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let o=0;o"!==t[o]&&" "!==t[o]&&"\t"!==t[o]&&"\n"!==t[o]&&"\r"!==t[o];o++)u+=t[o];if(u=u.trim(),"/"===u[u.length-1]&&(u=u.substring(0,u.length-1),o--),!G(u)){let e;return e=0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",V("InvalidTag",e,B(t,o))}const c=k(t,o);if(!1===c)return V("InvalidAttr","Attributes for '"+u+"' have open quote.",B(t,o));let l=c.value;if(o=c.index,"/"===l[l.length-1]){const r=o-l.length;l=l.substring(0,l.length-1);const i=F(l,e);if(!0!==i)return V(i.err.code,i.err.msg,B(t,r+i.err.line));n=!0}else if(a){if(!c.tagClosed)return V("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",B(t,o));if(l.trim().length>0)return V("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",B(t,s));{const e=r.pop();if(u!==e.tagName){let r=B(t,e.tagStartPos);return V("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+r.line+", col "+r.col+") instead of closing tag '"+u+"'.",B(t,s))}0==r.length&&(i=!0)}}else{const a=F(l,e);if(!0!==a)return V(a.err.code,a.err.msg,B(t,o-l.length+a.err.line));if(!0===i)return V("InvalidXml","Multiple possible root nodes found.",B(t,o));-1!==e.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:s}),n=!0}for(o++;o0)||V("InvalidXml","Invalid '"+JSON.stringify(r.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):V("InvalidXml","Start tag expected.",1)};const S='"',I="'";function k(t,e){let r="",n="",i=!1;for(;e"===t[e]&&""===n){i=!0;break}r+=t[e]}return""===n&&{value:r,index:e,tagClosed:i}}const D=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function F(t,e){const r=C.getAllMatches(t,D),n={};for(let t=0;t!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,r){return t}};U.buildOptions=function(t){return Object.assign({},z,t)},U.defaultOptions=z;const Y=O;function q(t,e){let r="";for(;e0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},it=function(t,e){const r={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let n=1,i=!1,o=!1,s="";for(;e"===t[e]){if(o?"-"===t[e-1]&&"-"===t[e-2]&&(o=!1,n--):n--,0===n)break}else"["===t[e]?i=!0:s+=t[e];else{if(i&&W(t,e))e+=7,[entityName,val,e]=q(t,e+1),-1===val.indexOf("&")&&(r[J(entityName)]={regx:RegExp(`&${entityName};`,"g"),val:val});else if(i&&Z(t,e))e+=8;else if(i&&H(t,e))e+=8;else if(i&&K(t,e))e+=9;else{if(!X)throw new Error("Invalid DOCTYPE");o=!0}n++,s=""}if(0!==n)throw new Error("Unclosed DOCTYPE")}return{entities:r,i:e}},ot=function(t,e={}){if(e=Object.assign({},et,e),!t||"string"!=typeof t)return t;let r=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(r))return t;if(e.hex&&Q.test(r))return Number.parseInt(r,16);{const n=tt.exec(r);if(n){const i=n[1],o=n[2];let s=function(t){return t&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t}(n[3]);const a=n[4]||n[6];if(!e.leadingZeros&&o.length>0&&i&&"."!==r[2]||!e.leadingZeros&&o.length>0&&!i&&"."!==r[1])return t;{const n=Number(r),u=""+n;return-1!==u.search(/[eE]/)||a?e.eNotation?n:t:-1!==r.indexOf(".")?"0"===u&&""===s||u===s||i&&u==="-"+s?n:t:o?s===u||i+s===u?n:t:r===u||r===i+u?n:t}}return t}};function st(t){const e=Object.keys(t);for(let r=0;r0)){s||(t=this.replaceEntitiesValue(t));const n=this.options.tagValueProcessor(e,t,r,i,o);return null==n?t:typeof n!=typeof t||n!==t?n:this.options.trimValues||t.trim()===t?wt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function ut(t){if(this.options.removeNSPrefix){const e=t.split(":"),r="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=r+e[1])}return t}"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,rt.nameRegexp);const ct=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function lt(t,e,r){if(!this.options.ignoreAttributes&&"string"==typeof t){const r=rt.getAllMatches(t,ct),n=r.length,i={};for(let t=0;t",o,"Closing Tag is not closed.");let s=t.substring(o+2,e).trim();if(this.options.removeNSPrefix){const t=s.indexOf(":");-1!==t&&(s=s.substr(t+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));const a=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw new Error(`Unpaired tag can not be used as closing tag: `);let u=0;a&&-1!==this.options.unpairedTags.indexOf(a)?(u=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):u=i.lastIndexOf("."),i=i.substring(0,u),r=this.tagsNodeStack.pop(),n="",o=e}else if("?"===t[o+1]){let e=vt(t,o,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),!(this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags)){const t=new nt(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(r,t,i)}o=e.closeIndex+1}else if("!--"===t.substr(o+1,3)){const e=mt(t,"--\x3e",o+4,"Comment is not closed.");if(this.options.commentPropName){const s=t.substring(o+4,e-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[{[this.options.textNodeName]:s}])}o=e}else if("!D"===t.substr(o+1,2)){const e=it(t,o);this.docTypeEntities=e.entities,o=e.i}else if("!["===t.substr(o+1,2)){const e=mt(t,"]]>",o,"CDATA is not closed.")-2,s=t.substring(o+9,e);if(n=this.saveTextToParentTag(n,r,i),this.options.cdataPropName)r.add(this.options.cdataPropName,[{[this.options.textNodeName]:s}]);else{let t=this.parseTextData(s,r.tagname,i,!0,!1,!0);null==t&&(t=""),r.add(this.options.textNodeName,t)}o=e+2}else{let s=vt(t,o,this.options.removeNSPrefix),a=s.tagName,u=s.tagExp,c=s.attrExpPresent,l=s.closeIndex;this.options.transformTagName&&(a=this.options.transformTagName(a)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));const f=r;if(f&&-1!==this.options.unpairedTags.indexOf(f.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),a!==e.tagname&&(i+=i?"."+a:a),this.isItStopNode(this.options.stopNodes,i,a)){let e="";if(u.length>0&&u.lastIndexOf("/")===u.length-1)o=s.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(a))o=s.closeIndex;else{const r=this.readStopNodeData(t,a,l+1);if(!r)throw new Error(`Unexpected end of ${a}`);o=r.i,e=r.tagContent}const n=new nt(a);a!==u&&c&&(n[":@"]=this.buildAttributesMap(u,i,a)),e&&(e=this.parseTextData(e,a,i,!0,c,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),n.add(this.options.textNodeName,e),this.addChild(r,n,i)}else{if(u.length>0&&u.lastIndexOf("/")===u.length-1){"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),u=a):u=u.substr(0,u.length-1),this.options.transformTagName&&(a=this.options.transformTagName(a));const t=new nt(a);a!==u&&c&&(t[":@"]=this.buildAttributesMap(u,i,a)),this.addChild(r,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new nt(a);this.tagsNodeStack.push(r),a!==u&&c&&(t[":@"]=this.buildAttributesMap(u,i,a)),this.addChild(r,t,i),r=t}n="",o=l}}else n+=t[o];return e.child};function ht(t,e,r){const n=this.options.updateTag(e.tagname,r,e[":@"]);!1===n||("string"==typeof n&&(e.tagname=n),t.addChild(e))}const dt=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const r=this.docTypeEntities[e];t=t.replace(r.regx,r.val)}for(let e in this.lastEntities){const r=this.lastEntities[e];t=t.replace(r.regex,r.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const r=this.htmlEntities[e];t=t.replace(r.regex,r.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function pt(t,e,r,n){return t&&(void 0===n&&(n=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,r,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,n))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function gt(t,e,r){const n="*."+r;for(const r in t){const i=t[r];if(n===i||e===i)return!0}return!1}function mt(t,e,r,n){const i=t.indexOf(e,r);if(-1===i)throw new Error(n);return i+e.length-1}function vt(t,e,r,n=">"){const i=function(t,e,r=">"){let n,i="";for(let o=e;o",r,`${e} is not closed`);if(t.substring(r+2,o).trim()===e&&(i--,0===i))return{tagContent:t.substring(n,r),i:o};r=o}else if("?"===t[r+1])r=mt(t,"?>",r+1,"StopNode is not closed.");else if("!--"===t.substr(r+1,3))r=mt(t,"--\x3e",r+3,"StopNode is not closed.");else if("!["===t.substr(r+1,2))r=mt(t,"]]>",r,"StopNode is not closed.")-2;else{const n=vt(t,r,">");n&&((n&&n.tagName)===e&&"/"!==n.tagExp[n.tagExp.length-1]&&i++,r=n.closeIndex)}}function wt(t,e,r){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&ot(t,r)}return rt.isExist(t)?t:""}var bt={};function xt(t,e,r){let n;const i={};for(let o=0;o0&&(i[e.textNodeName]=n):void 0!==n&&(i[e.textNodeName]=n),i}function Et(t){const e=Object.keys(t);for(let t=0;t"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"}},this.addExternalEntities=st,this.parseXml=ft,this.parseTextData=at,this.resolveNameSpace=ut,this.buildAttributesMap=lt,this.isItStopNode=gt,this.replaceEntitiesValue=dt,this.readStopNodeData=yt,this.saveTextToParentTag=pt,this.addChild=ht}},{prettify:Ct}=bt,Pt=N;function Lt(t,e,r,n){let i="",o=!1;for(let s=0;s`,o=!1;continue}if(u===e.commentPropName){i+=n+`\x3c!--${a[u][0][e.textNodeName]}--\x3e`,o=!0;continue}if("?"===u[0]){const t=jt(a[":@"],e),r="?xml"===u?"":n;let s=a[u][0][e.textNodeName];s=0!==s.length?" "+s:"",i+=r+`<${u}${s}${t}?>`,o=!0;continue}let l=n;""!==l&&(l+=e.indentBy);const f=n+`<${u}${jt(a[":@"],e)}`,h=Lt(a[u],e,c,l);-1!==e.unpairedTags.indexOf(u)?e.suppressUnpairedNode?i+=f+">":i+=f+"/>":h&&0!==h.length||!e.suppressEmptyNode?h&&h.endsWith(">")?i+=f+`>${h}${n}`:(i+=f+">",h&&""!==n&&(h.includes("/>")||h.includes("`):i+=f+"/>",o=!0}return i}function Tt(t){const e=Object.keys(t);for(let t=0;t0&&e.processEntities)for(let r=0;r0&&(r="\n"),Lt(t,e,"",r)},Dt={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&"},{regex:new RegExp(">","g"),val:">"},{regex:new RegExp("<","g"),val:"<"},{regex:new RegExp("'","g"),val:"'"},{regex:new RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function Ft(t){this.options=Object.assign({},Dt,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=$t),this.processTextOrObjNode=Rt,this.options.format?(this.indentate=Vt,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function Rt(t,e,r){const n=this.j2x(t,r+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,n.attrStr,r):this.buildObjectNode(n.val,e,n.attrStr,r)}function Vt(t){return this.options.indentBy.repeat(t)}function $t(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}Ft.prototype.build=function(t){return this.options.preserveOrder?kt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},Ft.prototype.j2x=function(t,e){let r="",n="";for(let i in t)if(typeof t[i]>"u")this.isAttribute(i)&&(n+="");else if(null===t[i])this.isAttribute(i)?n+="":"?"===i[0]?n+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)n+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const o=this.isAttribute(i);if(o)r+=this.buildAttrPairStr(o,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);n+=this.replaceEntitiesValue(e)}else n+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const r=t[i].length;let o="";for(let s=0;s"u"||(null===r?"?"===i[0]?n+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof r?this.options.oneListGroup?o+=this.j2x(r,e+1).val:o+=this.processTextOrObjNode(r,i,e):o+=this.buildTextValNode(r,i,"",e))}this.options.oneListGroup&&(o=this.buildObjectNode(o,i,"",e)),n+=o}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),n=e.length;for(let o=0;o"+t+i}},Ft.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(n)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(n)+"<"+e+r+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(n)+"<"+e+r+this.closeTag(e)+this.tagEndChar:this.indentate(n)+"<"+e+r+">"+i+"0&&this.options.processEntities)for(let e=0;e0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length||!0!==Gt.XMLValidator.validate(t))return!1;let e;const r=new Gt.XMLParser;try{e=r.parse(t)}catch{return!1}return!(!e||!("svg"in e))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof A))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0};var Mt=r(93379),Ut=r.n(Mt),zt=r(7795),Yt=r.n(zt),qt=r(90569),Xt=r.n(qt),Wt=r(3565),Zt=r.n(Wt),Ht=r(19216),Kt=r.n(Ht),Jt=r(44589),Qt=r.n(Jt),te=r(15735),ee={};function re(t){return re="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},re(t)}function ne(){ne=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",a=i.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,i){var o=e&&e.prototype instanceof h?e:h,s=Object.create(o.prototype),a=new N(i||[]);return n(s,"_invoke",{value:x(t,r,a)}),s}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var f={};function h(){}function d(){}function p(){}var g={};u(g,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(O([])));v&&v!==e&&r.call(v,o)&&(g=v);var y=p.prototype=h.prototype=Object.create(g);function w(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function b(t,e){function i(n,o,s,a){var u=l(t[n],t,o);if("throw"!==u.type){var c=u.arg,f=c.value;return f&&"object"==re(f)&&r.call(f,"__await")?e.resolve(f.__await).then((function(t){i("next",t,s,a)}),(function(t){i("throw",t,s,a)})):e.resolve(f).then((function(t){c.value=t,s(c)}),(function(t){return i("throw",t,s,a)}))}a(u.arg)}var o;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){i(t,r,e,n)}))}return o=o?o.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(i,o){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===i)throw o;return{value:void 0,done:!0}}for(r.method=i,r.arg=o;;){var s=r.delegate;if(s){var a=E(s,r);if(a){if(a===f)continue;return a}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=l(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===f)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function E(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,E(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var i=l(n,t.iterator,e.arg);if("throw"===i.type)return e.method="throw",e.arg=i.arg,e.delegate=null,f;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=void 0),e.delegate=null,f):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,f)}function A(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 _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function N(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function O(t){if(t){var e=t[o];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function e(){for(;++n=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function ie(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}function oe(t){return function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){ie(o,n,i,s,a,"next",t)}function a(t){ie(o,n,i,s,a,"throw",t)}s(void 0)}))}}ee.styleTagTransform=Qt(),ee.setAttributes=Zt(),ee.insert=Xt().bind(null,"head"),ee.domAPI=Yt(),ee.insertStyleElement=Kt(),Ut()(te.Z,ee),te.Z&&te.Z.locals&&te.Z.locals;var se,ae=function(t){var e,r=null===(e=t.attributes)||void 0===e||null===(e=e["system-tags"])||void 0===e?void 0:e["system-tag"];return void 0===r?[]:[r].flat()},ue=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=document.createElement("li");return r.classList.add("files-list__system-tag"),r.textContent=t,e&&r.classList.add("files-list__system-tag--more"),r},ce=new class{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if(t.default&&!Object.values(h).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}({id:"system-tags",displayName:function(){return""},iconSvgInline:function(){return""},enabled:function(t){if(1!==t.length)return!1;var e=t[0];return 0!==ae(e).length},exec:(se=oe(ne().mark((function t(){return ne().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",null);case 1:case"end":return t.stop()}}),t)}))),function(){return se.apply(this,arguments)}),renderInline:function(t){return oe(ne().mark((function e(){var r,n,i,s,a;return ne().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(0!==(r=ae(t)).length){e.next=3;break}return e.abrupt("return",null);case 3:return(n=document.createElement("ul")).classList.add("files-list__system-tags"),1===r.length?n.setAttribute("aria-label",(0,o.Iu)("files","This file has the tag {tag}",{tag:r[0]})):(i=r.slice(0,-1).join(", "),s=r[r.length-1],n.setAttribute("aria-label",(0,o.Iu)("files","This file has the tags {firstTags} and {lastTag}",{firstTags:i,lastTag:s}))),n.append(ue(r[0])),r.length>1&&((a=ue("+"+(r.length-1),!0)).setAttribute("title",r.slice(1).join(", ")),n.append(a)),e.abrupt("return",n);case 9:case"end":return e.stop()}}),e)})))()},order:0});!function(t,e={nc:"http://nextcloud.org/ns"}){typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...p],window._nc_dav_namespaces={...g});const r={...window._nc_dav_namespaces,...e};window._nc_dav_properties.find((e=>e===t))?l.error(`${t} already registered`,{prop:t}):t.startsWith("<")||2!==t.split(":").length?l.error(`${t} is not valid. See example: 'oc:fileid'`,{prop:t}):r[t.split(":")[0]]?(window._nc_dav_properties.push(t),window._nc_dav_namespaces=r):l.error(`${t} namespace unknown`,{prop:t,namespaces:r})}("nc:system-tags"),function(t){typeof window._nc_fileactions>"u"&&(window._nc_fileactions=[],l.debug("FileActions initialized")),window._nc_fileactions.find((e=>e.id===t.id))?l.error(`FileAction ${t.id} already registered`,{action:t}):window._nc_fileactions.push(t)}(ce),r(48033);var le,fe=(0,a.generateRemoteUrl)("dav"),he=(0,u.eI)(fe,{headers:{requesttoken:null!==(le=(0,n.IH)())&&void 0!==le?le:""}}),de=r(23204),pe=r.n(de);function ge(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function be(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}var xe,Ee=function(){var t,e=(t=we().mark((function t(){var e,r;return we().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=1,t.next=4,he.getDirectoryContents("/systemtags",{data:'\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n',details:!0,glob:"/systemtags/*"});case 4:return e=t.sent,r=e.data,t.abrupt("return",me(r));case 9:throw t.prev=9,t.t0=t.catch(1),ve.error((0,o.Iu)("systemtags","Failed to load tags"),{error:t.t0}),new Error((0,o.Iu)("systemtags","Failed to load tags"));case 13:case"end":return t.stop()}}),t,null,[[1,9]])})),function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){be(o,n,i,s,a,"next",t)}function a(t){be(o,n,i,s,a,"throw",t)}s(void 0)}))});return function(){return e.apply(this,arguments)}}(),Ae="/files/".concat(null===(xe=(0,n.ts)())||void 0===xe?void 0:xe.uid),_e=(0,a.generateRemoteUrl)("dav"+Ae),Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_e,e=(0,u.eI)(t,{headers:{requesttoken:(0,n.IH)()||""}});return(0,u.lD)().patch("request",(function(t){var e;return null!==(e=t.headers)&&void 0!==e&&e.method&&(t.method=t.headers.method,delete t.headers.method),(0,c.W)(t)})),e};function Oe(t){return Oe="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},Oe(t)}function Ce(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Pe(t){for(var e=1;e=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function Ie(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}function ke(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function De(t){for(var e=1;e\n"u"&&(window._nc_dav_namespaces={...g}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")),">\n\t\n\t\t").concat((typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...p]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")),"\n\t\n \n ").concat(t,"\n \n")},$e=function(t){var e;return new E({id:t.id,source:(0,a.generateRemoteUrl)("dav/systemtags/"+t.id),owner:null===(e=(0,n.ts)())||void 0===e?void 0:e.uid,root:"/systemtags",permissions:d.READ,attributes:De(De({},t),{},{"is-tag":!0})})},Ge=function(){var t,e=(t=Se().mark((function t(){var e,r,i,o,s,u,c=arguments;return Se().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e=c.length>0&&void 0!==c[0]?c[0]:"/",t.next=3,Ee();case 3:if(Re=t.sent,"/"!==e){t.next=6;break}return t.abrupt("return",{folder:new E({id:0,source:(0,a.generateRemoteUrl)("dav/systemtags"),owner:null===(r=(0,n.ts)())||void 0===r?void 0:r.uid,root:"/systemtags"}),contents:Re.map($e)});case 6:if(i=parseInt(e.replace("/",""),10),o=Re.find((function(t){return t.id===i}))){t.next=10;break}throw new Error("Tag not found");case 10:return s=$e(o),t.next=13,Ne().getDirectoryContents("/",{details:!0,data:Ve(i),headers:{method:"REPORT"}});case 13:return u=t.sent,t.abrupt("return",{folder:s,contents:u.data.map(Te)});case 15:case"end":return t.stop()}}),t)})),function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){Ie(o,n,i,s,a,"next",t)}function a(t){Ie(o,n,i,s,a,"throw",t)}s(void 0)}))});return function(){return e.apply(this,arguments)}}();(typeof window._nc_navigation>"u"&&(window._nc_navigation=new class{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}},l.debug("Navigation service initialized")),window._nc_navigation).register(new class{_view;constructor(t){Bt(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}({id:"tags",name:(0,o.Iu)("systemtags","Tags"),caption:(0,o.Iu)("systemtags","List of tags and their associated files and folders."),emptyTitle:(0,o.Iu)("systemtags","No tags found"),emptyCaption:(0,o.Iu)("systemtags","Tags you have created will show up here."),icon:'',order:25,getContents:Ge}))},23204:function(t){"use strict";const e=/[\p{Lu}]/u,r=/[\p{Ll}]/u,n=/^[\p{Lu}](?![\p{Lu}])/gu,i=/([\p{Alpha}\p{N}_]|$)/u,o=/[_.\- ]+/,s=new RegExp("^"+o.source),a=new RegExp(o.source+i.source,"gu"),u=new RegExp("\\d+"+i.source,"gu"),c=(t,i)=>{if("string"!=typeof t&&!Array.isArray(t))throw new TypeError("Expected the input to be `string | string[]`");if(i={pascalCase:!1,preserveConsecutiveUppercase:!1,...i},0===(t=Array.isArray(t)?t.map((t=>t.trim())).filter((t=>t.length)).join("-"):t.trim()).length)return"";const o=!1===i.locale?t=>t.toLowerCase():t=>t.toLocaleLowerCase(i.locale),c=!1===i.locale?t=>t.toUpperCase():t=>t.toLocaleUpperCase(i.locale);return 1===t.length?i.pascalCase?c(t):o(t):(t!==o(t)&&(t=((t,n,i)=>{let o=!1,s=!1,a=!1;for(let u=0;u(n.lastIndex=0,t.replace(n,(t=>e(t)))))(t,o):o(t),i.pascalCase&&(t=c(t.charAt(0))+t.slice(1)),((t,e)=>(a.lastIndex=0,u.lastIndex=0,t.replace(a,((t,r)=>e(r))).replace(u,(t=>e(t)))))(t,c))};t.exports=c,t.exports.default=c},3443:function(t,e,r){var n,i,o=r(25108);function s(t){return s="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},s(t)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,n=function(t){"use strict";function e(t,r){return e=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},e(t,r)}function r(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var r,i=n(t);if(e){var o=n(this).constructor;r=Reflect.construct(i,arguments,o)}else r=i.apply(this,arguments);return function(t,e){if(e&&("object"===s(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,r)}}function n(t){return n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},n(t)}function i(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,i=function(){};return{s:i,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){u=!0,o=t},f:function(){try{s||null==r.return||r.return()}finally{if(u)throw o}}}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r\n *\n * @author Lucas Azevedo \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\n.files-list__system-tags {\n\t--min-size: 32px;\n\tdisplay: none;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: calc(var(--min-size) * 2);\n\tmax-width: 300px;\n}\n\n.files-list__system-tag {\n\tpadding: 5px 10px;\n\tborder: 1px solid;\n\tborder-radius: var(--border-radius-pill);\n\tborder-color: var(--color-border);\n\tcolor: var(--color-text-maxcontrast);\n\theight: var(--min-size);\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\tline-height: 22px; // min-size - 2 * 5px padding\n\ttext-align: center;\n\n\t&--more {\n\t\toverflow: visible;\n\t\ttext-overflow: initial;\n\t}\n\n\t// Proper spacing if multiple shown\n\t& + .files-list__system-tag {\n\t\tmargin-left: 5px;\n\t}\n}\n\n@media (min-width: 512px) {\n\t.files-list__system-tags {\n\t\tdisplay: flex;\n\t}\n}\n"],sourceRoot:""}]),e.Z=s},24654:function(){},52361:function(){},94616:function(){}},r={};function n(t){var i=r[t];if(void 0!==i)return i.exports;var o=r[t]={id:t,loaded:!1,exports:{}};return e[t].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}n.m=e,t=[],n.O=function(e,r,i,o){if(!r){var s=1/0;for(l=0;l=o)&&Object.keys(n.O).every((function(t){return n.O[t](r[u])}))?r.splice(u--,1):(a=!1,o0&&t[l-1][2]>o;l--)t[l]=t[l-1];t[l]=[r,i,o]},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.e=function(){return Promise.resolve()},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nmd=function(t){return t.paths=[],t.children||(t.children=[]),t},n.j=5191,function(){n.b=document.baseURI||self.location.href;var t={5191:0};n.O.j=function(e){return 0===t[e]};var e=function(e,r){var i,o,s=r[0],a=r[1],u=r[2],c=0;if(s.some((function(e){return 0!==t[e]}))){for(i in a)n.o(a,i)&&(n.m[i]=a[i]);if(u)var l=u(n)}for(e&&e(r);c(t.DEFAULT="default",t.HIDDEN="hidden",t))(h||{}),d=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(d||{});const p=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],g={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"};var m=(t=>(t.Folder="folder",t.File="file",t))(m||{});const v=function(t,e){return null!==t.match(e)},y=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=d.NONE&&t.permissions<=d.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&v(t.source,e)){const r=t.source.match(e)[0];if(!t.source.includes((0,s.join)(r,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(w).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var w=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(w||{});class b{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(t,e){y(t,e||this._knownDavService),this._data=t;const r={set:(t,e,r)=>(this.updateMtime(),Reflect.set(t,e,r)),deleteProperty:(t,e)=>(this.updateMtime(),Reflect.deleteProperty(t,e))};this._attributes=new Proxy(t.attributes||{},r),delete this._data.attributes,e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get basename(){return(0,s.basename)(this.source)}get extension(){return(0,s.extname)(this.source)}get dirname(){if(this.root){const t=this.source.indexOf(this.root);return(0,s.dirname)(this.source.slice(t+this.root.length)||"/")}const t=new URL(this.source);return(0,s.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:d.NONE:d.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return v(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,s.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){const t=this.source.indexOf(this.root);return this.source.slice(t+this.root.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){y({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,s.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class x extends b{get type(){return m.File}}class E extends b{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return m.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}(0,a.generateRemoteUrl)("dav");class A{_column;constructor(t){_(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const _=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var N={},O={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",r="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",n=new RegExp("^"+r+"$");t.isExist=function(t){return typeof t<"u"},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,r){if(e){const n=Object.keys(e),i=n.length;for(let o=0;o"u")},t.getAllMatches=function(t,e){const r=[];let n=e.exec(t);for(;n;){const i=[];i.startIndex=e.lastIndex-n[0].length;const o=n.length;for(let t=0;t5&&"xml"===n)return V("InvalidXml","XML declaration allowed only at the start of the document.",B(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}continue}return e}function j(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let r=1;for(e+=8;e"===t[e]&&(r--,0===r))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e"===t[e+2]){e+=2;break}return e}N.validate=function(t,e){e=Object.assign({},P,e);const r=[];let n=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let o=0;o"!==t[o]&&" "!==t[o]&&"\t"!==t[o]&&"\n"!==t[o]&&"\r"!==t[o];o++)u+=t[o];if(u=u.trim(),"/"===u[u.length-1]&&(u=u.substring(0,u.length-1),o--),!G(u)){let e;return e=0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",V("InvalidTag",e,B(t,o))}const c=k(t,o);if(!1===c)return V("InvalidAttr","Attributes for '"+u+"' have open quote.",B(t,o));let l=c.value;if(o=c.index,"/"===l[l.length-1]){const r=o-l.length;l=l.substring(0,l.length-1);const i=F(l,e);if(!0!==i)return V(i.err.code,i.err.msg,B(t,r+i.err.line));n=!0}else if(a){if(!c.tagClosed)return V("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",B(t,o));if(l.trim().length>0)return V("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",B(t,s));{const e=r.pop();if(u!==e.tagName){let r=B(t,e.tagStartPos);return V("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+r.line+", col "+r.col+") instead of closing tag '"+u+"'.",B(t,s))}0==r.length&&(i=!0)}}else{const a=F(l,e);if(!0!==a)return V(a.err.code,a.err.msg,B(t,o-l.length+a.err.line));if(!0===i)return V("InvalidXml","Multiple possible root nodes found.",B(t,o));-1!==e.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:s}),n=!0}for(o++;o0)||V("InvalidXml","Invalid '"+JSON.stringify(r.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):V("InvalidXml","Start tag expected.",1)};const S='"',I="'";function k(t,e){let r="",n="",i=!1;for(;e"===t[e]&&""===n){i=!0;break}r+=t[e]}return""===n&&{value:r,index:e,tagClosed:i}}const D=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function F(t,e){const r=C.getAllMatches(t,D),n={};for(let t=0;t!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,r){return t}};U.buildOptions=function(t){return Object.assign({},z,t)},U.defaultOptions=z;const Y=O;function q(t,e){let r="";for(;e0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},it=function(t,e){const r={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let n=1,i=!1,o=!1,s="";for(;e"===t[e]){if(o?"-"===t[e-1]&&"-"===t[e-2]&&(o=!1,n--):n--,0===n)break}else"["===t[e]?i=!0:s+=t[e];else{if(i&&W(t,e))e+=7,[entityName,val,e]=q(t,e+1),-1===val.indexOf("&")&&(r[J(entityName)]={regx:RegExp(`&${entityName};`,"g"),val:val});else if(i&&Z(t,e))e+=8;else if(i&&H(t,e))e+=8;else if(i&&K(t,e))e+=9;else{if(!X)throw new Error("Invalid DOCTYPE");o=!0}n++,s=""}if(0!==n)throw new Error("Unclosed DOCTYPE")}return{entities:r,i:e}},ot=function(t,e={}){if(e=Object.assign({},et,e),!t||"string"!=typeof t)return t;let r=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(r))return t;if(e.hex&&Q.test(r))return Number.parseInt(r,16);{const n=tt.exec(r);if(n){const i=n[1],o=n[2];let s=function(t){return t&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t}(n[3]);const a=n[4]||n[6];if(!e.leadingZeros&&o.length>0&&i&&"."!==r[2]||!e.leadingZeros&&o.length>0&&!i&&"."!==r[1])return t;{const n=Number(r),u=""+n;return-1!==u.search(/[eE]/)||a?e.eNotation?n:t:-1!==r.indexOf(".")?"0"===u&&""===s||u===s||i&&u==="-"+s?n:t:o?s===u||i+s===u?n:t:r===u||r===i+u?n:t}}return t}};function st(t){const e=Object.keys(t);for(let r=0;r0)){s||(t=this.replaceEntitiesValue(t));const n=this.options.tagValueProcessor(e,t,r,i,o);return null==n?t:typeof n!=typeof t||n!==t?n:this.options.trimValues||t.trim()===t?wt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function ut(t){if(this.options.removeNSPrefix){const e=t.split(":"),r="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=r+e[1])}return t}"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,rt.nameRegexp);const ct=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function lt(t,e,r){if(!this.options.ignoreAttributes&&"string"==typeof t){const r=rt.getAllMatches(t,ct),n=r.length,i={};for(let t=0;t",o,"Closing Tag is not closed.");let s=t.substring(o+2,e).trim();if(this.options.removeNSPrefix){const t=s.indexOf(":");-1!==t&&(s=s.substr(t+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));const a=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw new Error(`Unpaired tag can not be used as closing tag: `);let u=0;a&&-1!==this.options.unpairedTags.indexOf(a)?(u=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):u=i.lastIndexOf("."),i=i.substring(0,u),r=this.tagsNodeStack.pop(),n="",o=e}else if("?"===t[o+1]){let e=vt(t,o,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),!(this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags)){const t=new nt(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(r,t,i)}o=e.closeIndex+1}else if("!--"===t.substr(o+1,3)){const e=mt(t,"--\x3e",o+4,"Comment is not closed.");if(this.options.commentPropName){const s=t.substring(o+4,e-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[{[this.options.textNodeName]:s}])}o=e}else if("!D"===t.substr(o+1,2)){const e=it(t,o);this.docTypeEntities=e.entities,o=e.i}else if("!["===t.substr(o+1,2)){const e=mt(t,"]]>",o,"CDATA is not closed.")-2,s=t.substring(o+9,e);if(n=this.saveTextToParentTag(n,r,i),this.options.cdataPropName)r.add(this.options.cdataPropName,[{[this.options.textNodeName]:s}]);else{let t=this.parseTextData(s,r.tagname,i,!0,!1,!0);null==t&&(t=""),r.add(this.options.textNodeName,t)}o=e+2}else{let s=vt(t,o,this.options.removeNSPrefix),a=s.tagName,u=s.tagExp,c=s.attrExpPresent,l=s.closeIndex;this.options.transformTagName&&(a=this.options.transformTagName(a)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));const f=r;if(f&&-1!==this.options.unpairedTags.indexOf(f.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),a!==e.tagname&&(i+=i?"."+a:a),this.isItStopNode(this.options.stopNodes,i,a)){let e="";if(u.length>0&&u.lastIndexOf("/")===u.length-1)o=s.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(a))o=s.closeIndex;else{const r=this.readStopNodeData(t,a,l+1);if(!r)throw new Error(`Unexpected end of ${a}`);o=r.i,e=r.tagContent}const n=new nt(a);a!==u&&c&&(n[":@"]=this.buildAttributesMap(u,i,a)),e&&(e=this.parseTextData(e,a,i,!0,c,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),n.add(this.options.textNodeName,e),this.addChild(r,n,i)}else{if(u.length>0&&u.lastIndexOf("/")===u.length-1){"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),u=a):u=u.substr(0,u.length-1),this.options.transformTagName&&(a=this.options.transformTagName(a));const t=new nt(a);a!==u&&c&&(t[":@"]=this.buildAttributesMap(u,i,a)),this.addChild(r,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new nt(a);this.tagsNodeStack.push(r),a!==u&&c&&(t[":@"]=this.buildAttributesMap(u,i,a)),this.addChild(r,t,i),r=t}n="",o=l}}else n+=t[o];return e.child};function ht(t,e,r){const n=this.options.updateTag(e.tagname,r,e[":@"]);!1===n||("string"==typeof n&&(e.tagname=n),t.addChild(e))}const dt=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const r=this.docTypeEntities[e];t=t.replace(r.regx,r.val)}for(let e in this.lastEntities){const r=this.lastEntities[e];t=t.replace(r.regex,r.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const r=this.htmlEntities[e];t=t.replace(r.regex,r.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function pt(t,e,r,n){return t&&(void 0===n&&(n=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,r,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,n))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function gt(t,e,r){const n="*."+r;for(const r in t){const i=t[r];if(n===i||e===i)return!0}return!1}function mt(t,e,r,n){const i=t.indexOf(e,r);if(-1===i)throw new Error(n);return i+e.length-1}function vt(t,e,r,n=">"){const i=function(t,e,r=">"){let n,i="";for(let o=e;o",r,`${e} is not closed`);if(t.substring(r+2,o).trim()===e&&(i--,0===i))return{tagContent:t.substring(n,r),i:o};r=o}else if("?"===t[r+1])r=mt(t,"?>",r+1,"StopNode is not closed.");else if("!--"===t.substr(r+1,3))r=mt(t,"--\x3e",r+3,"StopNode is not closed.");else if("!["===t.substr(r+1,2))r=mt(t,"]]>",r,"StopNode is not closed.")-2;else{const n=vt(t,r,">");n&&((n&&n.tagName)===e&&"/"!==n.tagExp[n.tagExp.length-1]&&i++,r=n.closeIndex)}}function wt(t,e,r){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&ot(t,r)}return rt.isExist(t)?t:""}var bt={};function xt(t,e,r){let n;const i={};for(let o=0;o0&&(i[e.textNodeName]=n):void 0!==n&&(i[e.textNodeName]=n),i}function Et(t){const e=Object.keys(t);for(let t=0;t"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"}},this.addExternalEntities=st,this.parseXml=ft,this.parseTextData=at,this.resolveNameSpace=ut,this.buildAttributesMap=lt,this.isItStopNode=gt,this.replaceEntitiesValue=dt,this.readStopNodeData=yt,this.saveTextToParentTag=pt,this.addChild=ht}},{prettify:Ct}=bt,Pt=N;function Lt(t,e,r,n){let i="",o=!1;for(let s=0;s`,o=!1;continue}if(u===e.commentPropName){i+=n+`\x3c!--${a[u][0][e.textNodeName]}--\x3e`,o=!0;continue}if("?"===u[0]){const t=jt(a[":@"],e),r="?xml"===u?"":n;let s=a[u][0][e.textNodeName];s=0!==s.length?" "+s:"",i+=r+`<${u}${s}${t}?>`,o=!0;continue}let l=n;""!==l&&(l+=e.indentBy);const f=n+`<${u}${jt(a[":@"],e)}`,h=Lt(a[u],e,c,l);-1!==e.unpairedTags.indexOf(u)?e.suppressUnpairedNode?i+=f+">":i+=f+"/>":h&&0!==h.length||!e.suppressEmptyNode?h&&h.endsWith(">")?i+=f+`>${h}${n}`:(i+=f+">",h&&""!==n&&(h.includes("/>")||h.includes("`):i+=f+"/>",o=!0}return i}function Tt(t){const e=Object.keys(t);for(let t=0;t0&&e.processEntities)for(let r=0;r0&&(r="\n"),Lt(t,e,"",r)},Dt={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&"},{regex:new RegExp(">","g"),val:">"},{regex:new RegExp("<","g"),val:"<"},{regex:new RegExp("'","g"),val:"'"},{regex:new RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function Ft(t){this.options=Object.assign({},Dt,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=$t),this.processTextOrObjNode=Rt,this.options.format?(this.indentate=Vt,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function Rt(t,e,r){const n=this.j2x(t,r+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,n.attrStr,r):this.buildObjectNode(n.val,e,n.attrStr,r)}function Vt(t){return this.options.indentBy.repeat(t)}function $t(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}Ft.prototype.build=function(t){return this.options.preserveOrder?kt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},Ft.prototype.j2x=function(t,e){let r="",n="";for(let i in t)if(typeof t[i]>"u")this.isAttribute(i)&&(n+="");else if(null===t[i])this.isAttribute(i)?n+="":"?"===i[0]?n+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)n+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const o=this.isAttribute(i);if(o)r+=this.buildAttrPairStr(o,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);n+=this.replaceEntitiesValue(e)}else n+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const r=t[i].length;let o="";for(let s=0;s"u"||(null===r?"?"===i[0]?n+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof r?this.options.oneListGroup?o+=this.j2x(r,e+1).val:o+=this.processTextOrObjNode(r,i,e):o+=this.buildTextValNode(r,i,"",e))}this.options.oneListGroup&&(o=this.buildObjectNode(o,i,"",e)),n+=o}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),n=e.length;for(let o=0;o"+t+i}},Ft.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(n)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(n)+"<"+e+r+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(n)+"<"+e+r+this.closeTag(e)+this.tagEndChar:this.indentate(n)+"<"+e+r+">"+i+"0&&this.options.processEntities)for(let e=0;e0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length||!0!==Gt.XMLValidator.validate(t))return!1;let e;const r=new Gt.XMLParser;try{e=r.parse(t)}catch{return!1}return!(!e||!("svg"in e))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof A))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0};var Mt=r(93379),Ut=r.n(Mt),zt=r(7795),Yt=r.n(zt),qt=r(90569),Xt=r.n(qt),Wt=r(3565),Zt=r.n(Wt),Ht=r(19216),Kt=r.n(Ht),Jt=r(44589),Qt=r.n(Jt),te=r(15735),ee={};function re(t){return re="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},re(t)}function ne(){ne=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",a=i.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,i){var o=e&&e.prototype instanceof h?e:h,s=Object.create(o.prototype),a=new N(i||[]);return n(s,"_invoke",{value:x(t,r,a)}),s}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var f={};function h(){}function d(){}function p(){}var g={};u(g,o,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(O([])));v&&v!==e&&r.call(v,o)&&(g=v);var y=p.prototype=h.prototype=Object.create(g);function w(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function b(t,e){function i(n,o,s,a){var u=l(t[n],t,o);if("throw"!==u.type){var c=u.arg,f=c.value;return f&&"object"==re(f)&&r.call(f,"__await")?e.resolve(f.__await).then((function(t){i("next",t,s,a)}),(function(t){i("throw",t,s,a)})):e.resolve(f).then((function(t){c.value=t,s(c)}),(function(t){return i("throw",t,s,a)}))}a(u.arg)}var o;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){i(t,r,e,n)}))}return o=o?o.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(i,o){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===i)throw o;return{value:void 0,done:!0}}for(r.method=i,r.arg=o;;){var s=r.delegate;if(s){var a=E(s,r);if(a){if(a===f)continue;return a}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=l(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===f)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function E(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,E(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var i=l(n,t.iterator,e.arg);if("throw"===i.type)return e.method="throw",e.arg=i.arg,e.delegate=null,f;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=void 0),e.delegate=null,f):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,f)}function A(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 _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function N(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function O(t){if(t){var e=t[o];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function e(){for(;++n=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function ie(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}function oe(t){return function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){ie(o,n,i,s,a,"next",t)}function a(t){ie(o,n,i,s,a,"throw",t)}s(void 0)}))}}ee.styleTagTransform=Qt(),ee.setAttributes=Zt(),ee.insert=Xt().bind(null,"head"),ee.domAPI=Yt(),ee.insertStyleElement=Kt(),Ut()(te.Z,ee),te.Z&&te.Z.locals&&te.Z.locals;var se,ae=function(t){var e,r=null===(e=t.attributes)||void 0===e||null===(e=e["system-tags"])||void 0===e?void 0:e["system-tag"];return void 0===r?[]:[r].flat()},ue=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=document.createElement("li");return r.classList.add("files-list__system-tag"),r.textContent=t,e&&r.classList.add("files-list__system-tag--more"),r},ce=new class{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if(t.default&&!Object.values(h).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}({id:"system-tags",displayName:function(){return""},iconSvgInline:function(){return""},enabled:function(t){if(1!==t.length)return!1;var e=t[0];return 0!==ae(e).length},exec:(se=oe(ne().mark((function t(){return ne().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",null);case 1:case"end":return t.stop()}}),t)}))),function(){return se.apply(this,arguments)}),renderInline:function(t){return oe(ne().mark((function e(){var r,n,i,s,a;return ne().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(0!==(r=ae(t)).length){e.next=3;break}return e.abrupt("return",null);case 3:return(n=document.createElement("ul")).classList.add("files-list__system-tags"),1===r.length?n.setAttribute("aria-label",(0,o.Iu)("files","This file has the tag {tag}",{tag:r[0]})):(i=r.slice(0,-1).join(", "),s=r[r.length-1],n.setAttribute("aria-label",(0,o.Iu)("files","This file has the tags {firstTags} and {lastTag}",{firstTags:i,lastTag:s}))),n.append(ue(r[0])),r.length>1&&((a=ue("+"+(r.length-1),!0)).setAttribute("title",r.slice(1).join(", ")),n.append(a)),e.abrupt("return",n);case 9:case"end":return e.stop()}}),e)})))()},order:0});!function(t,e={nc:"http://nextcloud.org/ns"}){typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...p],window._nc_dav_namespaces={...g});const r={...window._nc_dav_namespaces,...e};window._nc_dav_properties.find((e=>e===t))?l.error(`${t} already registered`,{prop:t}):t.startsWith("<")||2!==t.split(":").length?l.error(`${t} is not valid. See example: 'oc:fileid'`,{prop:t}):r[t.split(":")[0]]?(window._nc_dav_properties.push(t),window._nc_dav_namespaces=r):l.error(`${t} namespace unknown`,{prop:t,namespaces:r})}("nc:system-tags"),function(t){typeof window._nc_fileactions>"u"&&(window._nc_fileactions=[],l.debug("FileActions initialized")),window._nc_fileactions.find((e=>e.id===t.id))?l.error(`FileAction ${t.id} already registered`,{action:t}):window._nc_fileactions.push(t)}(ce),r(48033);var le,fe=(0,a.generateRemoteUrl)("dav"),he=(0,u.eI)(fe,{headers:{requesttoken:null!==(le=(0,n.IH)())&&void 0!==le?le:""}}),de=r(23204),pe=r.n(de);function ge(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function be(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}var xe,Ee=function(){var t,e=(t=we().mark((function t(){var e,r;return we().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=1,t.next=4,he.getDirectoryContents("/systemtags",{data:'\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n',details:!0,glob:"/systemtags/*"});case 4:return e=t.sent,r=e.data,t.abrupt("return",me(r));case 9:throw t.prev=9,t.t0=t.catch(1),ve.error((0,o.Iu)("systemtags","Failed to load tags"),{error:t.t0}),new Error((0,o.Iu)("systemtags","Failed to load tags"));case 13:case"end":return t.stop()}}),t,null,[[1,9]])})),function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){be(o,n,i,s,a,"next",t)}function a(t){be(o,n,i,s,a,"throw",t)}s(void 0)}))});return function(){return e.apply(this,arguments)}}(),Ae="/files/".concat(null===(xe=(0,n.ts)())||void 0===xe?void 0:xe.uid),_e=(0,a.generateRemoteUrl)("dav"+Ae),Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_e,e=(0,u.eI)(t,{headers:{requesttoken:(0,n.IH)()||""}});return(0,u.lD)().patch("request",(function(t){var e;return null!==(e=t.headers)&&void 0!==e&&e.method&&(t.method=t.headers.method,delete t.headers.method),(0,c.W)(t)})),e};function Oe(t){return Oe="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},Oe(t)}function Ce(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Pe(t){for(var e=1;e=0;--i){var o=this.tryEntries[i],s=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var a=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(a&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;_(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:O(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},t}function Ie(t,e,r,n,i,o,s){try{var a=t[o](s),u=a.value}catch(t){return void r(t)}a.done?e(u):Promise.resolve(u).then(n,i)}function ke(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function De(t){for(var e=1;e\n"u"&&(window._nc_dav_namespaces={...g}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")),">\n\t\n\t\t").concat((typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...p]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")),"\n\t\n \n ").concat(t,"\n \n")},Ve=function(t){var e;return new E({id:t.id,source:(0,a.generateRemoteUrl)("dav/systemtags/"+t.id),owner:null===(e=(0,n.ts)())||void 0===e?void 0:e.uid,root:"/systemtags",permissions:d.READ,attributes:De(De({},t),{},{"is-tag":!0})})},$e=function(){var t,e=(t=Se().mark((function t(){var e,r,i,o,s,u,c,l=arguments;return Se().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e=l.length>0&&void 0!==l[0]?l[0]:"/",t.next=3,Ee();case 3:if(r=t.sent.filter((function(t){return t.userVisible})),"/"!==e){t.next=6;break}return t.abrupt("return",{folder:new E({id:0,source:(0,a.generateRemoteUrl)("dav/systemtags"),owner:null===(i=(0,n.ts)())||void 0===i?void 0:i.uid,root:"/systemtags",permissions:d.NONE}),contents:r.map(Ve)});case 6:if(o=parseInt(e.replace("/",""),10),s=r.find((function(t){return t.id===o}))){t.next=10;break}throw new Error("Tag not found");case 10:return u=Ve(s),t.next=13,Ne().getDirectoryContents("/",{details:!0,data:Re(o),headers:{method:"REPORT"}});case 13:return c=t.sent,t.abrupt("return",{folder:u,contents:c.data.map(Te)});case 15:case"end":return t.stop()}}),t)})),function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function s(t){Ie(o,n,i,s,a,"next",t)}function a(t){Ie(o,n,i,s,a,"throw",t)}s(void 0)}))});return function(){return e.apply(this,arguments)}}();(typeof window._nc_navigation>"u"&&(window._nc_navigation=new class{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}},l.debug("Navigation service initialized")),window._nc_navigation).register(new class{_view;constructor(t){Bt(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}({id:"tags",name:(0,o.Iu)("systemtags","Tags"),caption:(0,o.Iu)("systemtags","List of tags and their associated files and folders."),emptyTitle:(0,o.Iu)("systemtags","No tags found"),emptyCaption:(0,o.Iu)("systemtags","Tags you have created will show up here."),icon:'',order:25,getContents:$e}))},23204:function(t){"use strict";const e=/[\p{Lu}]/u,r=/[\p{Ll}]/u,n=/^[\p{Lu}](?![\p{Lu}])/gu,i=/([\p{Alpha}\p{N}_]|$)/u,o=/[_.\- ]+/,s=new RegExp("^"+o.source),a=new RegExp(o.source+i.source,"gu"),u=new RegExp("\\d+"+i.source,"gu"),c=(t,i)=>{if("string"!=typeof t&&!Array.isArray(t))throw new TypeError("Expected the input to be `string | string[]`");if(i={pascalCase:!1,preserveConsecutiveUppercase:!1,...i},0===(t=Array.isArray(t)?t.map((t=>t.trim())).filter((t=>t.length)).join("-"):t.trim()).length)return"";const o=!1===i.locale?t=>t.toLowerCase():t=>t.toLocaleLowerCase(i.locale),c=!1===i.locale?t=>t.toUpperCase():t=>t.toLocaleUpperCase(i.locale);return 1===t.length?i.pascalCase?c(t):o(t):(t!==o(t)&&(t=((t,n,i)=>{let o=!1,s=!1,a=!1;for(let u=0;u(n.lastIndex=0,t.replace(n,(t=>e(t)))))(t,o):o(t),i.pascalCase&&(t=c(t.charAt(0))+t.slice(1)),((t,e)=>(a.lastIndex=0,u.lastIndex=0,t.replace(a,((t,r)=>e(r))).replace(u,(t=>e(t)))))(t,c))};t.exports=c,t.exports.default=c},3443:function(t,e,r){var n,i,o=r(25108);function s(t){return s="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},s(t)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,n=function(t){"use strict";function e(t,r){return e=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},e(t,r)}function r(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var r,i=n(t);if(e){var o=n(this).constructor;r=Reflect.construct(i,arguments,o)}else r=i.apply(this,arguments);return function(t,e){if(e&&("object"===s(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,r)}}function n(t){return n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},n(t)}function i(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,i=function(){};return{s:i,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){u=!0,o=t},f:function(){try{s||null==r.return||r.return()}finally{if(u)throw o}}}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r\n *\n * @author Lucas Azevedo \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\n\n.files-list__system-tags {\n\t--min-size: 32px;\n\tdisplay: none;\n\tjustify-content: center;\n\talign-items: center;\n\tmin-width: calc(var(--min-size) * 2);\n\tmax-width: 300px;\n}\n\n.files-list__system-tag {\n\tpadding: 5px 10px;\n\tborder: 1px solid;\n\tborder-radius: var(--border-radius-pill);\n\tborder-color: var(--color-border);\n\tcolor: var(--color-text-maxcontrast);\n\theight: var(--min-size);\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\tline-height: 22px; // min-size - 2 * 5px padding\n\ttext-align: center;\n\n\t&--more {\n\t\toverflow: visible;\n\t\ttext-overflow: initial;\n\t}\n\n\t// Proper spacing if multiple shown\n\t& + .files-list__system-tag {\n\t\tmargin-left: 5px;\n\t}\n}\n\n@media (min-width: 512px) {\n\t.files-list__system-tags {\n\t\tdisplay: flex;\n\t}\n}\n"],sourceRoot:""}]),e.Z=s},24654:function(){},52361:function(){},94616:function(){}},r={};function n(t){var i=r[t];if(void 0!==i)return i.exports;var o=r[t]={id:t,loaded:!1,exports:{}};return e[t].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}n.m=e,t=[],n.O=function(e,r,i,o){if(!r){var s=1/0;for(l=0;l=o)&&Object.keys(n.O).every((function(t){return n.O[t](r[u])}))?r.splice(u--,1):(a=!1,o0&&t[l-1][2]>o;l--)t[l]=t[l-1];t[l]=[r,i,o]},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.e=function(){return Promise.resolve()},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nmd=function(t){return t.paths=[],t.children||(t.children=[]),t},n.j=5191,function(){n.b=document.baseURI||self.location.href;var t={5191:0};n.O.j=function(e){return 0===t[e]};var e=function(e,r){var i,o,s=r[0],a=r[1],u=r[2],c=0;if(s.some((function(e){return 0!==t[e]}))){for(i in a)n.o(a,i)&&(n.m[i]=a[i]);if(u)var l=u(n)}for(e&&e(r);c 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./fileEntryInlineSystemTags.scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./fileEntryInlineSystemTags.scss\";\n export default content && content.locals ? content.locals : undefined;\n","/**\n * @copyright Copyright (c) 2023 Lucas Azevedo \n *\n * @author Lucas Azevedo \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { FileAction, Node, registerDavProperty, registerFileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport '../css/fileEntryInlineSystemTags.scss';\nconst getNodeSystemTags = function (node) {\n const tags = node.attributes?.['system-tags']?.['system-tag'];\n if (tags === undefined) {\n return [];\n }\n return [tags].flat();\n};\nconst renderTag = function (tag, isMore = false) {\n const tagElement = document.createElement('li');\n tagElement.classList.add('files-list__system-tag');\n tagElement.textContent = tag;\n if (isMore) {\n tagElement.classList.add('files-list__system-tag--more');\n }\n return tagElement;\n};\nexport const action = new FileAction({\n id: 'system-tags',\n displayName: () => '',\n iconSvgInline: () => '',\n enabled(nodes) {\n // Only show the action on single nodes\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n const tags = getNodeSystemTags(node);\n // Only show the action if the node has system tags\n if (tags.length === 0) {\n return false;\n }\n return true;\n },\n exec: async () => null,\n async renderInline(node) {\n // Ensure we have the system tags as an array\n const tags = getNodeSystemTags(node);\n if (tags.length === 0) {\n return null;\n }\n const systemTagsElement = document.createElement('ul');\n systemTagsElement.classList.add('files-list__system-tags');\n if (tags.length === 1) {\n systemTagsElement.setAttribute('aria-label', t('files', 'This file has the tag {tag}', { tag: tags[0] }));\n }\n else {\n const firstTags = tags.slice(0, -1).join(', ');\n const lastTag = tags[tags.length - 1];\n systemTagsElement.setAttribute('aria-label', t('files', 'This file has the tags {firstTags} and {lastTag}', { firstTags, lastTag }));\n }\n systemTagsElement.append(renderTag(tags[0]));\n // More tags than the one we're showing\n if (tags.length > 1) {\n const moreTagElement = renderTag('+' + (tags.length - 1), true);\n moreTagElement.setAttribute('title', tags.slice(1).join(', '));\n systemTagsElement.append(moreTagElement);\n }\n return systemTagsElement;\n },\n order: 0,\n});\nregisterDavProperty('nc:system-tags');\nregisterFileAction(action);\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { createClient } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getRequestToken } from '@nextcloud/auth';\nconst rootUrl = generateRemoteUrl('dav');\nexport const davClient = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() ?? '',\n },\n});\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport camelCase from 'camelcase';\nexport const parseTags = (tags) => {\n return tags.map(({ props }) => Object.fromEntries(Object.entries(props)\n .map(([key, value]) => [camelCase(key), value])));\n};\n/**\n * Parse id from `Content-Location` header\n */\nexport const parseIdFromLocation = (url) => {\n const queryPos = url.indexOf('?');\n if (queryPos > 0) {\n url = url.substring(0, queryPos);\n }\n const parts = url.split('/');\n let result;\n do {\n result = parts[parts.length - 1];\n parts.pop();\n // note: first result can be empty when there is a trailing slash,\n // so we take the part before that\n } while (!result && parts.length > 0);\n return Number(result);\n};\nexport const formatTag = (initialTag) => {\n const tag = { ...initialTag };\n if (tag.name && !tag.displayName) {\n return tag;\n }\n tag.name = tag.displayName;\n delete tag.displayName;\n return tag;\n};\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger';\nexport const logger = getLoggerBuilder()\n .setApp('systemtags')\n .detectUser()\n .build();\n","import axios from '@nextcloud/axios';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { davClient } from './davClient.js';\nimport { formatTag, parseIdFromLocation, parseTags } from '../utils';\nimport { logger } from '../logger.js';\nconst fetchTagsBody = `\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n`;\nexport const fetchTags = async () => {\n const path = '/systemtags';\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load tags'), { error });\n throw new Error(t('systemtags', 'Failed to load tags'));\n }\n};\nexport const fetchLastUsedTagIds = async () => {\n const url = generateUrl('/apps/systemtags/lastused');\n try {\n const { data: lastUsedTagIds } = await axios.get(url);\n return lastUsedTagIds.map(Number);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load last used tags'), { error });\n throw new Error(t('systemtags', 'Failed to load last used tags'));\n }\n};\nexport const fetchSelectedTags = async (fileId) => {\n const path = '/systemtags-relations/files/' + fileId;\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags-relations/files/*/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load selected tags'), { error });\n throw new Error(t('systemtags', 'Failed to load selected tags'));\n }\n};\nexport const selectTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n const tagToPut = formatTag(tag);\n try {\n await davClient.customRequest(path, {\n method: 'PUT',\n data: tagToPut,\n });\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to select tag'), { error });\n throw new Error(t('systemtags', 'Failed to select tag'));\n }\n};\n/**\n * @return created tag id\n */\nexport const createTag = async (fileId, tag) => {\n const path = '/systemtags';\n const tagToPost = formatTag(tag);\n try {\n const { headers } = await davClient.customRequest(path, {\n method: 'POST',\n data: tagToPost,\n });\n const contentLocation = headers.get('content-location');\n if (contentLocation) {\n const tagToPut = {\n ...tagToPost,\n id: parseIdFromLocation(contentLocation),\n };\n await selectTag(fileId, tagToPut);\n return tagToPut.id;\n }\n logger.error(t('systemtags', 'Missing \"Content-Location\" header'));\n throw new Error(t('systemtags', 'Missing \"Content-Location\" header'));\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to create tag'), { error });\n throw new Error(t('systemtags', 'Failed to create tag'));\n }\n};\nexport const deleteTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n try {\n await davClient.deleteFile(path);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to delete tag'), { error });\n throw new Error(t('systemtags', 'Failed to delete tag'));\n }\n};\n","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","import { cancelable, CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDefaultPropfind } from './DavProperties';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = getCurrentUser()?.uid;\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime,\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = getDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","import { Folder, Permission, getDavNameSpaces, getDavProperties } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { fetchTags } from './api';\nimport { getClient } from '../../../files/src/services/WebdavClient';\nimport { resultToNode } from '../../../files/src/services/Files';\nlet tagsCache = [];\nconst formatReportPayload = (tagId) => `\n\n\t\n\t\t${getDavProperties()}\n\t\n \n ${tagId}\n \n`;\nconst tagToNode = function (tag) {\n return new Folder({\n id: tag.id,\n source: generateRemoteUrl('dav/systemtags/' + tag.id),\n owner: getCurrentUser()?.uid,\n root: '/systemtags',\n permissions: Permission.READ,\n attributes: {\n ...tag,\n 'is-tag': true,\n },\n });\n};\nexport const getContents = async (path = '/') => {\n // List tags in the root\n tagsCache = await fetchTags();\n if (path === '/') {\n return {\n folder: new Folder({\n id: 0,\n source: generateRemoteUrl('dav/systemtags'),\n owner: getCurrentUser()?.uid,\n root: '/systemtags',\n }),\n contents: tagsCache.map(tagToNode),\n };\n }\n const tagId = parseInt(path.replace('/', ''), 10);\n const tag = tagsCache.find(tag => tag.id === tagId);\n if (!tag) {\n throw new Error('Tag not found');\n }\n const folder = tagToNode(tag);\n const contentsResponse = await getClient().getDirectoryContents('/', {\n details: true,\n // Only filter favorites if we're at the root\n data: formatReportPayload(tagId),\n headers: {\n // Patched in WebdavClient.ts\n method: 'REPORT',\n },\n });\n return {\n folder,\n contents: contentsResponse.data.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2016 Roeland Jago Douma \n *\n * @author John Molakvoæ \n * @author Roeland Jago Douma \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport './actions/inlineSystemTagsAction.js';\nimport { translate as t } from '@nextcloud/l10n';\nimport { Column, Node, View, getNavigation } from '@nextcloud/files';\nimport TagMultipleSvg from '@mdi/svg/svg/tag-multiple.svg?raw';\nimport { getContents } from './services/systemtags.js';\nconst Navigation = getNavigation();\nNavigation.register(new View({\n id: 'tags',\n name: t('systemtags', 'Tags'),\n caption: t('systemtags', 'List of tags and their associated files and folders.'),\n emptyTitle: t('systemtags', 'No tags found'),\n emptyCaption: t('systemtags', 'Tags you have created will show up here.'),\n icon: TagMultipleSvg,\n order: 25,\n getContents,\n}));\n","'use strict';\n\nconst UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\n\tfor (let i = 0; i < string.length; i++) {\n\t\tconst character = string[i];\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i) + '-' + string.slice(i);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\ti++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i - 1) + '-' + string.slice(i - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replace(LEADING_CAPITAL, m1 => toLowerCase(m1));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input.replace(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier))\n\t\t.replace(NUMBERS_AND_IDENTIFIER, m => toUpperCase(m));\n};\n\nconst camelCase = (input, options) => {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false ?\n\t\tstring => string.toLowerCase() :\n\t\tstring => string.toLocaleLowerCase(options.locale);\n\tconst toUpperCase = options.locale === false ?\n\t\tstring => string.toUpperCase() :\n\t\tstring => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\n\tif (options.preserveConsecutiveUppercase) {\n\t\tinput = preserveConsecutiveUppercase(input, toLowerCase);\n\t} else {\n\t\tinput = toLowerCase(input);\n\t}\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n};\n\nmodule.exports = camelCase;\n// TODO: Remove this for the next major release\nmodule.exports.default = camelCase;\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__system-tags{--min-size: 32px;display:none;justify-content:center;align-items:center;min-width:calc(var(--min-size)*2);max-width:300px}.files-list__system-tag{padding:5px 10px;border:1px solid;border-radius:var(--border-radius-pill);border-color:var(--color-border);color:var(--color-text-maxcontrast);height:var(--min-size);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:22px;text-align:center}.files-list__system-tag--more{overflow:visible;text-overflow:initial}.files-list__system-tag+.files-list__system-tag{margin-left:5px}@media(min-width: 512px){.files-list__system-tags{display:flex}}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/systemtags/src/css/fileEntryInlineSystemTags.scss\"],\"names\":[],\"mappings\":\"AAsBA,yBACC,gBAAA,CACA,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,iCAAA,CACA,eAAA,CAGD,wBACC,gBAAA,CACA,gBAAA,CACA,uCAAA,CACA,gCAAA,CACA,mCAAA,CACA,sBAAA,CACA,kBAAA,CACA,eAAA,CACA,sBAAA,CACA,gBAAA,CACA,iBAAA,CAEA,8BACC,gBAAA,CACA,qBAAA,CAID,gDACC,eAAA,CAIF,yBACC,yBACC,YAAA,CAAA\",\"sourcesContent\":[\"/**\\n * @copyright Copyright (c) 2023 Lucas Azevedo \\n *\\n * @author Lucas Azevedo \\n *\\n * @license AGPL-3.0-or-later\\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 .\\n *\\n */\\n\\n.files-list__system-tags {\\n\\t--min-size: 32px;\\n\\tdisplay: none;\\n\\tjustify-content: center;\\n\\talign-items: center;\\n\\tmin-width: calc(var(--min-size) * 2);\\n\\tmax-width: 300px;\\n}\\n\\n.files-list__system-tag {\\n\\tpadding: 5px 10px;\\n\\tborder: 1px solid;\\n\\tborder-radius: var(--border-radius-pill);\\n\\tborder-color: var(--color-border);\\n\\tcolor: var(--color-text-maxcontrast);\\n\\theight: var(--min-size);\\n\\twhite-space: nowrap;\\n\\toverflow: hidden;\\n\\ttext-overflow: ellipsis;\\n\\tline-height: 22px; // min-size - 2 * 5px padding\\n\\ttext-align: center;\\n\\n\\t&--more {\\n\\t\\toverflow: visible;\\n\\t\\ttext-overflow: initial;\\n\\t}\\n\\n\\t// Proper spacing if multiple shown\\n\\t& + .files-list__system-tag {\\n\\t\\tmargin-left: 5px;\\n\\t}\\n}\\n\\n@media (min-width: 512px) {\\n\\t.files-list__system-tags {\\n\\t\\tdisplay: flex;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","// The chunk loading function for additional chunks\n// Since all referenced chunks are already included\n// in this file, this function is empty here.\n__webpack_require__.e = function() { return Promise.resolve(); };","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 5191;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t5191: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(36992); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","m","t","setApp","build","setUid","uid","H","DEFAULT","HIDDEN","v","NONE","CREATE","READ","UPDATE","DELETE","SHARE","ALL","K","W","d","nc","oc","ocs","$","Folder","File","Y","e","match","M","id","Error","source","URL","startsWith","mtime","Date","crtime","mime","size","permissions","owner","attributes","root","includes","i","status","Object","values","Z","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","constructor","this","s","set","n","r","l","updateMtime","Reflect","deleteProperty","Proxy","replace","basename","extension","dirname","indexOf","slice","length","pathname","isDavRessource","split","pop","path","fileid","move","rename","xt","type","bt","super","_t","_column","At","title","render","sort","summary","k","T","RegExp","isExist","o","isEmptyObject","keys","merge","a","u","h","c","getValue","isName","exec","getAllMatches","startIndex","lastIndex","f","push","nameRegexp","L","Tt","allowBooleanAttributes","unpairedTags","B","q","substr","p","g","U","validate","assign","err","trim","substring","Vt","Pt","value","index","z","code","msg","line","tagClosed","tagName","tagStartPos","col","St","JSON","stringify","map","It","Ot","Ct","b","Ft","hasOwnProperty","Dt","P","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","isArray","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Rt","Mt","Bt","qt","Ut","zt","Gt","Xt","Kt","Wt","Number","parseInt","window","parseFloat","Yt","decimalPoint","R","E","tagname","child","add","addChild","te","entityName","val","regx","entities","ee","skipLike","test","Jt","search","ne","lastEntities","regex","re","options","replaceEntitiesValue","D","se","charAt","oe","ae","resolveNameSpace","le","x","saveTextToParentTag","lastIndexOf","tagsNodeStack","C","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","isItStopNode","w","readStopNodeData","tagContent","de","ue","ampEntity","ce","he","data","pe","fe","it","nt","we","ye","ve","Array","prettify","xe","be","currentNode","apos","gt","lt","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","Ee","Ne","rt","Oe","Pe","st","G","ot","N","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","De","format","Se","oneListGroup","y","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","repeat","prototype","arrayNodeName","buildAttrPairStr","closeTag","X","XMLParser","externalEntities","parse","toString","addEntity","XMLValidator","XMLBuilder","Be","name","columns","caption","getContents","icon","TypeError","Me","order","forEach","emptyView","parent","sticky","expanded","defaultSortKey","_regeneratorRuntime","exports","Op","hasOwn","defineProperty","obj","key","desc","$Symbol","Symbol","iteratorSymbol","iterator","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","define","enumerable","configurable","writable","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","create","context","Context","makeInvokeMethod","tryCatch","fn","arg","call","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","getPrototypeOf","NativeIteratorPrototype","Gp","defineIteratorMethods","method","_invoke","AsyncIterator","PromiseImpl","invoke","resolve","reject","record","result","_typeof","__await","then","unwrapped","error","previousPromise","callInvokeWithMethodAndArg","state","undefined","done","delegate","delegateResult","maybeInvokeDelegate","sent","_sent","dispatchException","abrupt","methodName","return","info","resultName","next","nextLoc","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","iterable","iteratorMethod","isNaN","doneResult","displayName","isGeneratorFunction","genFun","ctor","mark","setPrototypeOf","__proto__","awrap","async","Promise","iter","object","reverse","skipTempReset","prev","stop","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","finish","catch","thrown","delegateYield","asyncGeneratorStep","gen","_next","_throw","_asyncToGenerator","args","arguments","apply","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","_exec","getNodeSystemTags","node","_node$attributes","tags","flat","renderTag","tag","isMore","tagElement","document","createElement","classList","textContent","action","_action","validateAction","iconSvgInline","enabled","execBatch","default","inline","renderInline","nodes","_callee","_context","_callee2","systemTagsElement","firstTags","lastTag","moreTagElement","_context2","setAttribute","join","append","_nc_dav_properties","_nc_dav_namespaces","find","prop","namespaces","registerDavProperty","_nc_fileactions","debug","registerFileAction","rootUrl","generateRemoteUrl","davClient","createClient","headers","requesttoken","_getRequestToken","getRequestToken","parseTags","_ref","props","fromEntries","entries","_ref2","_ref3","camelCase","logger","getLoggerBuilder","detectUser","fetchTags","_yield$davClient$getD","getDirectoryContents","details","glob","t0","rootPath","concat","_getCurrentUser","getCurrentUser","defaultRootUrl","getClient","client","getPatcher","patch","_options$headers","request","ownKeys","enumerableOnly","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","_objectSpread","target","_defineProperty","getOwnPropertyDescriptors","defineProperties","input","hint","prim","toPrimitive","res","String","_toPrimitive","_toPropertyKey","resultToNode","davParsePermissions","filename","reduce","charCodeAt","nodeData","lastmod","hasPreview","failed","tagsCache","formatReportPayload","tagId","tagToNode","Permission","_getCurrentUser2","folder","contentsResponse","_args","contents","_nc_navigation","_views","_currentView","register","remove","findIndex","splice","views","setActive","active","_view","emptyTitle","emptyCaption","params","UPPERCASE","LOWERCASE","LEADING_CAPITAL","IDENTIFIER","SEPARATORS","LEADING_SEPARATORS","SEPARATORS_AND_IDENTIFIER","NUMBERS_AND_IDENTIFIER","pascalCase","preserveConsecutiveUppercase","toLowerCase","locale","string","toLocaleLowerCase","toUpperCase","toLocaleUpperCase","isLastCharLower","isLastCharUpper","isLastLastCharUpper","character","preserveCamelCase","m1","_","identifier","postProcess","module","globalThis","_exports","_setPrototypeOf","bind","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","Boolean","valueOf","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","_createForOfIteratorHelper","allowArrayLike","minLen","_arrayLikeToArray","from","_unsupportedIterableToArray","F","_e","normalCompletion","didErr","step","_e2","arr","len","arr2","_classCallCheck","instance","Constructor","_defineProperties","descriptor","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","has","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","get","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","CancelablePromise","cancelable","isCancelablePromise","_internals","WeakMap","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","promise","onCancel","cancel","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","_this","finally","callback","callbacks","_step","_iterator","console","_CancelablePromiseInt","subClass","superClass","_inherits","_super","makeAllCancelable","all","allSettled","any","race","reason","_default","onResult","_step2","_iterator2","resolvable","___CSS_LOADER_EXPORT___","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","O","chunkIds","priority","notFulfilled","Infinity","fulfilled","j","every","getter","__esModule","definition","Function","nmd","paths","children","baseURI","location","href","installedChunks","chunkId","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","some","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"systemtags-init.js?v=608e80113f3e4620d885","mappings":"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","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./apps/systemtags/src/css/fileEntryInlineSystemTags.scss?0a01","webpack:///nextcloud/apps/systemtags/src/actions/inlineSystemTagsAction.ts","webpack:///nextcloud/apps/systemtags/src/services/davClient.ts","webpack:///nextcloud/apps/systemtags/src/utils.ts","webpack:///nextcloud/apps/systemtags/src/logger.ts","webpack:///nextcloud/apps/systemtags/src/services/api.ts","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/systemtags/src/services/systemtags.ts","webpack:///nextcloud/apps/systemtags/src/init.ts","webpack:///nextcloud/node_modules/camelcase/index.js","webpack:///nextcloud/node_modules/cancelable-promise/umd/CancelablePromise.js","webpack:///nextcloud/apps/systemtags/src/css/fileEntryInlineSystemTags.scss","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","import { getCurrentUser as A, getRequestToken as at } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as j } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as lt } from \"@nextcloud/l10n\";\nimport { join as dt, basename as ut, extname as ct, dirname as _ } from \"path\";\nimport { generateRemoteUrl as ht } from \"@nextcloud/router\";\nimport { createClient as pt, getPatcher as ft } from \"webdav\";\nimport { request as gt } from \"webdav/dist/node/request.js\";\nconst mt = (t) => t === null ? j().setApp(\"files\").build() : j().setApp(\"files\").setUid(t.uid).build(), m = mt(A());\nclass wt {\n _entries = [];\n registerEntry(e) {\n this.validateEntry(e), this._entries.push(e);\n }\n unregisterEntry(e) {\n const i = typeof e == \"string\" ? this.getEntryIndex(e) : this.getEntryIndex(e.id);\n if (i === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: e, entries: this.getEntries() });\n return;\n }\n this._entries.splice(i, 1);\n }\n getEntries(e) {\n return e ? this._entries.filter((i) => typeof i.if == \"function\" ? i.if(e) : !0) : this._entries;\n }\n getEntryIndex(e) {\n return this._entries.findIndex((i) => i.id === e);\n }\n validateEntry(e) {\n if (!e.id || !e.displayName || !(e.iconSvgInline || e.iconClass || e.handler))\n throw new Error(\"Invalid entry\");\n if (typeof e.id != \"string\" || typeof e.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (e.iconClass && typeof e.iconClass != \"string\" || e.iconSvgInline && typeof e.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (e.if !== void 0 && typeof e.if != \"function\")\n throw new Error(\"Invalid if property\");\n if (e.templateName && typeof e.templateName != \"string\")\n throw new Error(\"Invalid templateName property\");\n if (e.handler && typeof e.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (!e.templateName && !e.handler)\n throw new Error(\"At least a templateName or a handler must be provided\");\n if (this.getEntryIndex(e.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst S = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new wt(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n}, I = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], O = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction We(t, e = !1, i = !1) {\n typeof t == \"string\" && (t = Number(t));\n let s = t > 0 ? Math.floor(Math.log(t) / Math.log(i ? 1024 : 1e3)) : 0;\n s = Math.min((i ? O.length : I.length) - 1, s);\n const n = i ? O[s] : I[s];\n let r = (t / Math.pow(i ? 1024 : 1e3, s)).toFixed(1);\n return e === !0 && s === 0 ? (r !== \"0.0\" ? \"< 1 \" : \"0 \") + (i ? O[1] : I[1]) : (s < 2 ? r = parseFloat(r).toFixed(0) : r = parseFloat(r).toLocaleString(lt()), r + \" \" + n);\n}\nvar H = ((t) => (t.DEFAULT = \"default\", t.HIDDEN = \"hidden\", t))(H || {});\nclass Ye {\n _action;\n constructor(e) {\n this.validateAction(e), this._action = e;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!e.displayName || typeof e.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (!e.iconSvgInline || typeof e.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!e.exec || typeof e.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in e && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in e && typeof e.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in e && typeof e.order != \"number\")\n throw new Error(\"Invalid order\");\n if (e.default && !Object.values(H).includes(e.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in e && typeof e.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in e && typeof e.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Ze = function(t) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((e) => e.id === t.id)) {\n m.error(`FileAction ${t.id} already registered`, { action: t });\n return;\n }\n window._nc_fileactions.push(t);\n}, Je = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\nclass Qe {\n _header;\n constructor(e) {\n this.validateHeader(e), this._header = e;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(e) {\n if (!e.id || !e.render || !e.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof e.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (e.enabled !== void 0 && typeof e.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (e.render && typeof e.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (e.updated && typeof e.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst ti = function(t) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((e) => e.id === t.id)) {\n m.error(`Header ${t.id} already registered`, { header: t });\n return;\n }\n window._nc_filelistheader.push(t);\n}, ei = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\nvar v = ((t) => (t[t.NONE = 0] = \"NONE\", t[t.CREATE = 4] = \"CREATE\", t[t.READ = 1] = \"READ\", t[t.UPDATE = 2] = \"UPDATE\", t[t.DELETE = 8] = \"DELETE\", t[t.SHARE = 16] = \"SHARE\", t[t.ALL = 31] = \"ALL\", t))(v || {});\nconst K = [\"d:getcontentlength\", \"d:getcontenttype\", \"d:getetag\", \"d:getlastmodified\", \"d:quota-available-bytes\", \"d:resourcetype\", \"nc:has-preview\", \"nc:is-encrypted\", \"nc:mount-type\", \"nc:share-attributes\", \"oc:comments-unread\", \"oc:favorite\", \"oc:fileid\", \"oc:owner-display-name\", \"oc:owner-id\", \"oc:permissions\", \"oc:share-types\", \"oc:size\", \"ocs:share-permissions\"], W = { d: \"DAV:\", nc: \"http://nextcloud.org/ns\", oc: \"http://owncloud.org/ns\", ocs: \"http://open-collaboration-services.org/ns\" }, ii = function(t, e = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K], window._nc_dav_namespaces = { ...W });\n const i = { ...window._nc_dav_namespaces, ...e };\n if (window._nc_dav_properties.find((n) => n === t))\n return m.error(`${t} already registered`, { prop: t }), !1;\n if (t.startsWith(\"<\") || t.split(\":\").length !== 2)\n return m.error(`${t} is not valid. See example: 'oc:fileid'`, { prop: t }), !1;\n const s = t.split(\":\")[0];\n return i[s] ? (window._nc_dav_properties.push(t), window._nc_dav_namespaces = i, !0) : (m.error(`${t} namespace unknown`, { prop: t, namespaces: i }), !1);\n}, F = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...K]), window._nc_dav_properties.map((t) => `<${t} />`).join(\" \");\n}, V = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...W }), Object.keys(window._nc_dav_namespaces).map((t) => `xmlns:${t}=\"${window._nc_dav_namespaces?.[t]}\"`).join(\" \");\n}, ni = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t`;\n}, vt = function() {\n return `\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\t\n\t\t\t\t1\n\t\t\t\n\t\t`;\n}, ri = function(t) {\n return `\n\n\t\n\t\t\n\t\t\t\n\t\t\t\t${F()}\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t/files/${A()?.uid}/\n\t\t\t\tinfinity\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\thttpd/unix-directory\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t0\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${t}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t100\n\t\t\t0\n\t\t\n\t\n`;\n}, yt = function(t = \"\") {\n let e = v.NONE;\n return t && ((t.includes(\"C\") || t.includes(\"K\")) && (e |= v.CREATE), t.includes(\"G\") && (e |= v.READ), (t.includes(\"W\") || t.includes(\"N\") || t.includes(\"V\")) && (e |= v.UPDATE), t.includes(\"D\") && (e |= v.DELETE), t.includes(\"R\") && (e |= v.SHARE)), e;\n};\nvar $ = ((t) => (t.Folder = \"folder\", t.File = \"file\", t))($ || {});\nconst Y = function(t, e) {\n return t.match(e) !== null;\n}, M = (t, e) => {\n if (t.id && typeof t.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!t.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(t.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!t.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (t.mtime && !(t.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (t.crtime && !(t.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!t.mime || typeof t.mime != \"string\" || !t.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in t && typeof t.size != \"number\" && t.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in t && t.permissions !== void 0 && !(typeof t.permissions == \"number\" && t.permissions >= v.NONE && t.permissions <= v.ALL))\n throw new Error(\"Invalid permissions\");\n if (t.owner && t.owner !== null && typeof t.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (t.attributes && typeof t.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (t.root && typeof t.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (t.root && !t.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (t.root && !t.source.includes(t.root))\n throw new Error(\"Root must be part of the source\");\n if (t.root && Y(t.source, e)) {\n const i = t.source.match(e)[0];\n if (!t.source.includes(dt(i, t.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (t.status && !Object.values(Z).includes(t.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\nvar Z = ((t) => (t.NEW = \"new\", t.FAILED = \"failed\", t.LOADING = \"loading\", t.LOCKED = \"locked\", t))(Z || {});\nclass J {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(e, i) {\n M(e, i || this._knownDavService), this._data = e;\n const s = { set: (n, r, l) => (this.updateMtime(), Reflect.set(n, r, l)), deleteProperty: (n, r) => (this.updateMtime(), Reflect.deleteProperty(n, r)) };\n this._attributes = new Proxy(e.attributes || {}, s), delete this._data.attributes, i && (this._knownDavService = i);\n }\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n get basename() {\n return ut(this.source);\n }\n get extension() {\n return ct(this.source);\n }\n get dirname() {\n if (this.root) {\n const i = this.source.indexOf(this.root);\n return _(this.source.slice(i + this.root.length) || \"/\");\n }\n const e = new URL(this.source);\n return _(e.pathname);\n }\n get mime() {\n return this._data.mime;\n }\n get mtime() {\n return this._data.mtime;\n }\n get crtime() {\n return this._data.crtime;\n }\n get size() {\n return this._data.size;\n }\n get attributes() {\n return this._attributes;\n }\n get permissions() {\n return this.owner === null && !this.isDavRessource ? v.READ : this._data.permissions !== void 0 ? this._data.permissions : v.NONE;\n }\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && _(this.source).split(this._knownDavService).pop() || null;\n }\n get path() {\n if (this.root) {\n const e = this.source.indexOf(this.root);\n return this.source.slice(e + this.root.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n get status() {\n return this._data?.status;\n }\n set status(e) {\n this._data.status = e;\n }\n move(e) {\n M({ ...this._data, source: e }, this._knownDavService), this._data.source = e, this.updateMtime();\n }\n rename(e) {\n if (e.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(_(this.source) + \"/\" + e);\n }\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\nclass xt extends J {\n get type() {\n return $.File;\n }\n}\nclass bt extends J {\n constructor(e) {\n super({ ...e, mime: \"httpd/unix-directory\" });\n }\n get type() {\n return $.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\nconst Q = `/files/${A()?.uid}`, tt = ht(\"dav\"), si = function(t = tt) {\n const e = pt(t, { headers: { requesttoken: at() || \"\" } });\n return ft().patch(\"request\", (i) => (i.headers?.method && (i.method = i.headers.method, delete i.headers.method), gt(i))), e;\n}, oi = async (t, e = \"/\", i = Q) => (await t.getDirectoryContents(`${i}${e}`, { details: !0, data: vt(), headers: { method: \"REPORT\" }, includeSelf: !0 })).data.filter((s) => s.filename !== e).map((s) => Et(s, i)), Et = function(t, e = Q, i = tt) {\n const s = t.props, n = yt(s?.permissions), r = A()?.uid, l = { id: s?.fileid || 0, source: `${i}${t.filename}`, mtime: new Date(Date.parse(t.lastmod)), mime: t.mime, size: s?.size || Number.parseInt(s.getcontentlength || \"0\"), permissions: n, owner: r, root: e, attributes: { ...t, ...s, hasPreview: s?.[\"has-preview\"] } };\n return delete l.attributes?.props, t.type === \"file\" ? new xt(l) : new bt(l);\n};\nclass Nt {\n _views = [];\n _currentView = null;\n register(e) {\n if (this._views.find((i) => i.id === e.id))\n throw new Error(`View id ${e.id} is already registered`);\n this._views.push(e);\n }\n remove(e) {\n const i = this._views.findIndex((s) => s.id === e);\n i !== -1 && this._views.splice(i, 1);\n }\n get views() {\n return this._views;\n }\n setActive(e) {\n this._currentView = e;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ai = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Nt(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\nclass _t {\n _column;\n constructor(e) {\n At(e), this._column = e;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst At = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!t.title || typeof t.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!t.render || typeof t.render != \"function\")\n throw new Error(\"A render function is required\");\n if (t.sort && typeof t.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (t.summary && typeof t.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar k = {}, T = {};\n(function(t) {\n const e = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", i = e + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + e + \"][\" + i + \"]*\", n = new RegExp(\"^\" + s + \"$\"), r = function(o, a) {\n const d = [];\n let u = a.exec(o);\n for (; u; ) {\n const h = [];\n h.startIndex = a.lastIndex - u[0].length;\n const c = u.length;\n for (let f = 0; f < c; f++)\n h.push(u[f]);\n d.push(h), u = a.exec(o);\n }\n return d;\n }, l = function(o) {\n const a = n.exec(o);\n return !(a === null || typeof a > \"u\");\n };\n t.isExist = function(o) {\n return typeof o < \"u\";\n }, t.isEmptyObject = function(o) {\n return Object.keys(o).length === 0;\n }, t.merge = function(o, a, d) {\n if (a) {\n const u = Object.keys(a), h = u.length;\n for (let c = 0; c < h; c++)\n d === \"strict\" ? o[u[c]] = [a[u[c]]] : o[u[c]] = a[u[c]];\n }\n }, t.getValue = function(o) {\n return t.isExist(o) ? o : \"\";\n }, t.isName = l, t.getAllMatches = r, t.nameRegexp = s;\n})(T);\nconst L = T, Tt = { allowBooleanAttributes: !1, unpairedTags: [] };\nk.validate = function(t, e) {\n e = Object.assign({}, Tt, e);\n const i = [];\n let s = !1, n = !1;\n t[0] === \"\\uFEFF\" && (t = t.substr(1));\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\" && t[r + 1] === \"?\") {\n if (r += 2, r = q(t, r), r.err)\n return r;\n } else if (t[r] === \"<\") {\n let l = r;\n if (r++, t[r] === \"!\") {\n r = U(t, r);\n continue;\n } else {\n let o = !1;\n t[r] === \"/\" && (o = !0, r++);\n let a = \"\";\n for (; r < t.length && t[r] !== \">\" && t[r] !== \" \" && t[r] !== \"\t\" && t[r] !== `\n` && t[r] !== \"\\r\"; r++)\n a += t[r];\n if (a = a.trim(), a[a.length - 1] === \"/\" && (a = a.substring(0, a.length - 1), r--), !Vt(a)) {\n let h;\n return a.trim().length === 0 ? h = \"Invalid space after '<'.\" : h = \"Tag '\" + a + \"' is an invalid name.\", p(\"InvalidTag\", h, g(t, r));\n }\n const d = Pt(t, r);\n if (d === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + a + \"' have open quote.\", g(t, r));\n let u = d.value;\n if (r = d.index, u[u.length - 1] === \"/\") {\n const h = r - u.length;\n u = u.substring(0, u.length - 1);\n const c = z(u, e);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, g(t, h + c.err.line));\n } else if (o)\n if (d.tagClosed) {\n if (u.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' can't have attributes or invalid starting.\", g(t, l));\n {\n const h = i.pop();\n if (a !== h.tagName) {\n let c = g(t, h.tagStartPos);\n return p(\"InvalidTag\", \"Expected closing tag '\" + h.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + a + \"'.\", g(t, l));\n }\n i.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + a + \"' doesn't have proper closing.\", g(t, r));\n else {\n const h = z(u, e);\n if (h !== !0)\n return p(h.err.code, h.err.msg, g(t, r - u.length + h.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", g(t, r));\n e.unpairedTags.indexOf(a) !== -1 || i.push({ tagName: a, tagStartPos: l }), s = !0;\n }\n for (r++; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"!\") {\n r++, r = U(t, r);\n continue;\n } else if (t[r + 1] === \"?\") {\n if (r = q(t, ++r), r.err)\n return r;\n } else\n break;\n else if (t[r] === \"&\") {\n const h = St(t, r);\n if (h == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", g(t, r));\n r = h;\n } else if (n === !0 && !B(t[r]))\n return p(\"InvalidXml\", \"Extra text at the end\", g(t, r));\n t[r] === \"<\" && r--;\n }\n } else {\n if (B(t[r]))\n continue;\n return p(\"InvalidChar\", \"char '\" + t[r] + \"' is not expected.\", g(t, r));\n }\n if (s) {\n if (i.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + i[0].tagName + \"'.\", g(t, i[0].tagStartPos));\n if (i.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(i.map((r) => r.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction B(t) {\n return t === \" \" || t === \"\t\" || t === `\n` || t === \"\\r\";\n}\nfunction q(t, e) {\n const i = e;\n for (; e < t.length; e++)\n if (t[e] == \"?\" || t[e] == \" \") {\n const s = t.substr(i, e - i);\n if (e > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", g(t, e));\n if (t[e] == \"?\" && t[e + 1] == \">\") {\n e++;\n break;\n } else\n continue;\n }\n return e;\n}\nfunction U(t, e) {\n if (t.length > e + 5 && t[e + 1] === \"-\" && t[e + 2] === \"-\") {\n for (e += 3; e < t.length; e++)\n if (t[e] === \"-\" && t[e + 1] === \"-\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n } else if (t.length > e + 8 && t[e + 1] === \"D\" && t[e + 2] === \"O\" && t[e + 3] === \"C\" && t[e + 4] === \"T\" && t[e + 5] === \"Y\" && t[e + 6] === \"P\" && t[e + 7] === \"E\") {\n let i = 1;\n for (e += 8; e < t.length; e++)\n if (t[e] === \"<\")\n i++;\n else if (t[e] === \">\" && (i--, i === 0))\n break;\n } else if (t.length > e + 9 && t[e + 1] === \"[\" && t[e + 2] === \"C\" && t[e + 3] === \"D\" && t[e + 4] === \"A\" && t[e + 5] === \"T\" && t[e + 6] === \"A\" && t[e + 7] === \"[\") {\n for (e += 8; e < t.length; e++)\n if (t[e] === \"]\" && t[e + 1] === \"]\" && t[e + 2] === \">\") {\n e += 2;\n break;\n }\n }\n return e;\n}\nconst It = '\"', Ot = \"'\";\nfunction Pt(t, e) {\n let i = \"\", s = \"\", n = !1;\n for (; e < t.length; e++) {\n if (t[e] === It || t[e] === Ot)\n s === \"\" ? s = t[e] : s !== t[e] || (s = \"\");\n else if (t[e] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n i += t[e];\n }\n return s !== \"\" ? !1 : { value: i, index: e, tagClosed: n };\n}\nconst Ct = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(t, e) {\n const i = L.getAllMatches(t, Ct), s = {};\n for (let n = 0; n < i.length; n++) {\n if (i[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' has no space in starting.\", b(i[n]));\n if (i[n][3] !== void 0 && i[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + i[n][2] + \"' is without value.\", b(i[n]));\n if (i[n][3] === void 0 && !e.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + i[n][2] + \"' is not allowed.\", b(i[n]));\n const r = i[n][2];\n if (!Ft(r))\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is an invalid name.\", b(i[n]));\n if (!s.hasOwnProperty(r))\n s[r] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + r + \"' is repeated.\", b(i[n]));\n }\n return !0;\n}\nfunction Dt(t, e) {\n let i = /\\d/;\n for (t[e] === \"x\" && (e++, i = /[\\da-fA-F]/); e < t.length; e++) {\n if (t[e] === \";\")\n return e;\n if (!t[e].match(i))\n break;\n }\n return -1;\n}\nfunction St(t, e) {\n if (e++, t[e] === \";\")\n return -1;\n if (t[e] === \"#\")\n return e++, Dt(t, e);\n let i = 0;\n for (; e < t.length; e++, i++)\n if (!(t[e].match(/\\w/) && i < 20)) {\n if (t[e] === \";\")\n break;\n return -1;\n }\n return e;\n}\nfunction p(t, e, i) {\n return { err: { code: t, msg: e, line: i.line || i, col: i.col } };\n}\nfunction Ft(t) {\n return L.isName(t);\n}\nfunction Vt(t) {\n return L.isName(t);\n}\nfunction g(t, e) {\n const i = t.substring(0, e).split(/\\r?\\n/);\n return { line: i.length, col: i[i.length - 1].length + 1 };\n}\nfunction b(t) {\n return t.startIndex + t[1].length;\n}\nvar P = {};\nconst et = { preserveOrder: !1, attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, removeNSPrefix: !1, allowBooleanAttributes: !1, parseTagValue: !0, parseAttributeValue: !1, trimValues: !0, cdataPropName: !1, numberParseOptions: { hex: !0, leadingZeros: !0, eNotation: !0 }, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, stopNodes: [], alwaysCreateTextNode: !1, isArray: () => !1, commentPropName: !1, unpairedTags: [], processEntities: !0, htmlEntities: !1, ignoreDeclaration: !1, ignorePiTags: !1, transformTagName: !1, transformAttributeName: !1, updateTag: function(t, e, i) {\n return t;\n} }, $t = function(t) {\n return Object.assign({}, et, t);\n};\nP.buildOptions = $t, P.defaultOptions = et;\nclass kt {\n constructor(e) {\n this.tagname = e, this.child = [], this[\":@\"] = {};\n }\n add(e, i) {\n e === \"__proto__\" && (e = \"#__proto__\"), this.child.push({ [e]: i });\n }\n addChild(e) {\n e.tagname === \"__proto__\" && (e.tagname = \"#__proto__\"), e[\":@\"] && Object.keys(e[\":@\"]).length > 0 ? this.child.push({ [e.tagname]: e.child, \":@\": e[\":@\"] }) : this.child.push({ [e.tagname]: e.child });\n }\n}\nvar Lt = kt;\nconst Rt = T;\nfunction jt(t, e) {\n const i = {};\n if (t[e + 3] === \"O\" && t[e + 4] === \"C\" && t[e + 5] === \"T\" && t[e + 6] === \"Y\" && t[e + 7] === \"P\" && t[e + 8] === \"E\") {\n e = e + 9;\n let s = 1, n = !1, r = !1, l = \"\";\n for (; e < t.length; e++)\n if (t[e] === \"<\" && !r) {\n if (n && qt(t, e))\n e += 7, [entityName, val, e] = Mt(t, e + 1), val.indexOf(\"&\") === -1 && (i[Xt(entityName)] = { regx: RegExp(`&${entityName};`, \"g\"), val });\n else if (n && Ut(t, e))\n e += 8;\n else if (n && zt(t, e))\n e += 8;\n else if (n && Gt(t, e))\n e += 9;\n else if (Bt)\n r = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, l = \"\";\n } else if (t[e] === \">\") {\n if (r ? t[e - 1] === \"-\" && t[e - 2] === \"-\" && (r = !1, s--) : s--, s === 0)\n break;\n } else\n t[e] === \"[\" ? n = !0 : l += t[e];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: i, i: e };\n}\nfunction Mt(t, e) {\n let i = \"\";\n for (; e < t.length && t[e] !== \"'\" && t[e] !== '\"'; e++)\n i += t[e];\n if (i = i.trim(), i.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = t[e++];\n let n = \"\";\n for (; e < t.length && t[e] !== s; e++)\n n += t[e];\n return [i, n, e];\n}\nfunction Bt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"-\" && t[e + 3] === \"-\";\n}\nfunction qt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"N\" && t[e + 4] === \"T\" && t[e + 5] === \"I\" && t[e + 6] === \"T\" && t[e + 7] === \"Y\";\n}\nfunction Ut(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"E\" && t[e + 3] === \"L\" && t[e + 4] === \"E\" && t[e + 5] === \"M\" && t[e + 6] === \"E\" && t[e + 7] === \"N\" && t[e + 8] === \"T\";\n}\nfunction zt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"A\" && t[e + 3] === \"T\" && t[e + 4] === \"T\" && t[e + 5] === \"L\" && t[e + 6] === \"I\" && t[e + 7] === \"S\" && t[e + 8] === \"T\";\n}\nfunction Gt(t, e) {\n return t[e + 1] === \"!\" && t[e + 2] === \"N\" && t[e + 3] === \"O\" && t[e + 4] === \"T\" && t[e + 5] === \"A\" && t[e + 6] === \"T\" && t[e + 7] === \"I\" && t[e + 8] === \"O\" && t[e + 9] === \"N\";\n}\nfunction Xt(t) {\n if (Rt.isName(t))\n return t;\n throw new Error(`Invalid entity name ${t}`);\n}\nvar Ht = jt;\nconst Kt = /^[-+]?0x[a-fA-F0-9]+$/, Wt = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt), !Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Yt = { hex: !0, leadingZeros: !0, decimalPoint: \".\", eNotation: !0 };\nfunction Zt(t, e = {}) {\n if (e = Object.assign({}, Yt, e), !t || typeof t != \"string\")\n return t;\n let i = t.trim();\n if (e.skipLike !== void 0 && e.skipLike.test(i))\n return t;\n if (e.hex && Kt.test(i))\n return Number.parseInt(i, 16);\n {\n const s = Wt.exec(i);\n if (s) {\n const n = s[1], r = s[2];\n let l = Jt(s[3]);\n const o = s[4] || s[6];\n if (!e.leadingZeros && r.length > 0 && n && i[2] !== \".\" || !e.leadingZeros && r.length > 0 && !n && i[1] !== \".\")\n return t;\n {\n const a = Number(i), d = \"\" + a;\n return d.search(/[eE]/) !== -1 || o ? e.eNotation ? a : t : i.indexOf(\".\") !== -1 ? d === \"0\" && l === \"\" || d === l || n && d === \"-\" + l ? a : t : r ? l === d || n + l === d ? a : t : i === d || i === n + d ? a : t;\n }\n } else\n return t;\n }\n}\nfunction Jt(t) {\n return t && t.indexOf(\".\") !== -1 && (t = t.replace(/0+$/, \"\"), t === \".\" ? t = \"0\" : t[0] === \".\" ? t = \"0\" + t : t[t.length - 1] === \".\" && (t = t.substr(0, t.length - 1))), t;\n}\nvar Qt = Zt;\nconst R = T, E = Lt, te = Ht, ee = Qt;\n\"<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)\".replace(/NAME/g, R.nameRegexp);\nlet ie = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = { apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" }, gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" }, lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" }, quot: { regex: /&(quot|#34|#x22);/g, val: '\"' } }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = { space: { regex: /&(nbsp|#160);/g, val: \" \" }, cent: { regex: /&(cent|#162);/g, val: \"¢\" }, pound: { regex: /&(pound|#163);/g, val: \"£\" }, yen: { regex: /&(yen|#165);/g, val: \"¥\" }, euro: { regex: /&(euro|#8364);/g, val: \"€\" }, copyright: { regex: /&(copy|#169);/g, val: \"©\" }, reg: { regex: /&(reg|#174);/g, val: \"®\" }, inr: { regex: /&(inr|#8377);/g, val: \"₹\" } }, this.addExternalEntities = ne, this.parseXml = le, this.parseTextData = re, this.resolveNameSpace = se, this.buildAttributesMap = ae, this.isItStopNode = he, this.replaceEntitiesValue = ue, this.readStopNodeData = fe, this.saveTextToParentTag = ce, this.addChild = de;\n }\n};\nfunction ne(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n this.lastEntities[s] = { regex: new RegExp(\"&\" + s + \";\", \"g\"), val: t[s] };\n }\n}\nfunction re(t, e, i, s, n, r, l) {\n if (t !== void 0 && (this.options.trimValues && !s && (t = t.trim()), t.length > 0)) {\n l || (t = this.replaceEntitiesValue(t));\n const o = this.options.tagValueProcessor(e, t, i, n, r);\n return o == null ? t : typeof o != typeof t || o !== t ? o : this.options.trimValues ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t.trim() === t ? D(t, this.options.parseTagValue, this.options.numberParseOptions) : t;\n }\n}\nfunction se(t) {\n if (this.options.removeNSPrefix) {\n const e = t.split(\":\"), i = t.charAt(0) === \"/\" ? \"/\" : \"\";\n if (e[0] === \"xmlns\")\n return \"\";\n e.length === 2 && (t = i + e[1]);\n }\n return t;\n}\nconst oe = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction ae(t, e, i) {\n if (!this.options.ignoreAttributes && typeof t == \"string\") {\n const s = R.getAllMatches(t, oe), n = s.length, r = {};\n for (let l = 0; l < n; l++) {\n const o = this.resolveNameSpace(s[l][1]);\n let a = s[l][4], d = this.options.attributeNamePrefix + o;\n if (o.length)\n if (this.options.transformAttributeName && (d = this.options.transformAttributeName(d)), d === \"__proto__\" && (d = \"#__proto__\"), a !== void 0) {\n this.options.trimValues && (a = a.trim()), a = this.replaceEntitiesValue(a);\n const u = this.options.attributeValueProcessor(o, a, e);\n u == null ? r[d] = a : typeof u != typeof a || u !== a ? r[d] = u : r[d] = D(a, this.options.parseAttributeValue, this.options.numberParseOptions);\n } else\n this.options.allowBooleanAttributes && (r[d] = !0);\n }\n if (!Object.keys(r).length)\n return;\n if (this.options.attributesGroupName) {\n const l = {};\n return l[this.options.attributesGroupName] = r, l;\n }\n return r;\n }\n}\nconst le = function(t) {\n t = t.replace(/\\r\\n?/g, `\n`);\n const e = new E(\"!xml\");\n let i = e, s = \"\", n = \"\";\n for (let r = 0; r < t.length; r++)\n if (t[r] === \"<\")\n if (t[r + 1] === \"/\") {\n const l = x(t, \">\", r, \"Closing Tag is not closed.\");\n let o = t.substring(r + 2, l).trim();\n if (this.options.removeNSPrefix) {\n const u = o.indexOf(\":\");\n u !== -1 && (o = o.substr(u + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && (s = this.saveTextToParentTag(s, i, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n let d = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (d = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : d = n.lastIndexOf(\".\"), n = n.substring(0, d), i = this.tagsNodeStack.pop(), s = \"\", r = l;\n } else if (t[r + 1] === \"?\") {\n let l = C(t, r, !1, \"?>\");\n if (!l)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, i, n), !(this.options.ignoreDeclaration && l.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new E(l.tagName);\n o.add(this.options.textNodeName, \"\"), l.tagName !== l.tagExp && l.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(l.tagExp, n, l.tagName)), this.addChild(i, o, n);\n }\n r = l.closeIndex + 1;\n } else if (t.substr(r + 1, 3) === \"!--\") {\n const l = x(t, \"-->\", r + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = t.substring(r + 4, l - 2);\n s = this.saveTextToParentTag(s, i, n), i.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n r = l;\n } else if (t.substr(r + 1, 2) === \"!D\") {\n const l = te(t, r);\n this.docTypeEntities = l.entities, r = l.i;\n } else if (t.substr(r + 1, 2) === \"![\") {\n const l = x(t, \"]]>\", r, \"CDATA is not closed.\") - 2, o = t.substring(r + 9, l);\n if (s = this.saveTextToParentTag(s, i, n), this.options.cdataPropName)\n i.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]);\n else {\n let a = this.parseTextData(o, i.tagname, n, !0, !1, !0);\n a == null && (a = \"\"), i.add(this.options.textNodeName, a);\n }\n r = l + 2;\n } else {\n let l = C(t, r, this.options.removeNSPrefix), o = l.tagName, a = l.tagExp, d = l.attrExpPresent, u = l.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), i && s && i.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, i, n, !1));\n const h = i;\n if (h && this.options.unpairedTags.indexOf(h.tagname) !== -1 && (i = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== e.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let c = \"\";\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1)\n r = l.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n r = l.closeIndex;\n else {\n const w = this.readStopNodeData(t, o, u + 1);\n if (!w)\n throw new Error(`Unexpected end of ${o}`);\n r = w.i, c = w.tagContent;\n }\n const f = new E(o);\n o !== a && d && (f[\":@\"] = this.buildAttributesMap(a, n, o)), c && (c = this.parseTextData(c, o, n, !0, d, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), f.add(this.options.textNodeName, c), this.addChild(i, f, n);\n } else {\n if (a.length > 0 && a.lastIndexOf(\"/\") === a.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), a = o) : a = a.substr(0, a.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const c = new E(o);\n o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const c = new E(o);\n this.tagsNodeStack.push(i), o !== a && d && (c[\":@\"] = this.buildAttributesMap(a, n, o)), this.addChild(i, c, n), i = c;\n }\n s = \"\", r = u;\n }\n }\n else\n s += t[r];\n return e.child;\n};\nfunction de(t, e, i) {\n const s = this.options.updateTag(e.tagname, i, e[\":@\"]);\n s === !1 || (typeof s == \"string\" && (e.tagname = s), t.addChild(e));\n}\nconst ue = function(t) {\n if (this.options.processEntities) {\n for (let e in this.docTypeEntities) {\n const i = this.docTypeEntities[e];\n t = t.replace(i.regx, i.val);\n }\n for (let e in this.lastEntities) {\n const i = this.lastEntities[e];\n t = t.replace(i.regex, i.val);\n }\n if (this.options.htmlEntities)\n for (let e in this.htmlEntities) {\n const i = this.htmlEntities[e];\n t = t.replace(i.regex, i.val);\n }\n t = t.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return t;\n};\nfunction ce(t, e, i, s) {\n return t && (s === void 0 && (s = Object.keys(e.child).length === 0), t = this.parseTextData(t, e.tagname, i, !1, e[\":@\"] ? Object.keys(e[\":@\"]).length !== 0 : !1, s), t !== void 0 && t !== \"\" && e.add(this.options.textNodeName, t), t = \"\"), t;\n}\nfunction he(t, e, i) {\n const s = \"*.\" + i;\n for (const n in t) {\n const r = t[n];\n if (s === r || e === r)\n return !0;\n }\n return !1;\n}\nfunction pe(t, e, i = \">\") {\n let s, n = \"\";\n for (let r = e; r < t.length; r++) {\n let l = t[r];\n if (s)\n l === s && (s = \"\");\n else if (l === '\"' || l === \"'\")\n s = l;\n else if (l === i[0])\n if (i[1]) {\n if (t[r + 1] === i[1])\n return { data: n, index: r };\n } else\n return { data: n, index: r };\n else\n l === \"\t\" && (l = \" \");\n n += l;\n }\n}\nfunction x(t, e, i, s) {\n const n = t.indexOf(e, i);\n if (n === -1)\n throw new Error(s);\n return n + e.length - 1;\n}\nfunction C(t, e, i, s = \">\") {\n const n = pe(t, e + 1, s);\n if (!n)\n return;\n let r = n.data;\n const l = n.index, o = r.search(/\\s/);\n let a = r, d = !0;\n if (o !== -1 && (a = r.substr(0, o).replace(/\\s\\s*$/, \"\"), r = r.substr(o + 1)), i) {\n const u = a.indexOf(\":\");\n u !== -1 && (a = a.substr(u + 1), d = a !== n.data.substr(u + 1));\n }\n return { tagName: a, tagExp: r, closeIndex: l, attrExpPresent: d };\n}\nfunction fe(t, e, i) {\n const s = i;\n let n = 1;\n for (; i < t.length; i++)\n if (t[i] === \"<\")\n if (t[i + 1] === \"/\") {\n const r = x(t, \">\", i, `${e} is not closed`);\n if (t.substring(i + 2, r).trim() === e && (n--, n === 0))\n return { tagContent: t.substring(s, i), i: r };\n i = r;\n } else if (t[i + 1] === \"?\")\n i = x(t, \"?>\", i + 1, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 3) === \"!--\")\n i = x(t, \"-->\", i + 3, \"StopNode is not closed.\");\n else if (t.substr(i + 1, 2) === \"![\")\n i = x(t, \"]]>\", i, \"StopNode is not closed.\") - 2;\n else {\n const r = C(t, i, \">\");\n r && ((r && r.tagName) === e && r.tagExp[r.tagExp.length - 1] !== \"/\" && n++, i = r.closeIndex);\n }\n}\nfunction D(t, e, i) {\n if (e && typeof t == \"string\") {\n const s = t.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : ee(t, i);\n } else\n return R.isExist(t) ? t : \"\";\n}\nvar ge = ie, it = {};\nfunction me(t, e) {\n return nt(t, e);\n}\nfunction nt(t, e, i) {\n let s;\n const n = {};\n for (let r = 0; r < t.length; r++) {\n const l = t[r], o = we(l);\n let a = \"\";\n if (i === void 0 ? a = o : a = i + \".\" + o, o === e.textNodeName)\n s === void 0 ? s = l[o] : s += \"\" + l[o];\n else {\n if (o === void 0)\n continue;\n if (l[o]) {\n let d = nt(l[o], e, a);\n const u = ye(d, e);\n l[\":@\"] ? ve(d, l[\":@\"], a, e) : Object.keys(d).length === 1 && d[e.textNodeName] !== void 0 && !e.alwaysCreateTextNode ? d = d[e.textNodeName] : Object.keys(d).length === 0 && (e.alwaysCreateTextNode ? d[e.textNodeName] = \"\" : d = \"\"), n[o] !== void 0 && n.hasOwnProperty(o) ? (Array.isArray(n[o]) || (n[o] = [n[o]]), n[o].push(d)) : e.isArray(o, a, u) ? n[o] = [d] : n[o] = d;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[e.textNodeName] = s) : s !== void 0 && (n[e.textNodeName] = s), n;\n}\nfunction we(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction ve(t, e, i, s) {\n if (e) {\n const n = Object.keys(e), r = n.length;\n for (let l = 0; l < r; l++) {\n const o = n[l];\n s.isArray(o, i + \".\" + o, !0, !0) ? t[o] = [e[o]] : t[o] = e[o];\n }\n }\n}\nfunction ye(t, e) {\n const { textNodeName: i } = e, s = Object.keys(t).length;\n return !!(s === 0 || s === 1 && (t[i] || typeof t[i] == \"boolean\" || t[i] === 0));\n}\nit.prettify = me;\nconst { buildOptions: xe } = P, be = ge, { prettify: Ee } = it, Ne = k;\nlet _e = class {\n constructor(t) {\n this.externalEntities = {}, this.options = xe(t);\n }\n parse(t, e) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (e) {\n e === !0 && (e = {});\n const n = Ne.validate(t, e);\n if (n !== !0)\n throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`);\n }\n const i = new be(this.options);\n i.addExternalEntities(this.externalEntities);\n const s = i.parseXml(t);\n return this.options.preserveOrder || s === void 0 ? s : Ee(s, this.options);\n }\n addEntity(t, e) {\n if (e.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\");\n if (e === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = e;\n }\n};\nvar Ae = _e;\nconst Te = `\n`;\nfunction Ie(t, e) {\n let i = \"\";\n return e.format && e.indentBy.length > 0 && (i = Te), rt(t, e, \"\", i);\n}\nfunction rt(t, e, i, s) {\n let n = \"\", r = !1;\n for (let l = 0; l < t.length; l++) {\n const o = t[l], a = Oe(o);\n let d = \"\";\n if (i.length === 0 ? d = a : d = `${i}.${a}`, a === e.textNodeName) {\n let w = o[a];\n Pe(d, e) || (w = e.tagValueProcessor(a, w), w = st(w, e)), r && (n += s), n += w, r = !1;\n continue;\n } else if (a === e.cdataPropName) {\n r && (n += s), n += ``, r = !1;\n continue;\n } else if (a === e.commentPropName) {\n n += s + ``, r = !0;\n continue;\n } else if (a[0] === \"?\") {\n const w = G(o[\":@\"], e), ot = a === \"?xml\" ? \"\" : s;\n let N = o[a][0][e.textNodeName];\n N = N.length !== 0 ? \" \" + N : \"\", n += ot + `<${a}${N}${w}?>`, r = !0;\n continue;\n }\n let u = s;\n u !== \"\" && (u += e.indentBy);\n const h = G(o[\":@\"], e), c = s + `<${a}${h}`, f = rt(o[a], e, d, u);\n e.unpairedTags.indexOf(a) !== -1 ? e.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!f || f.length === 0) && e.suppressEmptyNode ? n += c + \"/>\" : f && f.endsWith(\">\") ? n += c + `>${f}${s}` : (n += c + \">\", f && s !== \"\" && (f.includes(\"/>\") || f.includes(\"`), r = !0;\n }\n return n;\n}\nfunction Oe(t) {\n const e = Object.keys(t);\n for (let i = 0; i < e.length; i++) {\n const s = e[i];\n if (s !== \":@\")\n return s;\n }\n}\nfunction G(t, e) {\n let i = \"\";\n if (t && !e.ignoreAttributes)\n for (let s in t) {\n let n = e.attributeValueProcessor(s, t[s]);\n n = st(n, e), n === !0 && e.suppressBooleanAttributes ? i += ` ${s.substr(e.attributeNamePrefix.length)}` : i += ` ${s.substr(e.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return i;\n}\nfunction Pe(t, e) {\n t = t.substr(0, t.length - e.textNodeName.length - 1);\n let i = t.substr(t.lastIndexOf(\".\") + 1);\n for (let s in e.stopNodes)\n if (e.stopNodes[s] === t || e.stopNodes[s] === \"*.\" + i)\n return !0;\n return !1;\n}\nfunction st(t, e) {\n if (t && t.length > 0 && e.processEntities)\n for (let i = 0; i < e.entities.length; i++) {\n const s = e.entities[i];\n t = t.replace(s.regex, s.val);\n }\n return t;\n}\nvar Ce = Ie;\nconst De = Ce, Se = { attributeNamePrefix: \"@_\", attributesGroupName: !1, textNodeName: \"#text\", ignoreAttributes: !0, cdataPropName: !1, format: !1, indentBy: \" \", suppressEmptyNode: !1, suppressUnpairedNode: !0, suppressBooleanAttributes: !0, tagValueProcessor: function(t, e) {\n return e;\n}, attributeValueProcessor: function(t, e) {\n return e;\n}, preserveOrder: !1, commentPropName: !1, unpairedTags: [], entities: [{ regex: new RegExp(\"&\", \"g\"), val: \"&\" }, { regex: new RegExp(\">\", \"g\"), val: \">\" }, { regex: new RegExp(\"<\", \"g\"), val: \"<\" }, { regex: new RegExp(\"'\", \"g\"), val: \"'\" }, { regex: new RegExp('\"', \"g\"), val: \""\" }], processEntities: !0, stopNodes: [], oneListGroup: !1 };\nfunction y(t) {\n this.options = Object.assign({}, Se, t), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = $e), this.processTextOrObjNode = Fe, this.options.format ? (this.indentate = Ve, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\ny.prototype.build = function(t) {\n return this.options.preserveOrder ? De(t, this.options) : (Array.isArray(t) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (t = { [this.options.arrayNodeName]: t }), this.j2x(t, 0).val);\n}, y.prototype.j2x = function(t, e) {\n let i = \"\", s = \"\";\n for (let n in t)\n if (typeof t[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (t[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (t[n] instanceof Date)\n s += this.buildTextValNode(t[n], n, \"\", e);\n else if (typeof t[n] != \"object\") {\n const r = this.isAttribute(n);\n if (r)\n i += this.buildAttrPairStr(r, \"\" + t[n]);\n else if (n === this.options.textNodeName) {\n let l = this.options.tagValueProcessor(n, \"\" + t[n]);\n s += this.replaceEntitiesValue(l);\n } else\n s += this.buildTextValNode(t[n], n, \"\", e);\n } else if (Array.isArray(t[n])) {\n const r = t[n].length;\n let l = \"\";\n for (let o = 0; o < r; o++) {\n const a = t[n][o];\n typeof a > \"u\" || (a === null ? n[0] === \"?\" ? s += this.indentate(e) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(e) + \"<\" + n + \"/\" + this.tagEndChar : typeof a == \"object\" ? this.options.oneListGroup ? l += this.j2x(a, e + 1).val : l += this.processTextOrObjNode(a, n, e) : l += this.buildTextValNode(a, n, \"\", e));\n }\n this.options.oneListGroup && (l = this.buildObjectNode(l, n, \"\", e)), s += l;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const r = Object.keys(t[n]), l = r.length;\n for (let o = 0; o < l; o++)\n i += this.buildAttrPairStr(r[o], \"\" + t[n][r[o]]);\n } else\n s += this.processTextOrObjNode(t[n], n, e);\n return { attrStr: i, val: s };\n}, y.prototype.buildAttrPairStr = function(t, e) {\n return e = this.options.attributeValueProcessor(t, \"\" + e), e = this.replaceEntitiesValue(e), this.options.suppressBooleanAttributes && e === \"true\" ? \" \" + t : \" \" + t + '=\"' + e + '\"';\n};\nfunction Fe(t, e, i) {\n const s = this.j2x(t, i + 1);\n return t[this.options.textNodeName] !== void 0 && Object.keys(t).length === 1 ? this.buildTextValNode(t[this.options.textNodeName], e, s.attrStr, i) : this.buildObjectNode(s.val, e, s.attrStr, i);\n}\ny.prototype.buildObjectNode = function(t, e, i, s) {\n if (t === \"\")\n return e[0] === \"?\" ? this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar;\n {\n let n = \"\" + t + n : this.options.commentPropName !== !1 && e === this.options.commentPropName && r.length === 0 ? this.indentate(s) + `` + this.newLine : this.indentate(s) + \"<\" + e + i + r + this.tagEndChar + t + this.indentate(s) + n;\n }\n}, y.prototype.closeTag = function(t) {\n let e = \"\";\n return this.options.unpairedTags.indexOf(t) !== -1 ? this.options.suppressUnpairedNode || (e = \"/\") : this.options.suppressEmptyNode ? e = \"/\" : e = `>` + this.newLine;\n if (this.options.commentPropName !== !1 && e === this.options.commentPropName)\n return this.indentate(s) + `` + this.newLine;\n if (e[0] === \"?\")\n return this.indentate(s) + \"<\" + e + i + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(e, t);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + e + i + this.closeTag(e) + this.tagEndChar : this.indentate(s) + \"<\" + e + i + \">\" + n + \" 0 && this.options.processEntities)\n for (let e = 0; e < this.options.entities.length; e++) {\n const i = this.options.entities[e];\n t = t.replace(i.regex, i.val);\n }\n return t;\n};\nfunction Ve(t) {\n return this.options.indentBy.repeat(t);\n}\nfunction $e(t) {\n return t.startsWith(this.options.attributeNamePrefix) && t !== this.options.textNodeName ? t.substr(this.attrPrefixLen) : !1;\n}\nvar ke = y;\nconst Le = k, Re = Ae, je = ke;\nvar X = { XMLParser: Re, XMLValidator: Le, XMLBuilder: je };\nfunction Me(t) {\n if (typeof t != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof t}\\``);\n if (t = t.trim(), t.length === 0 || X.XMLValidator.validate(t) !== !0)\n return !1;\n let e;\n const i = new X.XMLParser();\n try {\n e = i.parse(t);\n } catch {\n return !1;\n }\n return !(!e || !(\"svg\" in e));\n}\nclass li {\n _view;\n constructor(e) {\n Be(e), this._view = e;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(e) {\n this._view.icon = e;\n }\n get order() {\n return this._view.order;\n }\n set order(e) {\n this._view.order = e;\n }\n get params() {\n return this._view.params;\n }\n set params(e) {\n this._view.params = e;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(e) {\n this._view.expanded = e;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Be = function(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!t.name || typeof t.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (t.columns && t.columns.length > 0 && (!t.caption || typeof t.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!t.getContents || typeof t.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!t.icon || typeof t.icon != \"string\" || !Me(t.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in t) || typeof t.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (t.columns && t.columns.forEach((e) => {\n if (!(e instanceof _t))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), t.emptyView && typeof t.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (t.parent && typeof t.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in t && typeof t.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in t && typeof t.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (t.defaultSortKey && typeof t.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n}, di = function(t) {\n return S().registerEntry(t);\n}, ui = function(t) {\n return S().unregisterEntry(t);\n}, ci = function(t) {\n return S().getEntries(t);\n};\nexport {\n _t as Column,\n H as DefaultType,\n xt as File,\n Ye as FileAction,\n $ as FileType,\n bt as Folder,\n Qe as Header,\n Nt as Navigation,\n J as Node,\n Z as NodeStatus,\n v as Permission,\n li as View,\n di as addNewFileMenuEntry,\n si as davGetClient,\n ni as davGetDefaultPropfind,\n vt as davGetFavoritesReport,\n ri as davGetRecentSearch,\n yt as davParsePermissions,\n tt as davRemoteURL,\n Et as davResultToNode,\n Q as davRootPath,\n W as defaultDavNamespaces,\n K as defaultDavProperties,\n We as formatFileSize,\n V as getDavNameSpaces,\n F as getDavProperties,\n oi as getFavoriteNodes,\n Je as getFileActions,\n ei as getFileListHeaders,\n ai as getNavigation,\n ci as getNewFileMenuEntries,\n ii as registerDavProperty,\n Ze as registerFileAction,\n ti as registerFileListHeaders,\n ui as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./fileEntryInlineSystemTags.scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./fileEntryInlineSystemTags.scss\";\n export default content && content.locals ? content.locals : undefined;\n","/**\n * @copyright Copyright (c) 2023 Lucas Azevedo \n *\n * @author Lucas Azevedo \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { FileAction, Node, registerDavProperty, registerFileAction } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport '../css/fileEntryInlineSystemTags.scss';\nconst getNodeSystemTags = function (node) {\n const tags = node.attributes?.['system-tags']?.['system-tag'];\n if (tags === undefined) {\n return [];\n }\n return [tags].flat();\n};\nconst renderTag = function (tag, isMore = false) {\n const tagElement = document.createElement('li');\n tagElement.classList.add('files-list__system-tag');\n tagElement.textContent = tag;\n if (isMore) {\n tagElement.classList.add('files-list__system-tag--more');\n }\n return tagElement;\n};\nexport const action = new FileAction({\n id: 'system-tags',\n displayName: () => '',\n iconSvgInline: () => '',\n enabled(nodes) {\n // Only show the action on single nodes\n if (nodes.length !== 1) {\n return false;\n }\n const node = nodes[0];\n const tags = getNodeSystemTags(node);\n // Only show the action if the node has system tags\n if (tags.length === 0) {\n return false;\n }\n return true;\n },\n exec: async () => null,\n async renderInline(node) {\n // Ensure we have the system tags as an array\n const tags = getNodeSystemTags(node);\n if (tags.length === 0) {\n return null;\n }\n const systemTagsElement = document.createElement('ul');\n systemTagsElement.classList.add('files-list__system-tags');\n if (tags.length === 1) {\n systemTagsElement.setAttribute('aria-label', t('files', 'This file has the tag {tag}', { tag: tags[0] }));\n }\n else {\n const firstTags = tags.slice(0, -1).join(', ');\n const lastTag = tags[tags.length - 1];\n systemTagsElement.setAttribute('aria-label', t('files', 'This file has the tags {firstTags} and {lastTag}', { firstTags, lastTag }));\n }\n systemTagsElement.append(renderTag(tags[0]));\n // More tags than the one we're showing\n if (tags.length > 1) {\n const moreTagElement = renderTag('+' + (tags.length - 1), true);\n moreTagElement.setAttribute('title', tags.slice(1).join(', '));\n systemTagsElement.append(moreTagElement);\n }\n return systemTagsElement;\n },\n order: 0,\n});\nregisterDavProperty('nc:system-tags');\nregisterFileAction(action);\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { createClient } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getRequestToken } from '@nextcloud/auth';\nconst rootUrl = generateRemoteUrl('dav');\nexport const davClient = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() ?? '',\n },\n});\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport camelCase from 'camelcase';\nexport const parseTags = (tags) => {\n return tags.map(({ props }) => Object.fromEntries(Object.entries(props)\n .map(([key, value]) => [camelCase(key), value])));\n};\n/**\n * Parse id from `Content-Location` header\n */\nexport const parseIdFromLocation = (url) => {\n const queryPos = url.indexOf('?');\n if (queryPos > 0) {\n url = url.substring(0, queryPos);\n }\n const parts = url.split('/');\n let result;\n do {\n result = parts[parts.length - 1];\n parts.pop();\n // note: first result can be empty when there is a trailing slash,\n // so we take the part before that\n } while (!result && parts.length > 0);\n return Number(result);\n};\nexport const formatTag = (initialTag) => {\n const tag = { ...initialTag };\n if (tag.name && !tag.displayName) {\n return tag;\n }\n tag.name = tag.displayName;\n delete tag.displayName;\n return tag;\n};\n","/**\n * @copyright 2023 Christopher Ng \n *\n * @author Christopher Ng \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger';\nexport const logger = getLoggerBuilder()\n .setApp('systemtags')\n .detectUser()\n .build();\n","import axios from '@nextcloud/axios';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { davClient } from './davClient.js';\nimport { formatTag, parseIdFromLocation, parseTags } from '../utils';\nimport { logger } from '../logger.js';\nconst fetchTagsBody = `\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n`;\nexport const fetchTags = async () => {\n const path = '/systemtags';\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load tags'), { error });\n throw new Error(t('systemtags', 'Failed to load tags'));\n }\n};\nexport const fetchLastUsedTagIds = async () => {\n const url = generateUrl('/apps/systemtags/lastused');\n try {\n const { data: lastUsedTagIds } = await axios.get(url);\n return lastUsedTagIds.map(Number);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load last used tags'), { error });\n throw new Error(t('systemtags', 'Failed to load last used tags'));\n }\n};\nexport const fetchSelectedTags = async (fileId) => {\n const path = '/systemtags-relations/files/' + fileId;\n try {\n const { data: tags } = await davClient.getDirectoryContents(path, {\n data: fetchTagsBody,\n details: true,\n glob: '/systemtags-relations/files/*/*', // Filter out first empty tag\n });\n return parseTags(tags);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to load selected tags'), { error });\n throw new Error(t('systemtags', 'Failed to load selected tags'));\n }\n};\nexport const selectTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n const tagToPut = formatTag(tag);\n try {\n await davClient.customRequest(path, {\n method: 'PUT',\n data: tagToPut,\n });\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to select tag'), { error });\n throw new Error(t('systemtags', 'Failed to select tag'));\n }\n};\n/**\n * @return created tag id\n */\nexport const createTag = async (fileId, tag) => {\n const path = '/systemtags';\n const tagToPost = formatTag(tag);\n try {\n const { headers } = await davClient.customRequest(path, {\n method: 'POST',\n data: tagToPost,\n });\n const contentLocation = headers.get('content-location');\n if (contentLocation) {\n const tagToPut = {\n ...tagToPost,\n id: parseIdFromLocation(contentLocation),\n };\n await selectTag(fileId, tagToPut);\n return tagToPut.id;\n }\n logger.error(t('systemtags', 'Missing \"Content-Location\" header'));\n throw new Error(t('systemtags', 'Missing \"Content-Location\" header'));\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to create tag'), { error });\n throw new Error(t('systemtags', 'Failed to create tag'));\n }\n};\nexport const deleteTag = async (fileId, tag) => {\n const path = '/systemtags-relations/files/' + fileId + '/' + tag.id;\n try {\n await davClient.deleteFile(path);\n }\n catch (error) {\n logger.error(t('systemtags', 'Failed to delete tag'), { error });\n throw new Error(t('systemtags', 'Failed to delete tag'));\n }\n};\n","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","import { cancelable, CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { getDefaultPropfind } from './DavProperties';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = getCurrentUser()?.uid;\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime,\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = getDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ \n *\n * @author John Molakvoæ \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","import { Folder, Permission, getDavNameSpaces, getDavProperties } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { fetchTags } from './api';\nimport { getClient } from '../../../files/src/services/WebdavClient';\nimport { resultToNode } from '../../../files/src/services/Files';\nconst formatReportPayload = (tagId) => `\n\n\t\n\t\t${getDavProperties()}\n\t\n \n ${tagId}\n \n`;\nconst tagToNode = function (tag) {\n return new Folder({\n id: tag.id,\n source: generateRemoteUrl('dav/systemtags/' + tag.id),\n owner: getCurrentUser()?.uid,\n root: '/systemtags',\n permissions: Permission.READ,\n attributes: {\n ...tag,\n 'is-tag': true,\n },\n });\n};\nexport const getContents = async (path = '/') => {\n // List tags in the root\n const tagsCache = (await fetchTags()).filter(tag => tag.userVisible);\n if (path === '/') {\n return {\n folder: new Folder({\n id: 0,\n source: generateRemoteUrl('dav/systemtags'),\n owner: getCurrentUser()?.uid,\n root: '/systemtags',\n permissions: Permission.NONE,\n }),\n contents: tagsCache.map(tagToNode),\n };\n }\n const tagId = parseInt(path.replace('/', ''), 10);\n const tag = tagsCache.find(tag => tag.id === tagId);\n if (!tag) {\n throw new Error('Tag not found');\n }\n const folder = tagToNode(tag);\n const contentsResponse = await getClient().getDirectoryContents('/', {\n details: true,\n // Only filter favorites if we're at the root\n data: formatReportPayload(tagId),\n headers: {\n // Patched in WebdavClient.ts\n method: 'REPORT',\n },\n });\n return {\n folder,\n contents: contentsResponse.data.map(resultToNode),\n };\n};\n","/**\n * @copyright Copyright (c) 2016 Roeland Jago Douma \n *\n * @author John Molakvoæ \n * @author Roeland Jago Douma \n *\n * @license AGPL-3.0-or-later\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 .\n *\n */\nimport './actions/inlineSystemTagsAction.js';\nimport { translate as t } from '@nextcloud/l10n';\nimport { Column, Node, View, getNavigation } from '@nextcloud/files';\nimport TagMultipleSvg from '@mdi/svg/svg/tag-multiple.svg?raw';\nimport { getContents } from './services/systemtags.js';\nconst Navigation = getNavigation();\nNavigation.register(new View({\n id: 'tags',\n name: t('systemtags', 'Tags'),\n caption: t('systemtags', 'List of tags and their associated files and folders.'),\n emptyTitle: t('systemtags', 'No tags found'),\n emptyCaption: t('systemtags', 'Tags you have created will show up here.'),\n icon: TagMultipleSvg,\n order: 25,\n getContents,\n}));\n","'use strict';\n\nconst UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\n\tfor (let i = 0; i < string.length; i++) {\n\t\tconst character = string[i];\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i) + '-' + string.slice(i);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\ti++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character)) {\n\t\t\tstring = string.slice(0, i - 1) + '-' + string.slice(i - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replace(LEADING_CAPITAL, m1 => toLowerCase(m1));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input.replace(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier))\n\t\t.replace(NUMBERS_AND_IDENTIFIER, m => toUpperCase(m));\n};\n\nconst camelCase = (input, options) => {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false ?\n\t\tstring => string.toLowerCase() :\n\t\tstring => string.toLocaleLowerCase(options.locale);\n\tconst toUpperCase = options.locale === false ?\n\t\tstring => string.toUpperCase() :\n\t\tstring => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\n\tif (options.preserveConsecutiveUppercase) {\n\t\tinput = preserveConsecutiveUppercase(input, toLowerCase);\n\t} else {\n\t\tinput = toLowerCase(input);\n\t}\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n};\n\nmodule.exports = camelCase;\n// TODO: Remove this for the next major release\nmodule.exports.default = camelCase;\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".files-list__system-tags{--min-size: 32px;display:none;justify-content:center;align-items:center;min-width:calc(var(--min-size)*2);max-width:300px}.files-list__system-tag{padding:5px 10px;border:1px solid;border-radius:var(--border-radius-pill);border-color:var(--color-border);color:var(--color-text-maxcontrast);height:var(--min-size);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:22px;text-align:center}.files-list__system-tag--more{overflow:visible;text-overflow:initial}.files-list__system-tag+.files-list__system-tag{margin-left:5px}@media(min-width: 512px){.files-list__system-tags{display:flex}}\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/systemtags/src/css/fileEntryInlineSystemTags.scss\"],\"names\":[],\"mappings\":\"AAsBA,yBACC,gBAAA,CACA,YAAA,CACA,sBAAA,CACA,kBAAA,CACA,iCAAA,CACA,eAAA,CAGD,wBACC,gBAAA,CACA,gBAAA,CACA,uCAAA,CACA,gCAAA,CACA,mCAAA,CACA,sBAAA,CACA,kBAAA,CACA,eAAA,CACA,sBAAA,CACA,gBAAA,CACA,iBAAA,CAEA,8BACC,gBAAA,CACA,qBAAA,CAID,gDACC,eAAA,CAIF,yBACC,yBACC,YAAA,CAAA\",\"sourcesContent\":[\"/**\\n * @copyright Copyright (c) 2023 Lucas Azevedo \\n *\\n * @author Lucas Azevedo \\n *\\n * @license AGPL-3.0-or-later\\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 .\\n *\\n */\\n\\n.files-list__system-tags {\\n\\t--min-size: 32px;\\n\\tdisplay: none;\\n\\tjustify-content: center;\\n\\talign-items: center;\\n\\tmin-width: calc(var(--min-size) * 2);\\n\\tmax-width: 300px;\\n}\\n\\n.files-list__system-tag {\\n\\tpadding: 5px 10px;\\n\\tborder: 1px solid;\\n\\tborder-radius: var(--border-radius-pill);\\n\\tborder-color: var(--color-border);\\n\\tcolor: var(--color-text-maxcontrast);\\n\\theight: var(--min-size);\\n\\twhite-space: nowrap;\\n\\toverflow: hidden;\\n\\ttext-overflow: ellipsis;\\n\\tline-height: 22px; // min-size - 2 * 5px padding\\n\\ttext-align: center;\\n\\n\\t&--more {\\n\\t\\toverflow: visible;\\n\\t\\ttext-overflow: initial;\\n\\t}\\n\\n\\t// Proper spacing if multiple shown\\n\\t& + .files-list__system-tag {\\n\\t\\tmargin-left: 5px;\\n\\t}\\n}\\n\\n@media (min-width: 512px) {\\n\\t.files-list__system-tags {\\n\\t\\tdisplay: flex;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","// The chunk loading function for additional chunks\n// Since all referenced chunks are already included\n// in this file, this function is empty here.\n__webpack_require__.e = function() { return Promise.resolve(); };","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 5191;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t5191: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [7874], function() { return __webpack_require__(36992); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","m","t","setApp","build","setUid","uid","H","DEFAULT","HIDDEN","v","NONE","CREATE","READ","UPDATE","DELETE","SHARE","ALL","K","W","d","nc","oc","ocs","$","Folder","File","Y","e","match","M","id","Error","source","URL","startsWith","mtime","Date","crtime","mime","size","permissions","owner","attributes","root","includes","i","status","Object","values","Z","NEW","FAILED","LOADING","LOCKED","J","_data","_attributes","_knownDavService","constructor","this","s","set","n","r","l","updateMtime","Reflect","deleteProperty","Proxy","replace","basename","extension","dirname","indexOf","slice","length","pathname","isDavRessource","split","pop","path","fileid","move","rename","xt","type","bt","super","_t","_column","At","title","render","sort","summary","k","T","RegExp","isExist","o","isEmptyObject","keys","merge","a","u","h","c","getValue","isName","exec","getAllMatches","startIndex","lastIndex","f","push","nameRegexp","L","Tt","allowBooleanAttributes","unpairedTags","B","q","substr","p","g","U","validate","assign","err","trim","substring","Vt","Pt","value","index","z","code","msg","line","tagClosed","tagName","tagStartPos","col","St","JSON","stringify","map","It","Ot","Ct","b","Ft","hasOwnProperty","Dt","P","et","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","isArray","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Rt","Mt","Bt","qt","Ut","zt","Gt","Xt","Kt","Wt","Number","parseInt","window","parseFloat","Yt","decimalPoint","R","E","tagname","child","add","addChild","te","entityName","val","regx","entities","ee","skipLike","test","Jt","search","ne","lastEntities","regex","re","options","replaceEntitiesValue","D","se","charAt","oe","ae","resolveNameSpace","le","x","saveTextToParentTag","lastIndexOf","tagsNodeStack","C","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","isItStopNode","w","readStopNodeData","tagContent","de","ue","ampEntity","ce","he","data","pe","fe","it","nt","we","ye","ve","Array","prettify","xe","be","currentNode","apos","gt","lt","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","Ee","Ne","rt","Oe","Pe","st","G","ot","N","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","De","format","Se","oneListGroup","y","isAttribute","attrPrefixLen","$e","processTextOrObjNode","Fe","indentate","Ve","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","repeat","prototype","arrayNodeName","buildAttrPairStr","closeTag","X","XMLParser","externalEntities","parse","toString","addEntity","XMLValidator","XMLBuilder","Be","name","columns","caption","getContents","icon","TypeError","Me","order","forEach","emptyView","parent","sticky","expanded","defaultSortKey","_regeneratorRuntime","exports","Op","hasOwn","defineProperty","obj","key","desc","$Symbol","Symbol","iteratorSymbol","iterator","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","define","enumerable","configurable","writable","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","create","context","Context","makeInvokeMethod","tryCatch","fn","arg","call","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","getPrototypeOf","NativeIteratorPrototype","Gp","defineIteratorMethods","method","_invoke","AsyncIterator","PromiseImpl","invoke","resolve","reject","record","result","_typeof","__await","then","unwrapped","error","previousPromise","callInvokeWithMethodAndArg","state","undefined","done","delegate","delegateResult","maybeInvokeDelegate","sent","_sent","dispatchException","abrupt","methodName","return","info","resultName","next","nextLoc","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","iterable","iteratorMethod","isNaN","doneResult","displayName","isGeneratorFunction","genFun","ctor","mark","setPrototypeOf","__proto__","awrap","async","Promise","iter","object","reverse","skipTempReset","prev","stop","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","finish","catch","thrown","delegateYield","asyncGeneratorStep","gen","_next","_throw","_asyncToGenerator","args","arguments","apply","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","_exec","getNodeSystemTags","node","_node$attributes","tags","flat","renderTag","tag","isMore","tagElement","document","createElement","classList","textContent","action","_action","validateAction","iconSvgInline","enabled","execBatch","default","inline","renderInline","nodes","_callee","_context","_callee2","systemTagsElement","firstTags","lastTag","moreTagElement","_context2","setAttribute","join","append","_nc_dav_properties","_nc_dav_namespaces","find","prop","namespaces","registerDavProperty","_nc_fileactions","debug","registerFileAction","rootUrl","generateRemoteUrl","davClient","createClient","headers","requesttoken","_getRequestToken","getRequestToken","parseTags","_ref","props","fromEntries","entries","_ref2","_ref3","camelCase","logger","getLoggerBuilder","detectUser","fetchTags","_yield$davClient$getD","getDirectoryContents","details","glob","t0","rootPath","concat","_getCurrentUser","getCurrentUser","defaultRootUrl","getClient","client","getPatcher","patch","_options$headers","request","ownKeys","enumerableOnly","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","_objectSpread","target","_defineProperty","getOwnPropertyDescriptors","defineProperties","input","hint","prim","toPrimitive","res","String","_toPrimitive","_toPropertyKey","resultToNode","davParsePermissions","filename","reduce","charCodeAt","nodeData","lastmod","hasPreview","failed","formatReportPayload","tagId","tagToNode","Permission","tagsCache","_getCurrentUser2","folder","contentsResponse","_args","userVisible","contents","_nc_navigation","_views","_currentView","register","remove","findIndex","splice","views","setActive","active","_view","emptyTitle","emptyCaption","params","UPPERCASE","LOWERCASE","LEADING_CAPITAL","IDENTIFIER","SEPARATORS","LEADING_SEPARATORS","SEPARATORS_AND_IDENTIFIER","NUMBERS_AND_IDENTIFIER","pascalCase","preserveConsecutiveUppercase","toLowerCase","locale","string","toLocaleLowerCase","toUpperCase","toLocaleUpperCase","isLastCharLower","isLastCharUpper","isLastLastCharUpper","character","preserveCamelCase","m1","_","identifier","postProcess","module","globalThis","_exports","_setPrototypeOf","bind","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","Boolean","valueOf","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","_createForOfIteratorHelper","allowArrayLike","minLen","_arrayLikeToArray","from","_unsupportedIterableToArray","F","_e","normalCompletion","didErr","step","_e2","arr","len","arr2","_classCallCheck","instance","Constructor","_defineProperties","descriptor","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","has","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","get","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","CancelablePromise","cancelable","isCancelablePromise","_internals","WeakMap","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","promise","onCancel","cancel","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","_this","finally","callback","callbacks","_step","_iterator","console","_CancelablePromiseInt","subClass","superClass","_inherits","_super","makeAllCancelable","all","allSettled","any","race","reason","_default","onResult","_step2","_iterator2","resolvable","___CSS_LOADER_EXPORT___","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","O","chunkIds","priority","notFulfilled","Infinity","fulfilled","j","every","getter","__esModule","definition","Function","nmd","paths","children","baseURI","location","href","installedChunks","chunkId","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","some","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file diff --git a/tests/karma.config.js b/tests/karma.config.js index 31fcae5de32d3..c164c662926d5 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -65,7 +65,6 @@ module.exports = function(config) { ], testFiles: ['apps/files_sharing/tests/js/*.js'] }, - 'systemtags', 'files_trashbin', ]; }